Well, since it is only a option toggle button. One radio button is for Dynamic and the other is for static in the IP dialog window. (I hope you know what I am talking about.) If you change the...
I have the same problem a long time ago but I found out that if you use KeyUp or KeyDown, it will work properly. That what I use it most applications I develop here.
I have tried that already. The problem is that I have different object types displayed such as textboxes, option buttons and comboboxes. I won't know which obj_Validate to call for the one that...
Do a search on Google. I have seen the code a few years ago but I have not used it myself. I can't help any further. Check with other VB discussion forums.
As simple as I could put it in a VB program, the msgbox in the Validate event does not get fired when you click on the menu item "Print" which calls the Click event. I expect the Validate event to...
I need a big help. If you open the attached file and run it. Click once on the treeview so it has focus. Now use the arrow keys and press enter key. Nothing happens.
Well, after a bit of playing around. we learned that you MUST pass the username parameter with something instead of a null. 9x can take a null for username since the security is weak. But 2000/XP...
I was using a listbox but due to the limit of the listbox. So I switched to ListView. However I can't find anything similar to what I was using for ListBox. There are two API calls that I used for...
I still need the same UI selections as the ListBox has. You should be able to select a number of items in sequence with the mouse. ListView doesn't allow that. You have to single click each item...
Well, I looked at the code. Notice that I should have mentioned it earlier. I do make a use of ListItem, that where it stops. I suppose I can use the Key in listview so it goes far beyond the...
Thank you, I just realized that I could have a listview instead. But I didn't try out the code yet as I had other priorities. I am sure it will be helpful. Guess I was having a DUH moment. :)
I have a listbox that lists all the ticket numbers for the client to select. I didn't even think about the limit in VB until a client called our customer service. So I searched on Google and found...
How do you change the Long value of the Attribute property? I have a recordset that is the returning recordset from a stored procedure. I have another recordset that collects all the record. For...
Sorry for being gone too long. I had all the objects designed on all the tabs individually. But your case is using forms instead, not sure how to load it separately especially with tabs. I founded...
Thanks for the help. However it didn't quite work. So I tried something else that solved the problem for reason unknown to me. If you add a underscore making it a hot key (with &) on the tabs...
I have a SStab on an UserControl. The UserControl has DefaultCancel = True. Now when you drop that UserControl on a dialog box. The Cancel button on the dialog box has the property Cancel = True. ...