VE.NET code to VBA

SteffT

New Member
Joined
Nov 5, 2017
Messages
2
Hello all,

I need some help from you to translate VB.NET code to VBA. This is the code I would like to have help with:


Dim con As New OleDb.OleDbConnection
Dim com As New OleDb.OleDbCommand
Dim dr As Data.OleDb.OleDbDataReader

con.Open()
com.Connection = con
com.CommandText = "SELECT ID, NAME, ANZDB FROM BSTCNTOF.DBF" _
& " ORDER BY ID"
dr = com.ExecuteReader()


If con.State = System.Data.ConnectionState.Open Then
While dr.Read
If dr("ANZDB") > 0 Then
MsgBox("Name: " & dr("NAME"))
MsgBox("ID: " & dr("ID"))
End If
End While
Else
MessageBox.Show("Can not connect to Data base", "", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
con.Close()

Cheers Steff
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
PathName & _
"\ombstx\offline\;Extended Properties=dBASE IV;"

The connection string look like this
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top