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!"