Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
VB.NET, and Timers
Name: MTec007 Date: July 16, 2008 at 11:23:42 Pacific OS: XP Home 2002 SP3 CPU/Ram: Celeron M 1.30GHz/25 Product: Dell Inspirn 1200
Comment:
I have a small timer function to create a marquee effect in the titlebar. it works but it keeps the application busy so that the window can not be exited or moved. the timer is making the app use 24000K Mem usage is there a fix to this code? code: Timer2.Interval = 500 Private Sub Timer2_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Timer2.Elapsed If Not (intPosition <= strScrollText.Length) Then intPosition = 0 End If Me.Text = strScrollText.Substring(intPosition) & strScrollText intPosition = intPosition + 1 End Su
Summary: Thanks. I'll try that as soon as I get a chance. It sucks not having VS.Net on my Home PC(I do have VS 6 though but a lot of good that does me for my VB.net and C# classes) Oh BTW, This is the first ...
Summary: I have source for a C project that I have compiled as a DLL and am accessing its functions from a VB.NET Program. I have successfully been able to call the DLLs functions that I need. However, I nee...
Summary: Hello...I have been trying to learn about vb.net by doing online tutorials, but I'm having problems. I started a project with vb that accesses an access db. I can click around to see all of the recor...