Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K

7 Posted Topics

Member Avatar for MaddTechwf

When you open or close the Notes form, check or uncheck the ToolStrip button. To handle the case where the user closes the form manually, simply add this in the FormClosing event handler: [CODE]DirectCast(Me.Parent, [B][i]TypeOfParentForm[/i][/B]).[B][i]NameOfToolStripButton[/i][/B].Checked = False[/CODE]

Member Avatar for ndeniche
0
1K
Member Avatar for Jessurider

Personally, when doing video-related things I use Monitor.Enter/Exit manually. One UI thread, one capture thread, one saving thread. I find it really helps with performance. So if you would prefer threads over BackgroundWorkers, just keep that kind of performance thing in mind.

Member Avatar for Jessurider
-2
173
Member Avatar for nadav64

I don't know how you might run as an administrator, but you can do a Windows 7/Vista check with this: [code=C#]if(Environment.OSVersion.Platform == PlatformID.Win32NT && Environment.OSVersion.Version.Major >= 6) { // The OS is Win7 or Vista } else { // It's something else }[/code]

Member Avatar for minitech
0
109
Member Avatar for zachattack05

No, with the code as-is you have no potential deadlock problems. Static objects are fine, as long as you have a good reason to use them in the particular class. But as for locking static objects and using synchronization on static properties, go ahead. In this case, however, you might …

Member Avatar for zachattack05
0
142
Member Avatar for pseudorandom21

And yes, using a delegate is the way to go for cross-thread control access. I believe that when an exception is thrown from another thread started using Thread.Start(), it terminates the thread, but when you are not debugging it does not give an error message to the user, just shuts …

Member Avatar for pseudorandom21
0
143
Member Avatar for minitech

I'm Ryan O'Hara from Parksville, 13 years old, VB.NET/C#/JavaScript programmer, nice to meet you all! :)

Member Avatar for susheelsundar
0
40
Member Avatar for JudeV

Your second for loop's conditional part should be [icode]iColumn <= iSize - iRow[/icode].

Member Avatar for minitech
0
114

The End.