<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348852#M77499</link>
    <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;It seems Kesta is not interested, &lt;BR /&gt;
anyway:&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Dim adoCat As New ADOX.Catalog ' Needs an ADO &lt;BR /&gt;
Extension&amp;nbsp; reference&lt;BR /&gt;Dim adoConn As New ADODB.Connection 'Needs an ADO &lt;BR /&gt;
lib reference&lt;BR /&gt;Dim cnStr As String&lt;BR /&gt;Dim sql As String&lt;BR /&gt;adoCat.Create &lt;BR /&gt;
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\dbTest.mdb;"&lt;BR /&gt;cnStr = &lt;BR /&gt;
"Provider=Microsoft.Jet.OLEDB.4.0;User ID=admin;Data &lt;BR /&gt;
Source=C:\dbTest.mdb;Persist Security Info=False"&lt;BR /&gt;Set adoCat = &lt;BR /&gt;
Nothing&lt;BR /&gt;adoConn.Open cnStr&lt;BR /&gt;sql = "CREATE TABLE CONTACTS ([CNAME] &lt;BR /&gt;
TEXT,[CADDRESS]TEXT)"&lt;BR /&gt;adoConn.Execute sql&lt;BR /&gt;adoConn.Close&lt;BR /&gt;Set adoConn = &lt;BR /&gt;
Nothing&lt;/FONT&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 31 Jan 2002 11:37:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2002-01-31T11:37:47Z</dc:date>
    <item>
      <title>Creating New MS Access Database From AutoCAD</title>
      <link>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348847#M77494</link>
      <description>I am an experiencd user of AutoCAD and Access and have linked information between the two systems into existing databases. I cannot get any information as to how to create a new database. I have vague pieces of info like 'CreateDatabase' &amp;amp; 'CreateTable' and although I can use these without error nothing actually happens. So...&lt;BR /&gt;
1. Can you tell me how to create a new database with tables from AutoCAD &amp;amp; &lt;BR /&gt;
2. Is there anywhere I can go on the web to get this info about VBA functions of various packages - it is not in any help file, book or web site that I know of&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Kesta</description>
      <pubDate>Tue, 29 Jan 2002 16:10:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348847#M77494</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-01-29T16:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Creating New MS Access Database From AutoCAD</title>
      <link>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348848#M77495</link>
      <description>I have successfully created an Access database using the  DAO 3.51 Object library (CreateDatabase, CreateTableDef, CreateField methods) through Excel VBA (Acad is the same) without any glithces, can't remember where I put the code though. You may also be able to the same with ADO (ActiveX Data Objects) which seems the more popular choice for Database access. Try searching the Microsoft MSDN VB documentation, this is where I figured out how to do it.</description>
      <pubDate>Tue, 29 Jan 2002 18:54:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348848#M77495</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-01-29T18:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating New MS Access Database From AutoCAD</title>
      <link>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348849#M77496</link>
      <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Kesta:&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;See the zip in customer files under the subject &lt;BR /&gt;
"Create Data Base DAO", it contains a vb 6 project for database creation using &lt;BR /&gt;
dao.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;The next links use to have very good ingormation on &lt;BR /&gt;
vb and others topics&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;A&gt;&lt;BR /&gt;
href="http://www.devx.com"&amp;gt;Http://www.devx.com&lt;/A&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;A&gt;&lt;BR /&gt;
href="http://www.vbp"&amp;gt;Http://www.vbp&lt;/A&gt;j.com&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;A&gt;&lt;BR /&gt;
href="http://www.1sqlstreet.com"&amp;gt;Http://www.1sqlstreet.com&lt;/A&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;-gnb&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 30 Jan 2002 06:55:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348849#M77496</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-01-30T06:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Creating New MS Access Database From AutoCAD</title>
      <link>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348850#M77497</link>
      <description>&lt;DIV&gt;Please, let DAO &amp;amp; RDO die gracefully...&amp;nbsp;MS is killing them anyway, &lt;BR /&gt;
so don't prolong their lives because of supposed 'performance issues' with &lt;BR /&gt;
ADO.&amp;nbsp;The only performance issue with ADO i've seen since 2.1 (and it was a &lt;BR /&gt;
performance killer) is programmers inability to&amp;nbsp;upgrade their &lt;BR /&gt;
skills.&amp;nbsp;Use ADO instead... But this code doesn't depend on any of them &lt;BR /&gt;
(ADO, DAO, or RDO) &lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'early binding&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim accessApp As New &lt;BR /&gt;
Access.Application&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; accessApp.CreateAccessProject &lt;BR /&gt;
("path\to\myDb.mdb")&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 31 Jan 2002 00:49:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348850#M77497</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-01-31T00:49:20Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348851#M77498</link>
      <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Yeah, it only depends on Office being installed on &lt;BR /&gt;
that computer... Let the programmer beware. ADO gives your code Office &lt;BR /&gt;
independence.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;BR /&gt;-- &lt;BR /&gt;R. Robert Bell, MCSE&lt;BR /&gt;&lt;A&gt;&lt;BR /&gt;
href="http://www.AcadX.com"&amp;gt;www.AcadX.com&lt;/A&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE dir="ltr"&gt;&lt;BR /&gt;
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;"ADOman" &amp;lt;&lt;A&gt;&lt;BR /&gt;
  href="mailto:acroteria@hotmail.com"&amp;gt;acroteria@hotmail.com&lt;/A&gt;&amp;gt; wrote in &lt;BR /&gt;
  message &lt;A&gt;&lt;BR /&gt;
  href="news:03C89EBE7C9AB28210523D214D21EEEF@in.WebX.maYIadrTaRb"&amp;gt;news:03C89EBE7C9AB28210523D214D21EEEF@in.WebX.maYIadrTaRb&lt;/A&gt;...&lt;/DIV&gt;&lt;BR /&gt;
  &lt;DIV&gt;Please, let DAO &amp;amp; RDO die gracefully...&amp;nbsp;MS is killing them &lt;BR /&gt;
  anyway, so don't prolong their lives because of supposed 'performance issues' &lt;BR /&gt;
  with ADO.&amp;nbsp;The only performance issue with ADO i've seen since 2.1 (and it &lt;BR /&gt;
  was a performance killer) is programmers inability to&amp;nbsp;upgrade their &lt;BR /&gt;
  skills.&amp;nbsp;Use ADO instead... But this code doesn't depend on any of them &lt;BR /&gt;
  (ADO, DAO, or RDO) &lt;/DIV&gt;&lt;BR /&gt;
  &lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
  &lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'early binding&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
  &lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim accessApp As New &lt;BR /&gt;
  Access.Application&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; accessApp.CreateAccessProject &lt;BR /&gt;
  ("path\to\myDb.mdb")&lt;/FONT&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 31 Jan 2002 07:56:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348851#M77498</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-01-31T07:56:54Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348852#M77499</link>
      <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;It seems Kesta is not interested, &lt;BR /&gt;
anyway:&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Dim adoCat As New ADOX.Catalog ' Needs an ADO &lt;BR /&gt;
Extension&amp;nbsp; reference&lt;BR /&gt;Dim adoConn As New ADODB.Connection 'Needs an ADO &lt;BR /&gt;
lib reference&lt;BR /&gt;Dim cnStr As String&lt;BR /&gt;Dim sql As String&lt;BR /&gt;adoCat.Create &lt;BR /&gt;
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\dbTest.mdb;"&lt;BR /&gt;cnStr = &lt;BR /&gt;
"Provider=Microsoft.Jet.OLEDB.4.0;User ID=admin;Data &lt;BR /&gt;
Source=C:\dbTest.mdb;Persist Security Info=False"&lt;BR /&gt;Set adoCat = &lt;BR /&gt;
Nothing&lt;BR /&gt;adoConn.Open cnStr&lt;BR /&gt;sql = "CREATE TABLE CONTACTS ([CNAME] &lt;BR /&gt;
TEXT,[CADDRESS]TEXT)"&lt;BR /&gt;adoConn.Execute sql&lt;BR /&gt;adoConn.Close&lt;BR /&gt;Set adoConn = &lt;BR /&gt;
Nothing&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 31 Jan 2002 11:37:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348852#M77499</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-01-31T11:37:47Z</dc:date>
    </item>
    <item>
      <title>JET for ADO 2.6 and later</title>
      <link>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348853#M77500</link>
      <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Note: MDAC 2.6 and 2.7 do not contain any of the &lt;BR /&gt;
JET components.&amp;nbsp; &lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;A&gt;&lt;BR /&gt;
href="http://support.microsoft.com/support/kb/articles/Q271/9/08.ASP"&amp;gt;Q271908&lt;/A&gt;&amp;nbsp;[http://support.microsoft.com/support/kb/articles/Q271/9/08.ASP] &lt;BR /&gt;
and&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;A&gt;&lt;BR /&gt;
href="http://support.microsoft.com/support/kb/articles/Q239/1/14.ASP"&amp;gt;Q239114&lt;/A&gt;&amp;nbsp;[http://support.microsoft.com/support/kb/articles/Q239/1/14.ASP]&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 31 Jan 2002 13:34:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/creating-new-ms-access-database-from-autocad/m-p/348853#M77500</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2002-01-31T13:34:54Z</dc:date>
    </item>
  </channel>
</rss>

