Click here to Skip to main content
15,914,221 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Where Can i find a VB.Net Employee Starter Kit Pin
Dave Kreskowiak3-Oct-08 1:45
mveDave Kreskowiak3-Oct-08 1:45 
GeneralRe: Where Can i find a VB.Net Employee Starter Kit Pin
MidwestLimey3-Oct-08 8:29
professionalMidwestLimey3-Oct-08 8:29 
Questionambiuous namespace Pin
George Mathew2-Oct-08 16:21
George Mathew2-Oct-08 16:21 
AnswerRe: ambiuous namespace Pin
HemJoshi2-Oct-08 20:16
HemJoshi2-Oct-08 20:16 
AnswerRe: ambiuous namespace Pin
Dave Kreskowiak3-Oct-08 1:42
mveDave Kreskowiak3-Oct-08 1:42 
QuestionHow to read and write Encrypted file by vb 6.0 Pin
ejaz_pk2-Oct-08 10:50
ejaz_pk2-Oct-08 10:50 
QuestionPostponing Close until all application windows are closed Pin
JudyV2-Oct-08 5:37
JudyV2-Oct-08 5:37 
AnswerRe: Postponing Close until all application windows are closed Pin
jzonthemtn2-Oct-08 5:58
jzonthemtn2-Oct-08 5:58 
In the Form.FormClosing event, you can cancel the closing, i.e.:

Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    'If there are are windows open, maybe tell the user and switch to them.
    e.Cancel = True
End Sub


Would the "Shutdown mode" option in the project's settings be of any help? Maybe try setting it to "When last form closes."
GeneralRe: Postponing Close until all application windows are closed Pin
JudyV2-Oct-08 6:08
JudyV2-Oct-08 6:08 
QuestionHow Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
RaltonLewis2-Oct-08 3:04
RaltonLewis2-Oct-08 3:04 
QuestionRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
richardw482-Oct-08 3:42
richardw482-Oct-08 3:42 
AnswerRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
RaltonLewis2-Oct-08 3:55
RaltonLewis2-Oct-08 3:55 
GeneralRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
richardw482-Oct-08 4:12
richardw482-Oct-08 4:12 
GeneralRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
RaltonLewis2-Oct-08 4:26
RaltonLewis2-Oct-08 4:26 
GeneralRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
richardw482-Oct-08 4:44
richardw482-Oct-08 4:44 
GeneralRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
richardw482-Oct-08 4:59
richardw482-Oct-08 4:59 
GeneralRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
RaltonLewis2-Oct-08 7:11
RaltonLewis2-Oct-08 7:11 
GeneralRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
richardw482-Oct-08 9:02
richardw482-Oct-08 9:02 
GeneralRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
RaltonLewis2-Oct-08 10:19
RaltonLewis2-Oct-08 10:19 
GeneralRe: How Do I Add A New Column For Each Record From Table To Existing DatagridView Pin
richardw482-Oct-08 22:06
richardw482-Oct-08 22:06 
Questionopen window using vb Pin
jhyn2-Oct-08 2:07
jhyn2-Oct-08 2:07 
AnswerCheck this CodeProject article Pin
David Mujica2-Oct-08 3:04
David Mujica2-Oct-08 3:04 
QuestionRe: open window using vb Pin
richardw482-Oct-08 3:45
richardw482-Oct-08 3:45 
AnswerRe: open window using vb Pin
jhyn2-Oct-08 15:50
jhyn2-Oct-08 15:50 
QuestionRe: open window using vb Pin
richardw482-Oct-08 22:11
richardw482-Oct-08 22:11 

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.