Forum: VB.NET Aug 8th, 2007 |
| Replies: 2 Views: 2,165 Hi,
Use DataReader which is very fast. Check This Code:
Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader
cn = New... |
Forum: VB.NET Jul 29th, 2007 |
| Replies: 13 Views: 17,944 Hi,
Every time u Build and run ur project, An "Exe" file is created in The "Bin" folder of the application path, u can use this Exe to re-distribute.
To Create Set-up Package Check This... |
Forum: VB.NET Jul 4th, 2007 |
| Replies: 1 Views: 2,948 Hi,
Keep a Public Array of Selected ID's. In the LoadOrders Fill the DataGrid With all the items in the Array.
Say If ur SQL Query Is:
Select * From OrderDet Where ItemId='aa'
Change It... |