OK, is there a wizard in Visual Basic, when i pick a command button and place it on the form, i want the command wizard to show, this is usually done in access, how do i enable it in Visual Basic.
Thanks again
Printable View
OK, is there a wizard in Visual Basic, when i pick a command button and place it on the form, i want the command wizard to show, this is usually done in access, how do i enable it in Visual Basic.
Thanks again
I suppose the Visual Application Wizard might be what your looking for ;)
Very fast responce, thanks where is that located, where can i enable it.
When it asks you to make a 'New Project' Double Click the icon labeled VB Application Wizard.
Thats a wizard to create the whole form isn't it? i just tried it and thats not what i'm after.
I'm looking for a wizard to automatically popup when i place a command button down and then will give me a number of options such as Close, save, next, previous, etc like in access.
I believe Visual Basic 6.0 has nothing that you are looking for. Well at least not that i know of.
aw would of been nice, since the feature in access is really helpful and i don't have to manualy add much code. OK np thanks anyways
Not much point to that in VB. Who wants a language that limits what you can do? It makes sense in a VBA environment where the program creates a limit on what is reasonably available, but in a full language, the only limit should be the imagination and capability of the the coder.
You can certainly make that functionality, but you can't assume it.
Those are things you can do to a database with the button. Since buttons aren't bound in VB, you have to write code to do the same things. VB is a rapid development environment, not a write-the-code-for-you-instantly environment. You have to know how to write code.Quote:
Originally Posted by mattonline
not the answer i was hoping for, but its nto a problem working with code :) will just have to learn it