Consulting

Results 1 to 11 of 11

Thread: Solved: Do Ask Fields Require VBA?

  1. #1
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location

    Solved: Do Ask Fields Require VBA?

    I have a group of users that I need to teach how to use ASK fields. Even as simple as the VBA is to make the prompts appear, it would be easier if they didn't have to mess with it. The problem is: I don't know how to get the prompts to appear when a document is opened without using VBA. Is it possible?

  2. #2
    Administrator
    VP-Knowledge Base
    VBAX Guru MOS MASTER's Avatar
    Joined
    Apr 2005
    Location
    Breda, The Netherlands
    Posts
    3,281
    Location
    Hi,

    Better to use Fillin Field.
    Just insert it and save the document as template.

    Open it and tada there it is. fillin the question and the value is inserted at the location of the field.
    _________
    Groetjes,

    Joost Verdaasdonk
    M.O.S. Master

    Mark your thread solved, when it has been, by hitting the Thread Tools dropdown at the top of the thread.
    (I don't answer questions asked through E-mail or PM's)

  3. #3
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    Oh, that field looks easier than ASK since ASK requires a bookmark and a REF field. I'll teach them FILLIN instead. Anyway, doesn't that require an update to the field to show the prompt? Seems like I can't get around the VBA with that one.

  4. #4
    Administrator
    VP-Knowledge Base
    VBAX Guru MOS MASTER's Avatar
    Joined
    Apr 2005
    Location
    Breda, The Netherlands
    Posts
    3,281
    Location
    Quote Originally Posted by xCav8r
    Oh, that field looks easier than ASK since ASK requires a bookmark and a REF field. I'll teach them FILLIN instead. Anyway, doesn't that require an update to the field to show the prompt? Seems like I can't get around the VBA with that one.
    Yes indeed Fillin is easier.

    Fillin or ASK will always require a field update to be shown again. There purpose is to pop up with a newly created document / or merge doc. Not every time a document is opened.

    Well IMO the VBA is not nessecary.
    You say you will teach them how to use the field?

    If so teach them to put the cursor on the field (or select) and press F9 if they want to change the field value.

    Easy peasy I'd say!
    _________
    Groetjes,

    Joost Verdaasdonk
    M.O.S. Master

    Mark your thread solved, when it has been, by hitting the Thread Tools dropdown at the top of the thread.
    (I don't answer questions asked through E-mail or PM's)

  5. #5
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    Yes, easy, I know, but they're moving from Word Perfect and if the Word Perfect behavior can be replicated in Word without VBA, then so much the better. These fields will be used on templates, and the prompts for them really only need to appear when the document first opens, so in document_new for the template, I do...

    [VBA] selection.wholestory
    selection.fields.update [/VBA]

    That's what I was hoping to avoid. Are you saying that both these field types prompt the user whenever a new document is created?

  6. #6
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    Well, what do you know? I don't need VBA. Very cool. Thanks.

  7. #7
    Administrator
    VP-Knowledge Base
    VBAX Guru MOS MASTER's Avatar
    Joined
    Apr 2005
    Location
    Breda, The Netherlands
    Posts
    3,281
    Location
    Ahums.....did you actually try my suggestion?

    Again:
    * Create doc
    * Add Fillin Field
    * Save as Template

    create document from template (Moment you want it to appear) Tada.....see attachment

    This should do it for yah????
    _________
    Groetjes,

    Joost Verdaasdonk
    M.O.S. Master

    Mark your thread solved, when it has been, by hitting the Thread Tools dropdown at the top of the thread.
    (I don't answer questions asked through E-mail or PM's)

  8. #8
    Administrator
    VP-Knowledge Base
    VBAX Guru MOS MASTER's Avatar
    Joined
    Apr 2005
    Location
    Breda, The Netherlands
    Posts
    3,281
    Location
    Quote Originally Posted by xCav8r
    Well, what do you know? I don't need VBA. Very cool. Thanks.
    Ah you beat me!.....
    _________
    Groetjes,

    Joost Verdaasdonk
    M.O.S. Master

    Mark your thread solved, when it has been, by hitting the Thread Tools dropdown at the top of the thread.
    (I don't answer questions asked through E-mail or PM's)

  9. #9
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    hehe...yeah, sorry. :P

  10. #10
    Administrator
    VP-Knowledge Base
    VBAX Guru MOS MASTER's Avatar
    Joined
    Apr 2005
    Location
    Breda, The Netherlands
    Posts
    3,281
    Location
    Quote Originally Posted by xCav8r
    hehe...yeah, sorry. :P
    Hehehe..try, try, try first!
    _________
    Groetjes,

    Joost Verdaasdonk
    M.O.S. Master

    Mark your thread solved, when it has been, by hitting the Thread Tools dropdown at the top of the thread.
    (I don't answer questions asked through E-mail or PM's)

  11. #11
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    Okay, I'm a bad boy.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •