Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting Record Selectors with code. 2

Status
Not open for further replies.

eon5

Technical User
Dec 31, 2007
47
ZA
Hi,

In the form design mode i can Set the Record Selectors option to "Yes" or "no"...how do i code this as a procedure on a button.

I have looked at the search functions and tried a lot of code but nothing, maybe there is no way of running it as a procedure?

Thanks
Theuns
 
If you just wanted a toggle button then I don't imagine you need anything more complicated than:

If myform.recordselectors = true then
myform.recordselectors = false
else
myform.recordselectors = true
end if
 
Have a look at the NavigationButtons property of the Form object.

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top