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

Visual Basic

 
AnswerRe: window application deployment Pin
Tom Deketelaere1-Aug-07 20:44
professionalTom Deketelaere1-Aug-07 20:44 
Questionminesweeper Pin
gamesiao1-Aug-07 17:56
gamesiao1-Aug-07 17:56 
AnswerRe: minesweeper Pin
Christian Graus1-Aug-07 18:24
protectorChristian Graus1-Aug-07 18:24 
QuestionNamespaces Pin
2hdass1-Aug-07 13:33
2hdass1-Aug-07 13:33 
AnswerRe: Namespaces Pin
Christian Graus1-Aug-07 13:49
protectorChristian Graus1-Aug-07 13:49 
QuestionUsing HasChanges to find unsaved data Pin
steve_rm1-Aug-07 11:58
steve_rm1-Aug-07 11:58 
AnswerRe: Using HasChanges to find unsaved data Pin
ctlqt121-Aug-07 18:46
ctlqt121-Aug-07 18:46 
Questionstart and stop timer Pin
Cory Kimble1-Aug-07 10:57
Cory Kimble1-Aug-07 10:57 
I am able to stop and start the timer on my program when I click something. But when I try to stop and start a timer in a method that runs when a file is updated, it would stop the timer. WHY?:


Private Sub OnChanged(ByVal source As Object, ByVal e As FileSystemEventArgs)
Me.updateTimer.Stop()
        frm.OpenFile(OpenCertainFile)
        Do While Not EOF(1) 

            Input(1, Str.Ticket)
            Input(1, Str.Hauler)
            Input(1, Str.Truck)
            Input(1, Str.Material)
            Input(1, Str.DateIn)
            Input(1, Str.DateOut)
            Input(1, Str.WeighIn)
            Input(1, Str.WeighOut)
            Input(1, Str.NetWeigh)
            Input(1, Str.Loader)

            
            If Str.Ticket = newDataGrid.Item(newDataGrid.CurrentRowIndex, count).ToString Then
                MessageBox.Show("Same")
            Else
                MessageBox.Show("Not same")
            End If
            count = count + 1
        Loop

        FileClose(1)



        Me.updateTimer.Start()

AnswerRe: start and stop timer Pin
Johan Hakkesteegt1-Aug-07 20:16
Johan Hakkesteegt1-Aug-07 20:16 
GeneralRe: start and stop timer Pin
Cory Kimble2-Aug-07 3:02
Cory Kimble2-Aug-07 3:02 
GeneralRe: start and stop timer Pin
Johan Hakkesteegt2-Aug-07 23:16
Johan Hakkesteegt2-Aug-07 23:16 
AnswerRe: start and stop timer Pin
Cory Kimble3-Aug-07 2:06
Cory Kimble3-Aug-07 2:06 
QuestionCustom event on variable change Pin
2hdass1-Aug-07 7:58
2hdass1-Aug-07 7:58 
AnswerRe: Custom event on variable change Pin
Colin Angus Mackay1-Aug-07 8:22
Colin Angus Mackay1-Aug-07 8:22 
GeneralRe: Custom event on variable change Pin
2hdass1-Aug-07 9:17
2hdass1-Aug-07 9:17 
Questionsend data from a listbox to textbox Pin
sixecho1-Aug-07 6:14
sixecho1-Aug-07 6:14 
AnswerRe: send data from a listbox to textbox Pin
Colin Angus Mackay1-Aug-07 8:18
Colin Angus Mackay1-Aug-07 8:18 
GeneralRe: send data from a listbox to textbox Pin
sixecho1-Aug-07 9:19
sixecho1-Aug-07 9:19 
GeneralRe: send data from a listbox to textbox Pin
Colin Angus Mackay1-Aug-07 10:11
Colin Angus Mackay1-Aug-07 10:11 
GeneralRe: send data from a listbox to textbox Pin
Colin Angus Mackay2-Aug-07 7:51
Colin Angus Mackay2-Aug-07 7:51 
QuestionChanging button border Pin
HelpMePlease!1-Aug-07 5:40
HelpMePlease!1-Aug-07 5:40 
AnswerRe: Changing button border Pin
Taylor Kobani1-Aug-07 10:20
Taylor Kobani1-Aug-07 10:20 
GeneralRe: Changing button border Pin
HelpMePlease!1-Aug-07 12:43
HelpMePlease!1-Aug-07 12:43 
QuestionCalculate downtime excluding off-hours and weekends Pin
takaz1231-Aug-07 5:11
takaz1231-Aug-07 5:11 
AnswerRe: Calculate downtime excluding off-hours and weekends Pin
klaydze1-Aug-07 20:04
klaydze1-Aug-07 20:04 

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.