Forum: C# Feb 7th, 2008 |
| Replies: 9 Views: 4,193 Not my intention to be rude or ungrateful, but I'm confused as to how that link helps me. It doesn't say anything about getting Drag/Drop events firing on frames (they have fired on every other... |
Forum: C# Jan 28th, 2008 |
| Replies: 7 Views: 838 Thanks! Now off to rip off your idea and sell it on ebay for an extra kidney.
Honestly, sounds like an interesting thing to code. My guess is that it shouldn't be *that* hard. Here's to hoping you... |
Forum: C# Jan 24th, 2008 |
| Replies: 9 Views: 1,802 put this in the event handler for the delete button:
if (MessageBox.Show("Deleting data", "are you sure you want to delete the data?", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
... |
Forum: C# Dec 1st, 2007 |
| Replies: 2 Views: 8,782 I *think* I see what you mean. Make the hidde form(from here referred to as formH) a member variable of the form with the open button(from here referred to as formO). That way, only one formH is ever... |
Forum: C# Nov 20th, 2007 |
| Replies: 2 Views: 880 Properties are to control access to member variables. You can make them read only or read/write. I'm sure there's this other important thing but I do a lot of mushroom.
There's only two ways I... |
Forum: C# Nov 17th, 2007 |
| Replies: 2 Views: 1,450 oh i see.
this should work:
fooString = "<a name=\""+fooObject+"\">hello</a>"
The slash (\) escapes the inner quotes, telling the compiler that the quote directly after each slash is part of... |
Forum: C# Nov 16th, 2007 |
| Replies: 8 Views: 19,557 Well I can't conclusively say that one is better, because they serve different purposes.
Are you familiar with OOP? In OOP, static objects or members of a class that can be accessed directly from... |