Consulting

Results 1 to 7 of 7

Thread: Userform Combobox in Word

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    VBAX Regular
    Joined
    Jul 2018
    Posts
    9
    Location

    Userform Combobox in Word

    Hi there,

    I am trying to get a combox to list items in a userform in Word. It seems completed different then from Excel! I am missing something obvious....

    I can get the textboxes to flow through to the document (using document bookmarks), but I cannot get the combobox drop down items to show.
    The combobox is called Circumstances



    Private Sub Circumstances_Change()


    With Me.Circumstances
    .AddItem "we reviewed your plan"
    .AddItem "we discussed a tax strategy"
    .AddItem "you mentioned"
    .AddItem "recently purchased a home for $"
    .AddItem "You mentioned concerns about meeting your financial obligations if you were not longer able to work"
    .AddItem "are expecting a new addition to your family"
    .AddItem "you are the sole income earner"
    .AddItem "you have been requested by your lender to obtain life insurance to cover your business loan"
    .AddItem "you had concerns about your business continuing to operate should you become unable to work"
    .AddItem "we review your plan, which identified a need"
    End With




    End Sub
    Attached Files Attached Files

Tags for this Thread

Posting Permissions

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