Click here to Skip to main content
15,887,027 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionThird Party Software/ OCX grammar checker for VB 6.0 Pin
radjitz24-Apr-14 22:00
radjitz24-Apr-14 22:00 
AnswerRe: Third Party Software/ OCX grammar checker for VB 6.0 Pin
CHill6025-Apr-14 0:47
mveCHill6025-Apr-14 0:47 
QuestionChanging backcolor of a textbox Pin
CHill6024-Apr-14 5:54
mveCHill6024-Apr-14 5:54 
AnswerRe: Changing backcolor of a textbox Pin
Tino Fourie24-Apr-14 6:16
Tino Fourie24-Apr-14 6:16 
GeneralRe: Changing backcolor of a textbox Pin
CHill6025-Apr-14 0:45
mveCHill6025-Apr-14 0:45 
AnswerRe: Changing backcolor of a textbox Pin
Richard Deeming24-Apr-14 6:21
mveRichard Deeming24-Apr-14 6:21 
QuestionAccessing an external DLL from a Timer - should there be a problem? Pin
Peter R. Fletcher23-Apr-14 11:39
Peter R. Fletcher23-Apr-14 11:39 
AnswerRe: Accessing an external DLL from a Timer - should there be a problem? Pin
Dave Kreskowiak23-Apr-14 12:32
mveDave Kreskowiak23-Apr-14 12:32 
If you're using the System.Timers.Timer (there is no System.Timer!), the Elapsed callback is done on a background thread. If the library you're using is not written to handle that, it may screw up the library like you're seeing. You'll have to check with the people who wrote that library to find out.

If possible, you can swap out the System.Timers.Timer with the Timer object in the Toolbox. That's the Forms-based Timer and runs on windows messaging Events, but needs to be used in a Windows Forms app, not a Console app or WPF. These events are always raised on the UI (startup) thread and shouldn't give you the problem that you're seeing.

GeneralRe: Accessing an external DLL from a Timer - should there be a problem? Pin
Peter R. Fletcher23-Apr-14 12:48
Peter R. Fletcher23-Apr-14 12:48 
AnswerRe: Accessing an external DLL from a Timer - should there be a problem? Pin
Bernhard Hiller23-Apr-14 22:35
Bernhard Hiller23-Apr-14 22:35 
GeneralRe: Accessing an external DLL from a Timer - should there be a problem? Pin
Peter R. Fletcher24-Apr-14 3:17
Peter R. Fletcher24-Apr-14 3:17 
AnswerRe: Accessing an external DLL from a Timer - should there be a problem? Pin
Bernhard Hiller24-Apr-14 21:15
Bernhard Hiller24-Apr-14 21:15 
GeneralRe: Accessing an external DLL from a Timer - should there be a problem? Pin
Peter R. Fletcher25-Apr-14 5:49
Peter R. Fletcher25-Apr-14 5:49 
QuestionExcel VBA Macro ' Run-time error '9': Subscript out of range ' Pin
Deimantas23-Apr-14 0:53
Deimantas23-Apr-14 0:53 
AnswerRe: Excel VBA Macro ' Run-time error '9': Subscript out of range ' Pin
Richard Deeming23-Apr-14 1:23
mveRichard Deeming23-Apr-14 1:23 
GeneralRe: Excel VBA Macro ' Run-time error '9': Subscript out of range ' Pin
Deimantas23-Apr-14 1:33
Deimantas23-Apr-14 1:33 
GeneralRe: Excel VBA Macro ' Run-time error '9': Subscript out of range ' Pin
Richard Deeming23-Apr-14 1:38
mveRichard Deeming23-Apr-14 1:38 
GeneralRe: Excel VBA Macro ' Run-time error '9': Subscript out of range ' Pin
Deimantas25-Apr-14 8:45
Deimantas25-Apr-14 8:45 
QuestionVariable Question Pin
DJHJr21-Apr-14 4:33
DJHJr21-Apr-14 4:33 
AnswerRe: Variable Question Pin
Eddy Vluggen21-Apr-14 8:15
professionalEddy Vluggen21-Apr-14 8:15 
GeneralRe: Variable Question Pin
DJHJr21-Apr-14 10:10
DJHJr21-Apr-14 10:10 
GeneralRe: Variable Question Pin
Wes Aday21-Apr-14 11:47
professionalWes Aday21-Apr-14 11:47 
GeneralRe: Variable Question Pin
DJHJr21-Apr-14 13:09
DJHJr21-Apr-14 13:09 
GeneralRe: Variable Question Pin
Wes Aday21-Apr-14 13:14
professionalWes Aday21-Apr-14 13:14 
GeneralRe: Variable Question Pin
DJHJr21-Apr-14 13:17
DJHJr21-Apr-14 13:17 

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.