Forum: VB.NET Sep 25th, 2006 |
| Replies: 5 Views: 9,000 hi seth,
I have tried the same coding with access too and i dont seem to have a problem.
Check ur provider path again.
Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Registry Path=;Jet... |
Forum: VB.NET Sep 20th, 2006 |
| Replies: 1 Views: 1,293 hi sunil,
To create a webservice, |
Forum: VB.NET Sep 20th, 2006 |
| Replies: 5 Views: 9,000 hi seth,
Looks like u r really frustated.U need to make slight changes in the code. Below is the code with the changes.
Dim conService As New SqlConnection("ur path")
Dim currpath As String... |
Forum: VB.NET Aug 28th, 2006 |
| Replies: 1 Views: 1,863 hi,
Since you are using vb.net,there are some changes to be made in the code.
while myReader.Read
txtName.Text = myReader("PName").ToString
txtIC.Text = myReader("NoIC").ToString
txtAge.Text... |
Forum: VB.NET Aug 16th, 2006 |
| Replies: 1 Views: 995 hi,
You could try this and see if it works.
You have said that you had copied all the code from the application into yours.Just recomplile the code and create a new dll.put the dll in to your... |
Forum: VB.NET Aug 16th, 2006 |
| Replies: 2 Views: 14,627 hi,
Here is the code to connect to the database in Ms Access.
Connection string for MS Access via OLE DB:
Dim connection As OleDbConnection
connection = new... |
Forum: VB.NET Aug 16th, 2006 |
| Replies: 3 Views: 2,382 Hi sravan,
When you are using crystal reports in vb.net,there is no method databind available.It is enough if you set the reportsource property to the correct crystal report.
Here is your... |
Forum: VB.NET Aug 9th, 2006 |
| Replies: 1 Views: 2,999 hi,
Write the following code in form load event
Dim conn As New OleDb.OleDbConnection("Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Registry Path=;Jet OLEDB:Database Locking Mode=1;Jet... |
Forum: VB.NET Aug 9th, 2006 |
| Replies: 1 Views: 5,133 Hi peer,
The following steps will help you to create a crystal report.
Right click thesolution explorer and select crystal report from Add New Item.
Create a dataset in your application... |
Forum: VB.NET Aug 9th, 2006 |
| Replies: 5 Views: 61,462 hi,
You can use the following code to display the selected text in the textbox.
Private Sub ListView1_ItemDrag(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemDragEventArgs) Handles... |
Forum: VB.NET Aug 3rd, 2006 |
| Replies: 0 Views: 892 Hi,
I am developing a windows service which will monitor the mail server and reads the mail contents and updates in a database. My mail server uses Outlook Express.
I am using Outlook Express... |