VB code
-
i need a vb code to pop-up the save dialog box in some time i inicialy put in antoher simple dialog box in a start of all the programs i work fgarcia90@gmail.com
-
i need a vb code to pop-up the save dialog box in some time i inicialy put in antoher simple dialog box in a start of all the programs i work fgarcia90@gmail.com
uhhh... What?? :confused: You're post made absolutely no sense at all. I firmly believe that if you use less than 150 words to describe your problem, you've certainly left out important details required to acturately answer your question.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
uhhh... What?? :confused: You're post made absolutely no sense at all. I firmly believe that if you use less than 150 words to describe your problem, you've certainly left out important details required to acturately answer your question.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007I don't have the foggiest idea. I think he was saying something about Save Dialog, but couldn't gather much more.
"Find it your bloody self - immediately!" - Dave Kreskowiak
-
i need a vb code to pop-up the save dialog box in some time i inicialy put in antoher simple dialog box in a start of all the programs i work fgarcia90@gmail.com
1 - dont post your email address. 2 - try writing an intelligent header. Everyone here wants VB code 3 - What does 'some time' mean ? At random ? 4 - The SaveFileDialog is probably what you want, but who can tell ?
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
i need a vb code to pop-up the save dialog box in some time i inicialy put in antoher simple dialog box in a start of all the programs i work fgarcia90@gmail.com
fgarcia90 wrote:
i need a vb code to pop-up the save dialog box in some time i inicialy put in antoher simple dialog box in a start of all the programs i work
EH? I would assume you want a system.windows.forms.FileSaveDialog to jump up at startup? that would be simple enough...
' our File Save form dim ourFSForm as windows.forms.filesavedialog = new windows.forms.filesavedialog 'Set the filter ourFSForm.Filter = "INSERT FILTER HERE| *.*" ' Set the initial (blank) filename: ourFSForm.Filename = "" ' the result of showing the form. dim ourFSResult as windows.forms.dialogResult = ourFSForm.ShowDialog() dim fileLocation as String = ourFSForm.Filename switch(ourFSResult) case windows.forms.dialogResult.OK: ... End Swich
Now also, theres Already an email link on the bottom of each post!---- Morgan Gangwere Lead programmer, Unknown Software "Pinky, are you thinking what im thinking?" "I Dunno brain, how many licks DOES it take to get to the tootsie roll center of a tootsie pop?" "You want me to calculate that? or should we take over the world?" "ooh! OooooOOOooH! lets find out!"