Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Greeting,
I have the following code for creating mdb by clicking on button in workbook sheet. The code is working fine but the problem is the mdb format is 2000 and I need it to be 2003 format? Any suggestion please?? Public Const db_File = "My_db" Sub CreateMydb() Dim MyCatalog As New ADOX.Catalog FullName = ThisWorkbook.Path & "\" & db_File & ".mdb" On Error Resume Next Kill FullName On Error GoTo 0 MyConct = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & FullName & ";" MyCatalog.Create MyConct & ";Data Source = " & FullName End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel opens two windows (2007 & 2003 format): I want only 2003. | Excel Discussion (Misc queries) | |||
Excel 2003. Custom format gets replaced by Special format. | New Users to Excel | |||
Convert Excel 2007 format (*.xlsx) into Excel 2003 format | Excel Discussion (Misc queries) | |||
how do I create a dialog box in Excel 2003 | Excel Programming | |||
How do I create a geographic map in Excel 2003? | Excel Worksheet Functions |