View Full Version : Form Navigation


Angello Pimental
05-14-2001, 07:08 AM
Cay anyone help?

I have created a form that displays the particular domain name information for each domain name located in a database. I allow the user to navigate from record to record with navigation buttons, and a combo box which lists all the domain names.

My problem is:
When I use the navigation buttons the records advance, but not the domain name in the combo box. How can I make the domain name listed in the combo box advance with the record?

On a seperate matter, How do I get the combo box to show the first domain name in its list on startup?

Thnx

charityg
05-14-2001, 07:12 AM
in form onCurrent set the combobox equal to the field that contains the domain name. To auto display the first domain on open, insert
[comboboxname].ItemData(0) into the defaultvalue property of the combobox.

Angello Pimental
05-14-2001, 08:05 AM
Thnx Charity for your help...
I am still having trouble though with the combo box.
I tried your suggestion:
On Current =[Combo49]=[Domain Name]

But that doesn't work... it is most likely me as I do not have the programming skills

Could you explain in greater detail.

Thnx