You can also run the process with arguments if acceptable.
Example:
Process.Start("firefox.exe","-url www.ibotmodz.net");
- iBotModz
- → Viewing Profile: Posts: dschu012
iBotModz CBox
Community Stats
- Group Members+
- Active Posts 83
- Profile Views 4,599
- Member Title Private Grade 2
- Age Age Unknown
- Birthday Birthday Unknown
-
Gender
Not Telling
0
Neutral
User Tools
Friends
dschu012 hasn't added any friends yet.
Latest Visitors
Posts I've Made
In Topic: (VB.NET & C#) Executing A File
16 May 2009 - 08:42 AM
In Topic: [REQUEST]Factorial Calculator?
15 May 2009 - 10:37 AM
Factorial should be pretty easy since you only need a number as an input
http://www.megaupload.com/?d=4YNY16JU
Here is an example of a factorial calculator. If the answer is above 18446744073709552000 it won't work because that is the maximum size of a ulong. So as long as you use it to calculate the factorials of numbers below 60ish you should be good.
http://www.megaupload.com/?d=4YNY16JU
Here is an example of a factorial calculator. If the answer is above 18446744073709552000 it won't work because that is the maximum size of a ulong. So as long as you use it to calculate the factorials of numbers below 60ish you should be good.
In Topic: (C#) Linear Searching
12 May 2009 - 12:11 PM
A recursive function is a function that calls itself.
Example:
What you posted is a linear search
Example:
//C++ Returns the Greatest Common Denominator int gcd(int x, int y) { if (y == 0) return x; else return gcd(y, x % y); //calls itself }
What you posted is a linear search
In Topic: (C#) Loops
12 May 2009 - 12:00 PM
I mean a "do while" loop.While is in there, look further down.
int i = 0; do { i++; }while(i < 10);
That example really doesn't prove to be helpful. But it can be very helpful whenever you need to do something atleast once, then repeat the action based on the results.
In Topic: (C#) Loops
11 May 2009 - 09:56 PM
Should just be called a for loop not "for next". While your at it why not cover do while (they can be helpful) and foreach.
Community Forum Software by IP.Board 3.4.6
Licensed to: Connor (iBotPeaches)