I have a form with a tab control. The rightmost tab is always open when the form loads. I want the left-most tab to be open when the form loads. I can't seem to figure out how to change it.
I tried...
1) Me.TabCtl0.Value = 0
2) Me.TabCtl0.Value = 11
...in the form_load() sub. One of them...
Thanks for your help. I am uncomfortable posting all my code so I asked my boss for help. He figured out the problem. Thanks anyway; I REALLY appreciate it!
There is a combo box with a list of revenue types. If the user types into the box a value that is not part of the list, a msgBox pops up and asks them if they want to add that value to the list.
Here is my problem: In that msgBox, I want to give the user a combo box list of revenue groups to...
When a form opens in MS Access, it displays its name on the title bar of the form. I want to hide the real name of my form and display a more user-friendly name on the title bar. How can I do this?
I'm importing a CSV string using TransferText. I want a dialog box to pop up that allows the user to pick the file to transfer. How do I code the transferText option so that a browse dialog box pops up?