February 2nd, 2011 10:00 AM
Got it.
MessageBox.Show(ctrl.Name);
thanks
February 2nd, 2011 09:36 AM
Another quick question....
How can I get the i and j values and pass them to my ctrlClick method?
February 2nd, 2011 09:17 AM
I got it working another way. I inserted
pictureBox[i, j].Name = i.ToString() + j.ToString();
then displayed it
MessageBox.Show(pictureBox[i, j].Name);
Is there another way of finding...
February 2nd, 2011 09:05 AM
Hi,
Im working on an app that displays pictureboxes dynamically through a 2d array. I have it working but I am trying to find the value of a selected picturebox using a click event by displaying...
January 4th, 2011 10:04 PM
Hi, im new to c# and new to this forum.
Win 7 64bit
.net 3.5 (using vs2008)
I found this code online to get the 'UninstallString' from a specific subkey within the registry. I am trying to...