Re: [ADVANCED-DOTNET] Timers and Process Monitoring

2003-12-31 Thread Grant
I'll try to increase the interval. Here are my current settings: Public Sub EnableDataPolling() myDataTimer.Interval = 300 myDataTimer.Start() End Sub Public Sub EnableProcessPolling() myProcessTimer.Interval = 1000 myProcessTimer.Start() End Sub

Re: [ADVANCED-DOTNET] Timers and Process Monitoring

2003-12-31 Thread Krzysztof Cwalina
ECTED] Subject: Re: [ADVANCED-DOTNET] Timers and Process Monitoring I don't think you want to go down this road. If the only reason for the timer is to update the UI, having a more exact timer doesn't make a lot of sense. The user won't be able to see changes that occur more than a

Re: [ADVANCED-DOTNET] Timers and Process Monitoring

2003-12-31 Thread Heath Ryan
Hi Grant, You may want to skip the synclock since beginInvoke is serializing the method anyway. Also you may want to skip the raiseEvent LiveData just call the handler directly. Since you are doing a beginInvoke there is no need to add an extra "layer" with event raising. Make sure the beginInv

Re: [ADVANCED-DOTNET] Timers and Process Monitoring

2003-12-31 Thread Eric Gunnerson
f advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Grant Sent: Friday, December 26, 2003 11:47 AM To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] Timers and Process Monitoring I have 3 objects in my VB .NET project: 1. DeltaTau wrapped COM object (talking to a PMAC controlle

Re: [ADVANCED-DOTNET] Timers and Process Monitoring

2003-12-28 Thread Bob Lynch
ECTED] On Behalf Of Grant Sent: Friday, December 26, 2003 11:47 AM To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] Timers and Process Monitoring I have 3 objects in my VB .NET project: 1. DeltaTau wrapped COM object (talking to a PMAC controller over USB) Updates GUI textbox controls with cu

[ADVANCED-DOTNET] Timers and Process Monitoring

2003-12-26 Thread Grant
I have 3 objects in my VB .NET project: 1. DeltaTau wrapped COM object (talking to a PMAC controller over USB) Updates GUI textbox controls with current process status info 2. Vision native .NET object (controlling a vision process over Matrox Mil 7.5) displays a continuous live camer