Search Results

Showing results 1 to 9 of 9
Search took 0.00 seconds.
Search: Posts Made By: nmaillet ; Forum: C# and child forums
Forum: C# Aug 5th, 2009
Replies: 4
Views: 456
Posted By nmaillet
When creating Form 1, use this method:
Application.Run(new Form1());
This should set Form 1 as the main window of the program, and should terminate the program when it is closed.
Note: This calls...
Forum: C# Jul 26th, 2009
Replies: 7
Views: 317
Posted By nmaillet
i = i + 1 would be equivalent to ++i. Since the expression (i = i + 1) evaluates as i + 1.
Forum: C# Jul 26th, 2009
Replies: 7
Views: 317
Posted By nmaillet
I always though it was executed after the entire expression, however if you run this code:
class Program
{
static void Main(string[] args)
{
int i = 0;
int d = (i++) +...
Forum: C# May 8th, 2009
Replies: 5
Views: 558
Posted By nmaillet
That depends on what namespace it is in and what you are doing, but you would call it the same way as if it was in the same project.
Forum: C# May 8th, 2009
Replies: 5
Views: 558
Posted By nmaillet
You need to add a reference to the class library. Right click on References, click Add References..., click on the project tab, and add the library. This is assuming the class library is in the...
Forum: C# Apr 26th, 2009
Replies: 6
Views: 898
Posted By nmaillet
Try str.Split(new char[] {' '}, StringSplitOptions.RemoveEmptyEntries);.
Forum: C# Apr 20th, 2009
Replies: 6
Views: 2,159
Posted By nmaillet
Some of the code you are using might be helpful, but using the Close event is probably what you are looking for.
Forum: C# Apr 19th, 2009
Replies: 1
Views: 478
Posted By nmaillet
You can use the CheckedChanged event of the radio button, then set the Text property of the text box.
Forum: C# Apr 15th, 2009
Replies: 2
Views: 421
Posted By nmaillet
If you set TabStop to true, it should work for you. I believe that scrolls bars are generally not selectable.
Showing results 1 to 9 of 9

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC