Dear Be-Exceller
Saya coba jalankan macro dari Ms vb help dibawah ini kok gak bisa jalan
Compile error ; Sub or Function not defined
Dimana yang salah
Mohon pengetahuannya
Wassalam wr wb
Example
This example retrieves the database name and DBMS name for the Northwind
database and then displays these names in a message box.
databaseName = "Northwind"
chan = SQLOpen("DSN=" & databaseName)
dsName = SQLGetSchema(chan, 8)
dsDBMS = SQLGetSchema(chan, 9)
MsgBox "Database name is " & dsName & ", and its DBMS is " & dsDBMS
SQLClose chan