Click here to Skip to main content
15,918,596 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: VB6 supported until 2008 Pin
rwestgraham6-Apr-05 14:19
rwestgraham6-Apr-05 14:19 
GeneralRe: VB6 supported until 2008 [edit] Pin
Mitch F.6-Apr-05 7:21
Mitch F.6-Apr-05 7:21 
GeneralClearing the Values in Combo Box Pin
Anonymous5-Apr-05 10:53
Anonymous5-Apr-05 10:53 
GeneralNeed Help Pin
Anonymous5-Apr-05 5:51
Anonymous5-Apr-05 5:51 
GeneralRe: Need Help Pin
Dave Kreskowiak5-Apr-05 6:23
mveDave Kreskowiak5-Apr-05 6:23 
GeneralRe: Need Help Pin
Colin Angus Mackay5-Apr-05 6:24
Colin Angus Mackay5-Apr-05 6:24 
GeneralProblem in VB 6.0 Pin
sams_eee5-Apr-05 5:02
sams_eee5-Apr-05 5:02 
GeneralRe: Problem in VB 6.0 Pin
Dave Kreskowiak5-Apr-05 6:09
mveDave Kreskowiak5-Apr-05 6:09 
You'll never to get this to work that way you think it should.

The Timers send their Tick events into the Form's message pump, they don't call the functions directly. Also, the timers don't really have a resolution of 1 millisecond. You can get 1000 tick events out of your first timers, but it'll take greater than one second to execute them all while updating the text in the TextBox. This is because when you update the TextBox, you're also injecting WM_PAINT messages into the Form's message queue, between Tick events for the timer. Starting to see why your now getting 1 millisecond performance yet? It takes greater than 1 millisecond to repaint the invalidated regions of the form and it's controls. So, now that you've repainted the form between the Tick event at 1 millisecond and the tick event at 2 milliseconds, you've actually used up about 10 milliseconds updating and repainting the form.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralSend SMS in PDU format Pin
bgm22915-Apr-05 3:47
bgm22915-Apr-05 3:47 
GeneralRe: Send SMS in PDU format Pin
Dave Kreskowiak5-Apr-05 5:57
mveDave Kreskowiak5-Apr-05 5:57 
GeneralRe: Send SMS in PDU format Pin
Anonymous5-Apr-05 6:46
Anonymous5-Apr-05 6:46 
GeneralWave file property in vb Pin
accessnetwork5-Apr-05 1:38
accessnetwork5-Apr-05 1:38 
GeneralRe: Wave file property in vb Pin
Anonymous5-Apr-05 7:22
Anonymous5-Apr-05 7:22 
QuestionHow to Inherit DataColumnCollection Pin
Prakash Chajer5-Apr-05 0:49
Prakash Chajer5-Apr-05 0:49 
Generalpackage and deployment wizard Pin
Salman Sheikh4-Apr-05 23:12
Salman Sheikh4-Apr-05 23:12 
GeneralSWF files Pin
Mr Dabbah4-Apr-05 22:42
Mr Dabbah4-Apr-05 22:42 
GeneralRe: SWF files Pin
Dave Kreskowiak5-Apr-05 5:52
mveDave Kreskowiak5-Apr-05 5:52 
Generalbuild trial appication Pin
samithaslk4-Apr-05 22:33
samithaslk4-Apr-05 22:33 
Generalhav an error tag for DBGrid Pin
Member 13879124-Apr-05 22:00
Member 13879124-Apr-05 22:00 
GeneralRe: hav an error tag for DBGrid Pin
Dave Kreskowiak5-Apr-05 3:45
mveDave Kreskowiak5-Apr-05 3:45 
Generaldynamically create picture control with tab Pin
shinay4-Apr-05 16:42
shinay4-Apr-05 16:42 
GeneralRe: dynamically create picture control with tab Pin
Dave Kreskowiak5-Apr-05 5:46
mveDave Kreskowiak5-Apr-05 5:46 
GeneralHelp ASAP Uploading pdf files in web server or database Pin
Anonymous4-Apr-05 16:25
Anonymous4-Apr-05 16:25 
GeneralRe: Help ASAP Uploading pdf files in web server or database Pin
Dave Kreskowiak5-Apr-05 3:35
mveDave Kreskowiak5-Apr-05 3:35 
GeneralListbox Pin
rstat14-Apr-05 15:05
rstat14-Apr-05 15:05 

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.