Forum: C# Feb 6th, 2009 |
| Replies: 3 Views: 1,969 Even I dont understand the whole article:icon_rolleyes:
But U just need to do this:
Include references to the Mshtml.dll file . To do this in your Visual C# .NET project, follow these steps:
... |
Forum: C# Feb 6th, 2009 |
| Replies: 3 Views: 1,969 Hope this will be helpful
http://support.microsoft.com/kb/329014 |
Forum: C# Jan 30th, 2009 |
| Replies: 3 Views: 270 Try this:
//Rejecting negative amounts in deposits
public void deposit(double amount)
{
if(amount < 0)
{
Console.WriteLine("Sorry, You cannot deposit negative amounts to your... |
Forum: C# Jan 21st, 2009 |
| Replies: 3 Views: 519 This site contains all about connection strings. Hope it will help you
http://www.connectionstrings.com/ |
Forum: C# Jan 16th, 2009 |
| Replies: 3 Views: 755 You can do this using a while loop by counting the row index in a counter variable as you advance along each row
rowCnt = -1;//Row Counter
string name= null;
while(myDataReader.Read())//Advance to... |
Forum: C# Jan 16th, 2009 |
| Replies: 2 Views: 424 HighSchool.Teacher staff = new HighSchool.Teacher("Vice Principal");
Here u are creating an object of the class named Teacher which is derived from the class Person. So when u create the object... |
Forum: C# Dec 30th, 2008 |
| Replies: 7 Views: 2,129 this.Close(); and Application.Exit(); both will work. Your problem may be with the C# case sensitivity. For Eg: try this.Close(); instead of this.close() and Application.Exit(); instead of... |
Forum: C# Dec 23rd, 2008 |
| Replies: 6 Views: 2,181 From Decimal to Binary..
using System;
class Program{
static void Main(string[] args){
try{ |
Forum: C# Dec 23rd, 2008 |
| Replies: 4 Views: 627 Well it was on the application spec that i got |
Forum: C# Dec 22nd, 2008 |
| Replies: 4 Views: 627 Hi experts,
I am writing a window application in C# which requires to format user selected hard drive programatically. Any help or suggestions please? |