<?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: Please help VBA Newbe with second project ever. in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407241#M41425</link>
    <description>I think that because you're coming from LISP, you may&lt;BR /&gt;
be approaching the design of your UI with the limitations &lt;BR /&gt;
of what you're used to, which IMO, is a mistake.&lt;BR /&gt;
&lt;BR /&gt;
The 120 label thing is certainly not the way to go, although&lt;BR /&gt;
that might be the only avenue if you were using LISP/DCL,&lt;BR /&gt;
but you're not in DCL purgatory any longer with VBA.&lt;BR /&gt;
&lt;BR /&gt;
First you should forget about the limitations and constraints&lt;BR /&gt;
that you're used to designing user interfaces with, and look&lt;BR /&gt;
at what else VBA has to offer.&lt;BR /&gt;
&lt;BR /&gt;
Given what you've described so for, it's fairly obvious that&lt;BR /&gt;
your interface needs to be some type of grid or listview,&lt;BR /&gt;
that has two columns, one or both of which are editable.&lt;BR /&gt;
&lt;BR /&gt;
If you are writing code for others, then they deserve better&lt;BR /&gt;
than a VBA application with a user interface that suffers&lt;BR /&gt;
from the the inherent (and quite rediculous, if I may say so)&lt;BR /&gt;
constraints of LISP/DCL.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930455@discussion.autodesk.com...&lt;BR /&gt;
I'm sorry if I miscomunicated. It allows the user to type in up to 119 Job numbers before they are forced to run the code. If they only type in one Job number it should also work. But it may happen that they will have 200 job numbers at times and they can only run the code for 119 at a time.&lt;/MID-AWE&gt;</description>
    <pubDate>Wed, 17 Aug 2005 15:54:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2005-08-17T15:54:50Z</dc:date>
    <item>
      <title>Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407224#M41408</link>
      <description>Hey all,&lt;BR /&gt;
&lt;BR /&gt;
I'm struggling with learning the most basic VBA concepts. I know how to program from my experience with LISP and the old BASIC so the handling of variables and stuff is easy for me but I need to know how to get the user's input from a text box and store it as a variable that I'll show in the dialogue in a label. I have labels 1 through 119 and I'll increment the numbers as data is entered by  a control button. Now when this button is clicked or enter is pressed on the keyboard I'd like to get the value or whatever it's called from the textbox and assign that value to the appropriate label.&lt;BR /&gt;
&lt;BR /&gt;
Can anyone please help. Thanks in advance.</description>
      <pubDate>Tue, 16 Aug 2005 19:12:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407224#M41408</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-16T19:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407225#M41409</link>
      <description>Maybe I’m missing something but it sounds like what you want to do is  something like&lt;BR /&gt;
Variable = TextBox.Text&lt;BR /&gt;
Label.caption = variable.</description>
      <pubDate>Tue, 16 Aug 2005 19:41:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407225#M41409</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-16T19:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407226#M41410</link>
      <description>I'll give it a try thanks.</description>
      <pubDate>Tue, 16 Aug 2005 20:11:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407226#M41410</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-16T20:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407227#M41411</link>
      <description>I also think that I'm going to have to use a variable as a name of a variable. I'm sure that is probably confusion so I'll explain. I need the names of the labels to increment each time data is entered into the textbox and the command button is clicked. example:&lt;BR /&gt;
&lt;BR /&gt;
J48591 = first click becomes label1.caption&lt;BR /&gt;
&lt;BR /&gt;
J48639 = second click becomes label2.caption&lt;BR /&gt;
&lt;BR /&gt;
J46320 = third click becomes label3.caption&lt;BR /&gt;
etc.,etc.&lt;BR /&gt;
&lt;BR /&gt;
can I just use a variable.lable ? or is there some other way?&lt;BR /&gt;
&lt;BR /&gt;
Am I going to have to create an array?</description>
      <pubDate>Tue, 16 Aug 2005 20:21:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407227#M41411</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-16T20:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407228#M41412</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
In general (and certainly not with the programming skills of a learner) VBA &lt;BR /&gt;
controls cannot be renamed.&lt;BR /&gt;
&lt;BR /&gt;
You could put 120 labels in the same place and control their visibility with &lt;BR /&gt;
code, so that only one is visible by use Previous and Next controls - and &lt;BR /&gt;
each time these controls are used, read the value to an array based on a &lt;BR /&gt;
counter.  These controls have a reference number in the control set of the &lt;BR /&gt;
form.  Hence you could do some along the lines of this psuedo code&lt;BR /&gt;
For i = x to y&lt;BR /&gt;
Form.Item( i).visible = false&lt;BR /&gt;
next i&lt;BR /&gt;
Form.Item( counter).visible = true&lt;BR /&gt;
&lt;BR /&gt;
You could also use a list box holding the counter number and use it to &lt;BR /&gt;
control the visibility of the text boxes.&lt;BR /&gt;
&lt;BR /&gt;
I would include a label which describes what that particular texzt box is &lt;BR /&gt;
requiring for data entry.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
CADApps&lt;BR /&gt;
www.cadapps.com.au&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930195@discussion.autodesk.com...&lt;BR /&gt;
I also think that I'm going to have to use a variable as a name of a &lt;BR /&gt;
variable. I'm sure that is probably confusion so I'll explain. I need the &lt;BR /&gt;
names of the labels to increment each time data is entered into the textbox &lt;BR /&gt;
and the command button is clicked. example:&lt;BR /&gt;
&lt;BR /&gt;
J48591 = first click becomes label1.caption&lt;BR /&gt;
&lt;BR /&gt;
J48639 = second click becomes label2.caption&lt;BR /&gt;
&lt;BR /&gt;
J46320 = third click becomes label3.caption&lt;BR /&gt;
etc.,etc.&lt;BR /&gt;
&lt;BR /&gt;
can I just use a variable.lable ? or is there some other way?&lt;BR /&gt;
&lt;BR /&gt;
Am I going to have to create an array?&lt;/MID-AWE&gt;</description>
      <pubDate>Tue, 16 Aug 2005 21:31:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407228#M41412</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-16T21:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407229#M41413</link>
      <description>I'm not really trying to change the visibility of the labels but it's a good idea. What I want is to have the data sent to the label after button clicking. I need the program to know that if the last data was sent to label1 then the next time the button is clicked it should be sent to label2 and so on. below is what I have so far:&lt;BR /&gt;
[code]Dim Varcnt As Variant&lt;BR /&gt;
Dim LblVar As Variant&lt;BR /&gt;
Dim JNUM As Variant&lt;BR /&gt;
&lt;BR /&gt;
Public Sub MutiPlot()&lt;BR /&gt;
Varcnt = 1&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Private Sub Label1_Click()&lt;BR /&gt;
&lt;BR /&gt;
Label1.Caption = JNUM&lt;BR /&gt;
JNUM = DataEnter.Text&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
Private Sub Lst_Add_Click()&lt;BR /&gt;
&lt;BR /&gt;
Set LblVar = "Label" + Varcnt&lt;BR /&gt;
&lt;BR /&gt;
JNUM = DataEnter.Text&lt;BR /&gt;
LblVar.Caption = JNUM&lt;BR /&gt;
&lt;BR /&gt;
Varcnt = Varcnt + 1&lt;BR /&gt;
&lt;BR /&gt;
End Sub[/code]&lt;BR /&gt;
This of course give me and error but I am unable to correct it.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for all your help</description>
      <pubDate>Tue, 16 Aug 2005 21:49:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407229#M41413</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-16T21:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407230#M41414</link>
      <description>too bad vba does not support control arrays&lt;BR /&gt;
&lt;BR /&gt;
one could try something like&lt;BR /&gt;
Dim ctl As Object&lt;BR /&gt;
Dim i As Integer&lt;BR /&gt;
i = 1&lt;BR /&gt;
  For Each ctl In Me.Controls&lt;BR /&gt;
    If TypeOf ctl Is Label Then&lt;BR /&gt;
      If ctl.Name = "Label" &amp;amp; i Then&lt;BR /&gt;
        ctl.Caption = "Label caption " &amp;amp; i&lt;BR /&gt;
      End If&lt;BR /&gt;
&lt;BR /&gt;
    End If&lt;BR /&gt;
    i = i + 1&lt;BR /&gt;
  Next ctl&lt;BR /&gt;
&lt;BR /&gt;
But since you have over 100 labels (yikes!?!)&lt;BR /&gt;
that's not a very elegant solution&lt;BR /&gt;
hopefully someone can do better&lt;BR /&gt;
&lt;BR /&gt;
Mark&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930325@discussion.autodesk.com...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Set LblVar = "Label" + Varcnt&lt;/MID-AWE&gt;</description>
      <pubDate>Tue, 16 Aug 2005 22:28:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407230#M41414</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-16T22:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407231#M41415</link>
      <description>The 119 labels are for the 119 job numbers that I'm allowing the user to type in before running the remainder of code. The user must be able to view a complete list of the numbers that they type in and make changes if necessary before continuing the code. I would do more than 119 if a reasonably sized dialogue could fit them in. &lt;BR /&gt;
Thanks for the suggestion I'll try it.</description>
      <pubDate>Tue, 16 Aug 2005 22:42:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407231#M41415</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-16T22:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407232#M41416</link>
      <description>Sorry, I only received an error stating that the object doesn't support this property or method.&lt;BR /&gt;
Any other suggestions?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance.</description>
      <pubDate>Tue, 16 Aug 2005 22:52:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407232#M41416</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-16T22:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407233#M41417</link>
      <description>Here is another idea. Class is light, just a sample. Something&lt;BR /&gt;
to play with anyway.&lt;BR /&gt;
&lt;BR /&gt;
sorry if this goes through more than once.&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930359@discussion.autodesk.com...&lt;BR /&gt;
Sorry, I only received an error stating that the object doesn't support this &lt;BR /&gt;
property or method.&lt;BR /&gt;
Any other suggestions?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance.&lt;/MID-AWE&gt;</description>
      <pubDate>Tue, 16 Aug 2005 23:45:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407233#M41417</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-16T23:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407234#M41418</link>
      <description>user has to type in 119 job numbers to start?&lt;BR /&gt;
are you sure a combo box or list box wouldn't work?&lt;BR /&gt;
a scroll bar will appear when the contents exceed the size of box&lt;BR /&gt;
you can also design the form to be resizable if need be.&lt;BR /&gt;
I'm only suggesting to consider various alternatives to your user interface&lt;BR /&gt;
before going too far down a very unusual path.&lt;BR /&gt;
not to be critical but the use of labels for this seems very different from&lt;BR /&gt;
the usual dialog interface.&lt;BR /&gt;
&lt;BR /&gt;
Does the user have to type all the data in?&lt;BR /&gt;
you cant select from a pre-filled list? a directory of folders?&lt;BR /&gt;
&lt;BR /&gt;
just trying to throw out ideas&lt;BR /&gt;
&lt;BR /&gt;
hth&lt;BR /&gt;
Mark&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930358@discussion.autodesk.com...&lt;BR /&gt;
The 119 labels are for the 119 job numbers that I'm allowing the user to&lt;BR /&gt;
type in before running the remainder of code. The user must be able to view&lt;BR /&gt;
a complete list of the numbers that they type in and make changes if&lt;BR /&gt;
necessary before continuing the code. I would do more than 119 if a&lt;BR /&gt;
reasonably sized dialogue could fit them in.&lt;BR /&gt;
Thanks for the suggestion I'll try it.&lt;/MID-AWE&gt;</description>
      <pubDate>Tue, 16 Aug 2005 23:50:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407234#M41418</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-16T23:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407235#M41419</link>
      <description>what line is the error on?&lt;BR /&gt;
&lt;BR /&gt;
Mark&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930359@discussion.autodesk.com...&lt;BR /&gt;
Sorry, I only received an error stating that the object doesn't support this&lt;BR /&gt;
property or method.&lt;BR /&gt;
Any other suggestions?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance.&lt;/MID-AWE&gt;</description>
      <pubDate>Tue, 16 Aug 2005 23:54:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407235#M41419</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-16T23:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407236#M41420</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I'm agreeing with Mark.&lt;BR /&gt;
&lt;BR /&gt;
As well, consider that any form of user input which requires the user to &lt;BR /&gt;
type in 100+ items of data is an almost certain guarantee of user input &lt;BR /&gt;
error.&lt;BR /&gt;
&lt;BR /&gt;
Can you plan to populate your fields with some sort of data (maybe the last &lt;BR /&gt;
used data set) and have the user only need to edit the changed ones?&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Laurie Comerford&lt;BR /&gt;
www.cadapps.com.au&lt;BR /&gt;
&lt;BR /&gt;
"MP" &lt;NOSPAM&gt; wrote in message &lt;BR /&gt;
news:4930435@discussion.autodesk.com...&lt;BR /&gt;
user has to type in 119 job numbers to start?&lt;BR /&gt;
are you sure a combo box or list box wouldn't work?&lt;BR /&gt;
a scroll bar will appear when the contents exceed the size of box&lt;BR /&gt;
you can also design the form to be resizable if need be.&lt;BR /&gt;
I'm only suggesting to consider various alternatives to your user interface&lt;BR /&gt;
before going too far down a very unusual path.&lt;BR /&gt;
not to be critical but the use of labels for this seems very different from&lt;BR /&gt;
the usual dialog interface.&lt;BR /&gt;
&lt;BR /&gt;
Does the user have to type all the data in?&lt;BR /&gt;
you cant select from a pre-filled list? a directory of folders?&lt;BR /&gt;
&lt;BR /&gt;
just trying to throw out ideas&lt;BR /&gt;
&lt;BR /&gt;
hth&lt;BR /&gt;
Mark&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930358@discussion.autodesk.com...&lt;BR /&gt;
The 119 labels are for the 119 job numbers that I'm allowing the user to&lt;BR /&gt;
type in before running the remainder of code. The user must be able to view&lt;BR /&gt;
a complete list of the numbers that they type in and make changes if&lt;BR /&gt;
necessary before continuing the code. I would do more than 119 if a&lt;BR /&gt;
reasonably sized dialogue could fit them in.&lt;BR /&gt;
Thanks for the suggestion I'll try it.&lt;/MID-AWE&gt;&lt;/NOSPAM&gt;</description>
      <pubDate>Wed, 17 Aug 2005 00:18:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407236#M41420</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-17T00:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407237#M41421</link>
      <description>Ok, it's working now except it only updates the label1 and none of the others. I can click as often as I like but it still assigns the data to label1. any ideas?&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
      <pubDate>Wed, 17 Aug 2005 00:19:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407237#M41421</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-17T00:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407238#M41422</link>
      <description>I'm sorry if I miscomunicated. It allows the user to type in up to 119 Job numbers before they are forced to run the code. If they only type in one Job number it should also work. But it may happen that they will have 200 job numbers at times and they can only run the code for 119 at a time.</description>
      <pubDate>Wed, 17 Aug 2005 00:23:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407238#M41422</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-17T00:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407239#M41423</link>
      <description>&amp;gt;Case -2147024809&lt;BR /&gt;
            &amp;gt;clickCounter.CounterValue = 1&lt;BR /&gt;
            Resume CommandButton1_Click_Exit&lt;BR /&gt;
&lt;BR /&gt;
I forgot this statement here.&lt;BR /&gt;
Resume CommandButton1_Click_Exit&lt;BR /&gt;
&lt;BR /&gt;
"Paul Richardson" &lt;SPAMTHIS&gt; wrote in message &lt;BR /&gt;
news:4930419@discussion.autodesk.com...&lt;BR /&gt;
Here is another idea. Class is light, just a sample. Something&lt;BR /&gt;
to play with anyway.&lt;BR /&gt;
&lt;BR /&gt;
sorry if this goes through more than once.&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930359@discussion.autodesk.com...&lt;BR /&gt;
Sorry, I only received an error stating that the object doesn't support this&lt;BR /&gt;
property or method.&lt;BR /&gt;
Any other suggestions?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance.&lt;/MID-AWE&gt;&lt;/SPAMTHIS&gt;</description>
      <pubDate>Wed, 17 Aug 2005 00:59:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407239#M41423</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-17T00:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407240#M41424</link>
      <description>Thanks, I'll give it a try.</description>
      <pubDate>Wed, 17 Aug 2005 15:35:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407240#M41424</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-17T15:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407241#M41425</link>
      <description>I think that because you're coming from LISP, you may&lt;BR /&gt;
be approaching the design of your UI with the limitations &lt;BR /&gt;
of what you're used to, which IMO, is a mistake.&lt;BR /&gt;
&lt;BR /&gt;
The 120 label thing is certainly not the way to go, although&lt;BR /&gt;
that might be the only avenue if you were using LISP/DCL,&lt;BR /&gt;
but you're not in DCL purgatory any longer with VBA.&lt;BR /&gt;
&lt;BR /&gt;
First you should forget about the limitations and constraints&lt;BR /&gt;
that you're used to designing user interfaces with, and look&lt;BR /&gt;
at what else VBA has to offer.&lt;BR /&gt;
&lt;BR /&gt;
Given what you've described so for, it's fairly obvious that&lt;BR /&gt;
your interface needs to be some type of grid or listview,&lt;BR /&gt;
that has two columns, one or both of which are editable.&lt;BR /&gt;
&lt;BR /&gt;
If you are writing code for others, then they deserve better&lt;BR /&gt;
than a VBA application with a user interface that suffers&lt;BR /&gt;
from the the inherent (and quite rediculous, if I may say so)&lt;BR /&gt;
constraints of LISP/DCL.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4930455@discussion.autodesk.com...&lt;BR /&gt;
I'm sorry if I miscomunicated. It allows the user to type in up to 119 Job numbers before they are forced to run the code. If they only type in one Job number it should also work. But it may happen that they will have 200 job numbers at times and they can only run the code for 119 at a time.&lt;/MID-AWE&gt;</description>
      <pubDate>Wed, 17 Aug 2005 15:54:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407241#M41425</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-17T15:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407242#M41426</link>
      <description>Thanks. I see you example works great., but when I try to apply it to my program it doesn't work. I have all of my labels in a separate frame from the frame that hold the command button. Is this possibly why it fails and what can I do to fix it?&lt;BR /&gt;
&lt;BR /&gt;
Thanks again.</description>
      <pubDate>Wed, 17 Aug 2005 17:29:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407242#M41426</guid>
      <dc:creator>mid-awe</dc:creator>
      <dc:date>2005-08-17T17:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Please help VBA Newbe with second project ever.</title>
      <link>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407243#M41427</link>
      <description>the program looks for Label1-Label...&lt;BR /&gt;
You would need to edit for your label&lt;BR /&gt;
names. I would just use it as an example&lt;BR /&gt;
and take the advice of others here in your&lt;BR /&gt;
design.&lt;BR /&gt;
&lt;BR /&gt;
&lt;MID-AWE&gt; wrote in message news:4931237@discussion.autodesk.com...&lt;BR /&gt;
Thanks. I see you example works great., but when I try to apply it to my &lt;BR /&gt;
program it doesn't work. I have all of my labels in a separate frame from &lt;BR /&gt;
the frame that hold the command button. Is this possibly why it fails and &lt;BR /&gt;
what can I do to fix it?&lt;BR /&gt;
&lt;BR /&gt;
Thanks again.&lt;/MID-AWE&gt;</description>
      <pubDate>Wed, 17 Aug 2005 17:49:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/please-help-vba-newbe-with-second-project-ever/m-p/1407243#M41427</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-08-17T17:49:37Z</dc:date>
    </item>
  </channel>
</rss>

