Click here to Skip to main content
15,890,882 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: License Key Generation Pin
Paul Conrad30-Sep-07 13:39
professionalPaul Conrad30-Sep-07 13:39 
QuestionRandom Access File Pin
AAGTHosting29-Sep-07 18:45
AAGTHosting29-Sep-07 18:45 
AnswerRe: Random Access File Pin
ESTAN30-Sep-07 0:55
ESTAN30-Sep-07 0:55 
QuestionVB code Pin
fgarcia9029-Sep-07 12:30
fgarcia9029-Sep-07 12:30 
AnswerRe: VB code Pin
Dave Kreskowiak29-Sep-07 12:47
mveDave Kreskowiak29-Sep-07 12:47 
GeneralRe: VB code Pin
Paul Conrad29-Sep-07 13:04
professionalPaul Conrad29-Sep-07 13:04 
AnswerRe: VB code Pin
Christian Graus29-Sep-07 14:15
protectorChristian Graus29-Sep-07 14:15 
AnswerRe: VB code Pin
Indrora30-Sep-07 7:33
Indrora30-Sep-07 7:33 
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...
<br />
' our File Save form<br />
dim ourFSForm as windows.forms.filesavedialog = new <br />
windows.forms.filesavedialog<br />
'Set the filter<br />
ourFSForm.Filter = "INSERT FILTER HERE| *.*"<br />
' Set the initial (blank) filename:<br />
ourFSForm.Filename = ""<br />
' the result of showing the form.<br />
dim ourFSResult as windows.forms.dialogResult = ourFSForm.ShowDialog()<br />
dim fileLocation as String = ourFSForm.Filename<br />
switch(ourFSResult)<br />
case windows.forms.dialogResult.OK:<br />
...<br />
<br />
End Swich<br />
<br />


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

QuestionIs there a way out? Pin
twsted f829-Sep-07 11:12
twsted f829-Sep-07 11:12 
AnswerRe: Is there a way out? Pin
Dave Kreskowiak29-Sep-07 11:51
mveDave Kreskowiak29-Sep-07 11:51 
GeneralRe: Is there a way out? Pin
twsted f829-Sep-07 11:59
twsted f829-Sep-07 11:59 
GeneralRe: Is there a way out? Pin
Dave Kreskowiak29-Sep-07 12:45
mveDave Kreskowiak29-Sep-07 12:45 
AnswerRe: Is there a way out? Pin
Luc Pattyn29-Sep-07 11:53
sitebuilderLuc Pattyn29-Sep-07 11:53 
GeneralRe: Is there a way out? Pin
Dave Kreskowiak29-Sep-07 11:56
mveDave Kreskowiak29-Sep-07 11:56 
GeneralRe: Is there a way out? Pin
Luc Pattyn29-Sep-07 12:24
sitebuilderLuc Pattyn29-Sep-07 12:24 
GeneralRe: Is there a way out? Pin
Dave Kreskowiak29-Sep-07 12:47
mveDave Kreskowiak29-Sep-07 12:47 
GeneralRe: Is there a way out? Pin
twsted f829-Sep-07 12:29
twsted f829-Sep-07 12:29 
GeneralRe: Is there a way out? Pin
Luc Pattyn29-Sep-07 12:59
sitebuilderLuc Pattyn29-Sep-07 12:59 
GeneralRe: Is there a way out? Pin
twsted f830-Sep-07 2:53
twsted f830-Sep-07 2:53 
AnswerRe: Is there a way out? Pin
Christian Graus29-Sep-07 14:16
protectorChristian Graus29-Sep-07 14:16 
GeneralRe: Is there a way out? Pin
Indrora30-Sep-07 8:11
Indrora30-Sep-07 8:11 
QuestionHow to get keystrokes Pin
SNUSER29-Sep-07 5:50
SNUSER29-Sep-07 5:50 
AnswerRe: How to get keystrokes Pin
Dave Kreskowiak29-Sep-07 11:54
mveDave Kreskowiak29-Sep-07 11:54 
QuestionPlaying System AVI Pin
LloydA11129-Sep-07 0:58
LloydA11129-Sep-07 0:58 
AnswerRe: Playing System AVI Pin
Dave Kreskowiak29-Sep-07 3:28
mveDave Kreskowiak29-Sep-07 3:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.