Beginning VB 6For coders who are new to Visual Basic, working in VB version 6 (not .NET).
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Beginning VB 6 section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
I am currently working on an application where it converts a CSV infile into another format of CSV outfile. In a nutshell, the application reads#12288;from the infile, then process (around 10thousand records), then writes to an outfile. The routine process the input line by line.
Private Sub convertFile(textBoxNumber As String)
Do Until EOF(1)
'read the file, then process, then write
Loop
end sub
What if during the process, the user wants to cancel the job? I tried putting a DoEvent with a GetInputState inside the Loop:
Private Sub convertFile(textBoxNumber As String)
Do Until EOF(1)
If GetInputState() <> 0 Then
DoEvents
If MsgBox("Conversion Completed upto routine " & i & ". Cancel the rest?", vbQuestion + vbYesNo) = vbYes Then EXIT SUB
End If
'read the file, then process, then write
Loop
end sub
It did catch the key press event, but the problem is, it catches the key pressed after the loop was done. Defeats the purpose because what if the infile is really big. What I am hoping for is some what a real time action on the key press.
Thanks for the advice. If my approach seems to be wrong or absurd, that's because I am a new user of VB. Please excuse me. Thanks guys!