- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
4 Posted Topics
Please forgive me if I am posting it in a wrong forum. I have a software (Sourcegear) which I use as a configuration management tool. Due to some reason I cannot upgrade the Sourcegear version. The current version i have is 1.2.1 This work well with .NET Framework ver 1.1. … | |
Re: Hi, I tryied it with Form and I got the desired result. [CODE]private void Form1_Load(object sender, EventArgs e) { OleDbConnection cnn = new OleDbConnection(); cnn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=C:\\temp\\myData.xls;" + "Extended Properties=Excel 8.0;"; OleDbDataAdapter dap = new OleDbDataAdapter("SELECT * From [Sheet1$]", cnn); DataSet ds = new DataSet(); dap.Fill(ds,"ExcelInfo"); foreach(DataRow d in … | |
Re: I think you need to create the instance of your mobile class before you add in in ArrayList. Mobile m1=new Mobile(); | |
Hi, I want to write a small desktop application which will fetch Live stock price from NSE/BSE or Yahoo finance website. In order to create such application I need the guidance that how shoudl I proceed with? The major problem I am facing is connecting a desktop application with intenet … |
The End.