<?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: User Input Menu in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516818#M38066</link>
    <description>&lt;DIV id="jive-html-wrapper-div"&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;It's&amp;nbsp;a function of the&amp;nbsp;Dynamic Input&amp;nbsp;in &lt;BR /&gt;
2006.&amp;nbsp; Any LSP program with a GETKWORD function in it will display &lt;BR /&gt;
something similar to that.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;I used the following snippet of code to create a similar &lt;BR /&gt;
"menu".&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;(initget 1 "Add Select Elbow Rise droP Crossing Takeoff Damper &lt;BR /&gt;
Vav settinGs eXit")&lt;BR /&gt;(setq strOption&lt;BR /&gt;(getkword "\n DUCT &lt;BR /&gt;
[Add/Select/Elbow/Rise/droP/Crossing/Takeoff/Damper/Vav box/settinGs/eXit]: &lt;BR /&gt;
&amp;lt;eXit&amp;gt; "))&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;[img src="@97398"]&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;-- &lt;BR /&gt;Matt W&lt;BR /&gt;"What am I gonna do &lt;BR /&gt;
with 40 subscriptions to Vibe?"&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&amp;lt;cadcamm99&amp;gt; wrote in message &lt;/FONT&gt;&lt;A&gt;&lt;BR /&gt;
href="news:5049278@discussion.autodesk.com"&amp;gt;&lt;FONT&gt;&lt;BR /&gt;
size=2&amp;gt;news:5049278@discussion.autodesk.com&lt;/FONT&gt;&lt;/A&gt;&lt;FONT&gt;&lt;BR /&gt;
size=2&amp;gt;...&lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT size="2"&gt;I am talking about the command 'imageframe'. &lt;BR /&gt;
This turns off the frame box around images.&amp;nbsp; After typing in the command, I &lt;BR /&gt;
get a command prompt to type in 0, 1, or 2.&amp;nbsp; I also get a small pick menu &lt;BR /&gt;
to select either 0, 1, or 2. I want to know how can I create a that pick menu in &lt;BR /&gt;
my programs.&amp;nbsp; I am using AutoCAD Mechanical 2006. It is sort of like &lt;BR /&gt;
Keyword except with a menu.&lt;BR /&gt;&lt;/FONT&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 03 Jan 2006 19:39:12 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2006-01-03T19:39:12Z</dc:date>
    <item>
      <title>User Input Menu</title>
      <link>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516815#M38063</link>
      <description>when I type in imageframe I get a user input menu. How do I create a menu like that in VBA?</description>
      <pubDate>Fri, 23 Dec 2005 17:06:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516815#M38063</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-12-23T17:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Menu</title>
      <link>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516816#M38064</link>
      <description>cadcam,&lt;BR /&gt;
&lt;BR /&gt;
If you are talking about the Image manger if has a treeview control&lt;BR /&gt;
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon98/html/vbconusingtreeviewcontrol.asp&lt;BR /&gt;
&lt;BR /&gt;
and a listview control&lt;BR /&gt;
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon98/html/vbconlistviewscenario1.as&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
In the VBA controls box just right click and add these two additional controls. There are lots of examples on the web on using these two controls together&lt;BR /&gt;
&lt;BR /&gt;
Try MrExcel for general VBA and VBA controls question&lt;BR /&gt;
Since there are so many more Excel users than Acad users you can find more more info there&lt;BR /&gt;
&lt;BR /&gt;
http://www.mrexcel.com/board2/&lt;BR /&gt;
&lt;BR /&gt;
Maximo</description>
      <pubDate>Fri, 23 Dec 2005 21:42:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516816#M38064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-12-23T21:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Menu</title>
      <link>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516817#M38065</link>
      <description>I am talking about the command 'imageframe'. This turns off the frame box around images.  After typing in the command, I get a command prompt to type in 0, 1, or 2.  I also get a small pick menu to select either 0, 1, or 2. I want to know how can I create a that pick menu in my programs.  I am using AutoCAD Mechanical 2006. It is sort of like Keyword except with a menu.</description>
      <pubDate>Tue, 03 Jan 2006 19:03:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516817#M38065</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-01-03T19:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Menu</title>
      <link>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516818#M38066</link>
      <description>&lt;DIV id="jive-html-wrapper-div"&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;It's&amp;nbsp;a function of the&amp;nbsp;Dynamic Input&amp;nbsp;in &lt;BR /&gt;
2006.&amp;nbsp; Any LSP program with a GETKWORD function in it will display &lt;BR /&gt;
something similar to that.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;I used the following snippet of code to create a similar &lt;BR /&gt;
"menu".&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;(initget 1 "Add Select Elbow Rise droP Crossing Takeoff Damper &lt;BR /&gt;
Vav settinGs eXit")&lt;BR /&gt;(setq strOption&lt;BR /&gt;(getkword "\n DUCT &lt;BR /&gt;
[Add/Select/Elbow/Rise/droP/Crossing/Takeoff/Damper/Vav box/settinGs/eXit]: &lt;BR /&gt;
&amp;lt;eXit&amp;gt; "))&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;[img src="@97398"]&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;-- &lt;BR /&gt;Matt W&lt;BR /&gt;"What am I gonna do &lt;BR /&gt;
with 40 subscriptions to Vibe?"&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT size="2"&gt;&amp;lt;cadcamm99&amp;gt; wrote in message &lt;/FONT&gt;&lt;A&gt;&lt;BR /&gt;
href="news:5049278@discussion.autodesk.com"&amp;gt;&lt;FONT&gt;&lt;BR /&gt;
size=2&amp;gt;news:5049278@discussion.autodesk.com&lt;/FONT&gt;&lt;/A&gt;&lt;FONT&gt;&lt;BR /&gt;
size=2&amp;gt;...&lt;/FONT&gt;&lt;/DIV&gt;&lt;FONT size="2"&gt;I am talking about the command 'imageframe'. &lt;BR /&gt;
This turns off the frame box around images.&amp;nbsp; After typing in the command, I &lt;BR /&gt;
get a command prompt to type in 0, 1, or 2.&amp;nbsp; I also get a small pick menu &lt;BR /&gt;
to select either 0, 1, or 2. I want to know how can I create a that pick menu in &lt;BR /&gt;
my programs.&amp;nbsp; I am using AutoCAD Mechanical 2006. It is sort of like &lt;BR /&gt;
Keyword except with a menu.&lt;BR /&gt;&lt;/FONT&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Jan 2006 19:39:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516818#M38066</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-01-03T19:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Menu</title>
      <link>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516819#M38067</link>
      <description>I'm sure you can do the same thing in VBA using the &lt;BR /&gt;
ThisDrawing.Utility.GetKeyword.  I've never done anything with that in VBA &lt;BR /&gt;
so I can't supply a snippet to get you going.  I'm sure if you do a search &lt;BR /&gt;
for GetKeyWord you'll find plenty of examples.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.&lt;BR /&gt;
-- &lt;BR /&gt;
Matt W&lt;BR /&gt;
"What am I gonna do with 40 subscriptions to Vibe?"&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;CADCAMM99&gt; wrote in message news:5049278@discussion.autodesk.com...&lt;BR /&gt;
I am talking about the command 'imageframe'. This turns off the frame box &lt;BR /&gt;
around images.  After typing in the command, I get a command prompt to type &lt;BR /&gt;
in 0, 1, or 2.  I also get a small pick menu to select either 0, 1, or 2. I &lt;BR /&gt;
want to know how can I create a that pick menu in my programs.  I am using &lt;BR /&gt;
AutoCAD Mechanical 2006. It is sort of like Keyword except with a menu.&lt;/CADCAMM99&gt;</description>
      <pubDate>Tue, 03 Jan 2006 19:41:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516819#M38067</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-01-03T19:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Menu</title>
      <link>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516820#M38068</link>
      <description>Displaying a "context sensitive menu" is automatic for lisp or vba. They key&lt;BR /&gt;
is the formatting of your prompt for the GetKeyword method. In the picture&lt;BR /&gt;
you posted, notice the how square brakets and slashes are used to delineate&lt;BR /&gt;
the choices that are established using the InitializeUserInput method.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
----&lt;BR /&gt;
Ed&lt;BR /&gt;
----&lt;BR /&gt;
"Matt W" &lt;SPAM&gt; wrote in message&lt;BR /&gt;
news:5049357@discussion.autodesk.com...&lt;BR /&gt;
I'm sure you can do the same thing in VBA using the&lt;BR /&gt;
ThisDrawing.Utility.GetKeyword.  I've never done anything with that in VBA&lt;BR /&gt;
so I can't supply a snippet to get you going.  I'm sure if you do a search&lt;BR /&gt;
for GetKeyWord you'll find plenty of examples.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.&lt;BR /&gt;
-- &lt;BR /&gt;
Matt W&lt;BR /&gt;
"What am I gonna do with 40 subscriptions to Vibe?"&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;CADCAMM99&gt; wrote in message news:5049278@discussion.autodesk.com...&lt;BR /&gt;
I am talking about the command 'imageframe'. This turns off the frame box&lt;BR /&gt;
around images.  After typing in the command, I get a command prompt to type&lt;BR /&gt;
in 0, 1, or 2.  I also get a small pick menu to select either 0, 1, or 2. I&lt;BR /&gt;
want to know how can I create a that pick menu in my programs.  I am using&lt;BR /&gt;
AutoCAD Mechanical 2006. It is sort of like Keyword except with a menu.&lt;/CADCAMM99&gt;&lt;/SPAM&gt;</description>
      <pubDate>Wed, 04 Jan 2006 16:24:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516820#M38068</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-01-04T16:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Menu</title>
      <link>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516821#M38069</link>
      <description>Thanks, that seemed to do the trick.</description>
      <pubDate>Wed, 04 Jan 2006 19:25:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/user-input-menu/m-p/1516821#M38069</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-01-04T19:25:45Z</dc:date>
    </item>
  </channel>
</rss>

