Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. supernewb

    Multi-page UserForm Navigation Stopped Working

    Hello, I created 3 multi-page user forms in vba for Word(UserForm1, UserForm2, UserForm3) When the user completes UserForm1, it closes and opens UserForm2....and so on. It has been working fine for a few years now with no problems (on both mac & pc) and suddenly, when UserForm2 opens, the...
  2. supernewb

    checkbox values

    they work!!! thanks so much Skip(again) and PH. i'd been struggling with that loop for days. dina
  3. supernewb

    checkbox values

    hi all, i'm trying to look through a group of checkboxes to see if any of them have been checked. if ANY have been checked then i would like to make the value of the CheckBox_p2b true. word2000 document p2b (controls the subtitle on the document) p2b1 (bullet point1 on doc) p2b2 (bullet...
  4. supernewb

    Optimize Code - Part 2 (checkbox values)

    thanks anyway. btw. you are quite an artist. love your work! D
  5. supernewb

    Optimize Code - Part 2 (checkbox values)

    Hi Gerry, Thanks for posting. This is for a client review type thing, which will be used over and over, but will be diff. for each review. For ease of use, the checkboxes have been grouped into categories, each box within each category corresponds to an option that may or may not need to be...
  6. supernewb

    Optimize Code - Part 2 (checkbox values)

    waaaaaaaaaaaah. no actually, i'm reading up on the select case structure now. i understand its overall purpose. i will have to practice with this one a bit. thanks again!
  7. supernewb

    Optimize Code - Part 2 (checkbox values)

    gotcha. will work with this. thanks so much Skip!! i had no idea this could even be done.
  8. supernewb

    Optimize Code - Part 2 (checkbox values)

    this rocks!! the only thing is that my CheckBox_p2bprompt checks EVERY check box in the whole form. i do not understand all of the code, specifically [If Left(.Name, 5)]; so i just cut and pasted it into my form. thank you so much!
  9. supernewb

    Optimize Code - Part 2 (checkbox values)

    while i'm on the subject of optimizing my code... i have tried to shorten this with a do loop (there are actually some with 50 checkboxes). when testing, i can f8 thru the thing, but it doesn't actually do anything on the form. i've since deleted my practice do loop code, but can recreate if...
  10. supernewb

    Optimize Code?

    hi all, i'm running out of ideas. i now have two user forms (word2000)and they are huge & i will take the blame for some of this :O . both were getting "not enough memory errors" when i ran them- but i was able to optimize the first form and now it runs without errors. this is some code from...
  11. supernewb

    Word User Form -Saving Form with User Input?

    thanks Eman2005!
  12. supernewb

    Word User Form -Saving Form with User Input?

    hi there, I am using Word2000, and am using a userform with a template. I have a form with 18 pages. The user finishes entering the info into the form for a few pages and and wants to save this input and go back later to finish entering the rest. I actually would like to save everything the...
  13. supernewb

    Word User Forms - Formatting Text that appears on Document

    thank you both for responding so quickly. fumei, this is EXACTLY what i needed!! this is the same 25+ page doc i have been working on for awhile now, and putting the formatting into the header would not have worked. thank you so much. Spikemannen - good info to know, will probably use this...
  14. supernewb

    Word User Forms - Formatting Text that appears on Document

    hi all, i have created a user form in a Word template which passes along the selected/typed in info to a formatted Word Document (at designated bookmarks). one of the user fields is the applicants "first name". this "first name" is used many times throughout the finished document and works...
  15. supernewb

    Word Combo box - Can user select more than one option?

    hi there, I am working on a user form in Word 2000. I have populated a combobox with a list of items. When I go to use the form, I noticed that I can only select one item per combobox. I would like to be able to select two or more of the items in the combobox. Any tips on how to do this...
  16. supernewb

    Word User Form - Referencing Bookmarks

    Thank you Gerry!! The .Text property and "2" option for re-establishing the bookmarks worked great. I didn't realize that I was pasting text over the bookmarks. I will also use the fields (your "1" option) for another part of my form. This form will be re-used again and again and since...
  17. supernewb

    Word User Form - Referencing Bookmarks

    I tried this and it worked!? If CheckBox1.Value = True Then ActiveDocument.Bookmarks("b3").Range = TextBox1.Text I am used to VBA in Excel and Access. I rarely use Word. This may not be the best way to do this, but at least it put the text in there. :) Feedback always welcome. cheers. D
  18. supernewb

    Word User Form - Referencing Bookmarks

    I have created a simple user form in Word 2000 with two checkboxes (CheckBox1 and CheckBox2) with corresponding textboxes (TextBox1 and TextBox2). I would like the user to be able to select one or both of the checkboxes(got that part). On the word document, I have created a bookmark "b3" to...

Part and Inventory Search

Back
Top