Click here to Skip to main content
15,900,678 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Repeater Control is not working Pin
Guffa7-Apr-06 22:46
Guffa7-Apr-06 22:46 
GeneralRe: Repeater Control is not working Pin
Amit Agarrwal7-Apr-06 23:12
Amit Agarrwal7-Apr-06 23:12 
GeneralRe: Repeater Control is not working Pin
Guffa8-Apr-06 0:23
Guffa8-Apr-06 0:23 
Questionprinting Pin
maytel7-Apr-06 18:06
maytel7-Apr-06 18:06 
Questionsaving .net remoting to file Pin
blucas20057-Apr-06 17:48
blucas20057-Apr-06 17:48 
QuestionHow to Remove Balloon Tip on Right Click Pin
Devraj Raut7-Apr-06 10:59
Devraj Raut7-Apr-06 10:59 
QuestionSaving WindowState before Minimising!! Pin
Devraj Raut7-Apr-06 10:52
Devraj Raut7-Apr-06 10:52 
AnswerRe: Saving WindowState before Minimising!! Pin
Joshua Quick7-Apr-06 11:50
Joshua Quick7-Apr-06 11:50 
Unfortunately, Forms don't have a Minimized event.
You'll need to catch the Form's SizeChanged event instead. This event will be raised on Minimize, Maximize, Restore, window size change, and on form load. You can detect whether or not the form is being minimized by checking the Form.WindowState property.
Private Sub myForm_SizeChanged(ByVal sender As Object, _
                               ByVal e As System.EventArgs)_
                               Handles MyBase.SizeChanged
   If (Me.WindowState = FormWindowState.Minimized) Then
      ' Form has been minimized. Store settings here.
   End If
End Sub

Recognize that this event will be raised when the user stretches the form too, so you'll need to handle that case.
GeneralRe: Saving WindowState before Minimising!! Pin
Devraj Raut18-Apr-06 4:50
Devraj Raut18-Apr-06 4:50 
GeneralRe: Saving WindowState before Minimising!! Pin
Joshua Quick18-Apr-06 6:34
Joshua Quick18-Apr-06 6:34 
QuestionAdding Progress Bar as a ListViewSubItem Pin
Devraj Raut7-Apr-06 10:45
Devraj Raut7-Apr-06 10:45 
AnswerRe: Adding Progress Bar as a ListViewSubItem Pin
Joshua Quick7-Apr-06 11:34
Joshua Quick7-Apr-06 11:34 
QuestionGraph ActiveX Control for download/upload rate Display Pin
Devraj Raut7-Apr-06 10:35
Devraj Raut7-Apr-06 10:35 
AnswerRe: Graph ActiveX Control for download/upload rate Display Pin
Joshua Quick7-Apr-06 11:26
Joshua Quick7-Apr-06 11:26 
QuestionInserting a row using datagridview Pin
projectcode17-Apr-06 10:22
projectcode17-Apr-06 10:22 
QuestionCopyMemory VB.NET Pin
chiragdanech7-Apr-06 9:26
chiragdanech7-Apr-06 9:26 
AnswerRe: CopyMemory VB.NET Pin
Joshua Quick7-Apr-06 12:07
Joshua Quick7-Apr-06 12:07 
GeneralRe: CopyMemory VB.NET Pin
chiragdanech8-Apr-06 7:14
chiragdanech8-Apr-06 7:14 
AnswerRe: CopyMemory VB.NET Pin
Joshua Quick8-Apr-06 9:18
Joshua Quick8-Apr-06 9:18 
GeneralRe: CopyMemory VB.NET Pin
chiragdanech8-Apr-06 9:22
chiragdanech8-Apr-06 9:22 
QuestionRe: CopyMemory VB.NET Pin
Joshua Quick8-Apr-06 9:41
Joshua Quick8-Apr-06 9:41 
AnswerRe: CopyMemory VB.NET Pin
chiragdanech8-Apr-06 9:47
chiragdanech8-Apr-06 9:47 
GeneralRe: CopyMemory VB.NET Pin
Joshua Quick9-Apr-06 10:49
Joshua Quick9-Apr-06 10:49 
GeneralRe: CopyMemory VB.NET Pin
chiragdanech9-Apr-06 10:55
chiragdanech9-Apr-06 10:55 
AnswerRe: CopyMemory VB.NET Pin
Joshua Quick9-Apr-06 12:12
Joshua Quick9-Apr-06 12:12 

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.