Click here to Skip to main content
15,896,514 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Code Protection Pin
Paul Conrad20-Apr-10 6:51
professionalPaul Conrad20-Apr-10 6:51 
RantRe: Code Protection Pin
Ashfield20-Apr-10 9:07
Ashfield20-Apr-10 9:07 
QuestionSilverlight and VB.Net and VB Express question Pin
jerryj19-Apr-10 11:35
jerryj19-Apr-10 11:35 
AnswerRe: Silverlight and VB.Net and VB Express question Pin
Dalek Dave19-Apr-10 14:09
professionalDalek Dave19-Apr-10 14:09 
QuestionNew Application Advice Pin
programmervb.netc++19-Apr-10 8:15
programmervb.netc++19-Apr-10 8:15 
AnswerRe: New Application Advice Pin
programmervb.netc++21-Apr-10 11:57
programmervb.netc++21-Apr-10 11:57 
QuestionProblem with FormClosing event Pin
Yosh_19-Apr-10 5:39
professionalYosh_19-Apr-10 5:39 
AnswerRe: Problem with FormClosing event Pin
TheComputerMan19-Apr-10 6:03
TheComputerMan19-Apr-10 6:03 
The form is closing anyway so remove the application.exit (assuming this is the final form)

Only do the cancel = true if they want to stay in.

Private Sub Register_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
Dim exitChoice As Windows.Forms.DialogResult

exitChoice = MessageBox.Show("Are you sure you want to exit?", "Exiting?", MessageBoxButtons.YesNo, MessageBoxIcon.Information, MessageBoxDefaultButton.Button2)

If exitChoice = Windows.Forms.DialogResult.No Then
e.Cancel
End If
End Sub
GeneralRe: Problem with FormClosing event Pin
tmalbon22-Apr-10 16:53
tmalbon22-Apr-10 16:53 
QuestionDraw a arrow on a line Pin
JR21218-Apr-10 21:20
JR21218-Apr-10 21:20 
AnswerRe: Draw a arrow on a line Pin
Dave Kreskowiak19-Apr-10 3:51
mveDave Kreskowiak19-Apr-10 3:51 
GeneralRe: Draw a arrow on a line Pin
JR21219-Apr-10 23:08
JR21219-Apr-10 23:08 
QuestionWhat's difference between Visual Basic and VB.NET Pin
Razanust17-Apr-10 16:20
Razanust17-Apr-10 16:20 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
Andy_L_J17-Apr-10 16:40
Andy_L_J17-Apr-10 16:40 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
riced18-Apr-10 1:01
riced18-Apr-10 1:01 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
Dalek Dave18-Apr-10 3:12
professionalDalek Dave18-Apr-10 3:12 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
Abhinav S18-Apr-10 3:49
Abhinav S18-Apr-10 3:49 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
Dave Doknjas18-Apr-10 10:09
Dave Doknjas18-Apr-10 10:09 
AnswerRe: What's difference between Visual Basic and VB.NET Pin
programmervb.netc++19-Apr-10 8:18
programmervb.netc++19-Apr-10 8:18 
GeneralRe: What's difference between Visual Basic and VB.NET Pin
tmalbon22-Apr-10 17:28
tmalbon22-Apr-10 17:28 
QuestionHow to create a web application of a VB Program. Pin
Razanust17-Apr-10 16:17
Razanust17-Apr-10 16:17 
AnswerRe: How to create a web application of a VB Program. Pin
Eddy Vluggen17-Apr-10 23:51
professionalEddy Vluggen17-Apr-10 23:51 
Questionrunning a winapp with parameters from AutoCad Pin
MacIntyre16-Apr-10 7:25
MacIntyre16-Apr-10 7:25 
AnswerRe: running a winapp with parameters from AutoCad Pin
Eddy Vluggen18-Apr-10 0:00
professionalEddy Vluggen18-Apr-10 0:00 
QuestionSome help... Pin
Adam Wike16-Apr-10 4:10
Adam Wike16-Apr-10 4:10 

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.