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
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for MaddTechwf

I'm posting here because I'm not too sure Google will take the entire search criteria of what I'm trying to explain. I have a Main form, called Main.vb, that is a Parent Form. I have another form called Notes.vb. Inside Main.vb I have a toolstrip with a button on it …

Member Avatar for ndeniche
0
1K
Member Avatar for Jessurider

hey can anyone help me,........... there is a little delay when i press NumPad0 or NumPad3 at the same time when video is on...ie. the count is displayed a somewhat a little delay in the label1 and label2 [CODE] using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; using System.Linq; using …

Member Avatar for Jessurider
-2
150
Member Avatar for nadav64

okay so i have this button [CODE] private void button2_Click(object sender, EventArgs e) { OpenFileDialog fDialog = new OpenFileDialog(); fDialog.Title = "Open Injector"; fDialog.Filter = fDialog.Filter = "Exe Files|*.exe"; fDialog.InitialDirectory = @"C:\"; if (fDialog.ShowDialog() == DialogResult.OK) { MessageBox.Show(fDialog.FileName.ToString()); fDialog.CheckFileExists = true; fDialog.CheckPathExists = true; } string str = fDialog.FileName; Process …

Member Avatar for minitech
0
105
Member Avatar for zachattack05

Quick question: Is this valid, or am I missing a potential deadlock in the future: [CODE=C#] static readonly object _LockThis = new object(); private static bool _Status; private bool Status { get { lock (_LockThis) { return _Status; } } set { lock (_LockThis) { _Status = value; } } …

Member Avatar for zachattack05
0
130
Member Avatar for pseudorandom21

What happens when an exception is thrown from within a new thread of execution? How do I catch it? Must it be within the same thread? Also, what is the proper way to update a control residing on a form, from within a new thread? I think it would be …

Member Avatar for pseudorandom21
0
131
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
34
Member Avatar for JudeV

the output should be: Triangle Drawer Enter the size of the triangle: 0 The size is out of range. Enter the size of the triangle: 11 The size is out of range. Enter the size of the triangle: cats An invalid value was entered. Enter the size of the triangle: …

Member Avatar for minitech
0
97