Forum: C# Feb 7th, 2007 |
| Replies: 8 Views: 14,532 int intTemp = Convert.ToInt32(Console.Readline()) |
Forum: C# Jul 6th, 2006 |
| Replies: 10 Views: 31,206 yeah, sorry you need using System.Text also |
Forum: C# Jul 5th, 2006 |
| Replies: 10 Views: 31,206 actually you don't want to be able to decrypt it.
what you do is encrypt the password and save that in the database
when the user logs in, encrypt the password the input on the login screen... |
Forum: C# Nov 8th, 2005 |
| Replies: 6 Views: 3,045 I'm assuming you meant 22.00 OR Great and 16.50 OR Greater
double valueAfterDeduction(double oldValue){
if(oldValue >= 22.00) oldValue -= 3.3;
else if(oldValue >= 16.5) oldValue = (oldValue *... |
Forum: C# Aug 12th, 2005 |
| Replies: 10 Views: 2,480 copy and paste the whole error message |
Forum: C# Aug 12th, 2005 |
| Replies: 10 Views: 2,480 Try this (http://www.microsoft.com/downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en) |
Forum: C# Aug 5th, 2005 |
| Replies: 10 Views: 2,480 You have to have the .net framework installed. You can include that as part of your install progam. |