July 12th, 2003, 07:05 PM
-
July 12th, 2003, 07:08 PM
-
The most basic form, in vb or vba:
msgbox "The Prompt Here"
Look in the VB function documentation for the msgbox function for more variations.
July 12th, 2003, 07:16 PM
-
Maybe it's not msg box that i want.....what i need is basically a "search" box for the program i am writing....a spot to type something, an "okay" button, "clear" button, "end" button, and what not so that when i click okay a txt file opens showing the results.
July 13th, 2003, 06:46 PM
-
I can't remember if there is a Prompt function, but you can certainly create your own form to cater for it.
How can I soar like an eagle when
I'm flying with turkey's?
July 13th, 2003, 10:52 PM
-
Search the VB documentation for "custom dialog"
July 13th, 2003, 11:12 PM
-
The function you want is InputBox.
Something like:
Code:
Dim SearchWord
SearchWord = InputBox("Enter your search word")
How can I soar like an eagle when
I'm flying with turkey's?
July 13th, 2003, 11:19 PM
-
Alright, I got a good start as to what I need. Thank you all very much.
July 13th, 2003, 11:20 PM
-
How can I soar like an eagle when
I'm flying with turkey's?