Avatar of Scootman78
Scootman78
 asked on

Is it possible to mass modify form elements in VB Script like what can be done in Access VBA?

Hi everybody - Happy St. Patrick's Day Eve to ya.

Sorry in advance for writing so much, but I come from the school of thought that the more you explain at the beginning, the less confusion that's caused later on.  Of course making sense in the first place is always important.....

In Access (I have tried with 2003 and 2007), I can assign properties quickly to controls by grouping them like so:
Dim this1 as control
     For each this1 in me.form
        If Instr(1,this1.name,"start")>0 then
        this1.visible=True
        else
        this1.visible=False
        End If
     Next

Open in new window

What this does in Access (which I usually trigger via a button or an event when the form loads) is make visible all the controls in the form that have "start" as part of the name of the control.  Any control in the form that doesn't have "start" in the name will go invisible.

Does anyone know what the equivalent of this is in VB Script?  Is it even possible to do this, or something similar (I'm flexible!) to this in VB Script?  I have a pretty complex page of elements (a bunch of div "id" elements to be exact) and rather than going in and typing 4 lines of the same code for 10 different div ids, I would like to try the same thing I would do in Access and use 7 or 8 lines of code than 40 to update the form elements.  Sorry for running on with that last sentence by the way.

Is it possible to do something like the code above in VB Script?  I tried the following and VB Script doesn't like it.  Microsoft Scripting Editor errored on the For Each line and said "Object doesn't support this property or method."

dim this1
   For each this1 in document.body
     If instr(1,this1.id,"start")>0 then
       this1.style.visibility="visible"
       this1.style.display="block"
     else
       this1.style.visibility="hidden"
       this1.style.display="none"
     end if
   next

Open in new window

And I know I could nest some divs inside others to some of what I'm trying to do, but unfortunately I'm using the divs in a lot of different areas in the document's body.  I am self-taught on Access quite well, but VB Script is still something I'm learning more of as I go along.  Hopefully there's a similarity between the two when it comes to mass updating controls/elements because it would save me a lot of time writing out lines.

Thanks in advance for any help you can give.
VB Script

Avatar of undefined
Last Comment
Scootman78

8/22/2022 - Mon
Martin Liss

Which Office app are you using?
Scootman78

ASKER
Sorry, I did forget to clarify that.  For the VB Script, I'm coding it directly into Notepad and the file being ran is actually a .hta file that calls a separate .vbs file.
ASKER CERTIFIED SOLUTION
Scootman78

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Scootman78

ASKER
I am accepting my own solution because I solved it on my own (makes sense right?).  I appreciate the effort(s) made to help me.  I couldn't find a question or solution like I had on EE, so I had to look elsewhere.  Hopefully other EE users can benefit from this.

I'm sure there are better ways to use forms within the VB Script to keep the code from having to look through every element in the entire document.  For my needs, going through the entire document is sufficient.

And I would decrease my points to 0 if I could (I don't need points).  I'm just happy to have an answer.
Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy