C
Crystal
First, position your EXIT button where you'd like it in
Design View. Write down the Top and Left property values.
Next, write your code that will determine whether or not
the user has read only permissions.
Use a conditional statement to position the command button:
If UserPermissions = 1 then
cmdButton.Top = .8769 x 1440 '(1440 is the number of
twips in an inch. You have to multiply your property
value by this number to get it to work)
cmdButton.Left = .125 x 1440
else
. . . .
Hope this helps,
Crystal
Design View. Write down the Top and Left property values.
Next, write your code that will determine whether or not
the user has read only permissions.
Use a conditional statement to position the command button:
If UserPermissions = 1 then
cmdButton.Top = .8769 x 1440 '(1440 is the number of
twips in an inch. You have to multiply your property
value by this number to get it to work)
cmdButton.Left = .125 x 1440
else
. . . .
Hope this helps,
Crystal