<?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: Utility to Quickly Convert VBA Forms to VB Forms in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357091#M42730</link>
    <description>Thanks for your answer&lt;BR /&gt;
Yes, what you mention is one of the ideal solutions .. what you say will give me ability to work with control arrays from VB of which I am fond of. &lt;BR /&gt;
&lt;BR /&gt;
The events of the controls  in the VBA form I am inheriting unfortunately will have  to undergo major changes when I do a direct manual copy from VBA to VB the reason being that none of those controls are control arrays (since VBA is not capable of creating control arrays) and I find event triggers with non-arrayed controls too cumbersome -- &lt;BR /&gt;
&lt;BR /&gt;
Your solution is one of the best but will take awhile.&lt;BR /&gt;
&lt;BR /&gt;
Matt</description>
    <pubDate>Sun, 19 Jun 2005 16:50:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2005-06-19T16:50:30Z</dc:date>
    <item>
      <title>Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357084#M42723</link>
      <description>Does anybody know if there is a quick utility to convert  a  VBA form  to a VB form?&lt;BR /&gt;
&lt;BR /&gt;
I have inherited this huge vba program -- its taken a whole day just converting like 1/2 of all those forms -- and I am considering various options on how to best inherit it with scalability in mind.&lt;BR /&gt;
&lt;BR /&gt;
I have been doing a lot of soul searching to find out the best and fastest way to deal with this -- and the viable way that keeps popping out is convert all to VB.&lt;BR /&gt;
&lt;BR /&gt;
Thank you so much for all the kind help you can give. All suggestions welcome.&lt;BR /&gt;
&lt;BR /&gt;
Matt</description>
      <pubDate>Fri, 17 Jun 2005 10:33:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357084#M42723</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-17T10:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357085#M42724</link>
      <description>Thats okay -- I think I have the quick form conversion I am looking for -- what I did was do a file export of the forms from inside VBA, then from VB add a form and navigate to those exported forms. &lt;BR /&gt;
&lt;BR /&gt;
Its quick, unfortunately it comes up as a form with a funny looking triangle inside VB (no big deal unless it mean some kind of danger I might not be aware of at the moment -- kindly advise) -- I havent tested an exe created from it (crossing fingers) hoping all goes well.&lt;BR /&gt;
&lt;BR /&gt;
Matt</description>
      <pubDate>Fri, 17 Jun 2005 10:54:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357085#M42724</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-17T10:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357086#M42725</link>
      <description>Form exported from VBA is different from the intrinsic form in VB. When you&lt;BR /&gt;
added into a VB project, as you have noticed, it is not under the "Forms"&lt;BR /&gt;
folder, instead, it is under "Designers" folder, because the form is from a&lt;BR /&gt;
foreign environment (VBA). That means your VB project is added one or more&lt;BR /&gt;
dependency files, which may or may not present on the computers of the&lt;BR /&gt;
targeting users of your app.&lt;BR /&gt;
&lt;BR /&gt;
It is not recommended to export VBA form and add to VB project, unless you&lt;BR /&gt;
have no other options. Basically, you need to recreate those forms in VB.&lt;BR /&gt;
&lt;BR /&gt;
&lt;MATT_1CA&gt; wrote in message news:4877848@discussion.autodesk.com...&lt;BR /&gt;
Thats okay -- I think I have the quick form conversion I am looking for -- &lt;BR /&gt;
what I did was do a file export of the forms from inside VBA, then from VB&lt;BR /&gt;
add a form and navigate to those exported forms.&lt;BR /&gt;
&lt;BR /&gt;
Its quick, unfortunately it comes up as a form with a funny looking triangle&lt;BR /&gt;
inside VB (no big deal unless it mean some kind of danger I might not be&lt;BR /&gt;
aware of at the moment -- kindly advise) -- I havent tested an exe created&lt;BR /&gt;
from it (crossing fingers) hoping all goes well.&lt;BR /&gt;
&lt;BR /&gt;
Matt&lt;/MATT_1CA&gt;</description>
      <pubDate>Fri, 17 Jun 2005 15:22:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357086#M42725</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-17T15:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357087#M42726</link>
      <description>Thanks Norman,&lt;BR /&gt;
&lt;BR /&gt;
What you have presented is a really interesting concept on dependencies -- I will try to dig deeper into this..&lt;BR /&gt;
&lt;BR /&gt;
Matt</description>
      <pubDate>Sat, 18 Jun 2005 07:48:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357087#M42726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-18T07:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357088#M42727</link>
      <description>I found this at: &lt;BR /&gt;
VBA2VBFormConverter.zip&lt;BR /&gt;
http://www.cadvault.com/forums/showthread.php?t=2442&lt;BR /&gt;
I never try it before and hope it help.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Wes</description>
      <pubDate>Sun, 19 Jun 2005 03:03:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357088#M42727</guid>
      <dc:creator>wesbird</dc:creator>
      <dc:date>2005-06-19T03:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357089#M42728</link>
      <description>I believe VBA and VB forms are fundamentally different so that is why it is difficult to find such a utility. I think your best bet is to create a new form and copy only the code over with minor changes such as the focus events.</description>
      <pubDate>Sun, 19 Jun 2005 03:29:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357089#M42728</guid>
      <dc:creator>GTVic</dc:creator>
      <dc:date>2005-06-19T03:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357090#M42729</link>
      <description>Thanks Wes I will go and give it a try.&lt;BR /&gt;
&lt;BR /&gt;
Gratefully,&lt;BR /&gt;
Matt</description>
      <pubDate>Sun, 19 Jun 2005 16:36:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357090#M42729</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-19T16:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357091#M42730</link>
      <description>Thanks for your answer&lt;BR /&gt;
Yes, what you mention is one of the ideal solutions .. what you say will give me ability to work with control arrays from VB of which I am fond of. &lt;BR /&gt;
&lt;BR /&gt;
The events of the controls  in the VBA form I am inheriting unfortunately will have  to undergo major changes when I do a direct manual copy from VBA to VB the reason being that none of those controls are control arrays (since VBA is not capable of creating control arrays) and I find event triggers with non-arrayed controls too cumbersome -- &lt;BR /&gt;
&lt;BR /&gt;
Your solution is one of the best but will take awhile.&lt;BR /&gt;
&lt;BR /&gt;
Matt</description>
      <pubDate>Sun, 19 Jun 2005 16:50:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357091#M42730</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-19T16:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357092#M42731</link>
      <description>As Wes mentions later in the group, there is a routine written by a chap&lt;BR /&gt;
from Hawaii, Leslie Lowe. I used it 12 months ago and found it excellent.&lt;BR /&gt;
&lt;BR /&gt;
Jon</description>
      <pubDate>Mon, 20 Jun 2005 07:55:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357092#M42731</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-20T07:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Utility to Quickly Convert VBA Forms to VB Forms</title>
      <link>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357093#M42732</link>
      <description>This has me really excited -- I can't wait to give the program a try -- thanks Jon&lt;BR /&gt;
&lt;BR /&gt;
Gratefully,&lt;BR /&gt;
Matt</description>
      <pubDate>Mon, 20 Jun 2005 21:50:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/utility-to-quickly-convert-vba-forms-to-vb-forms/m-p/1357093#M42732</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-20T21:50:23Z</dc:date>
    </item>
  </channel>
</rss>

