Results 1 to 7 of 7

List boxes not displaying choices

Threaded View

  1. #1
    Registered User
    Join Date
    05-20-2008
    MS-Off Ver
    2003 suite
    Posts
    64

    List boxes not displaying choices

    Hello all. I'm very new to the VB experience and am having trouble getting the choices in my list boxes to show up.

    Here's my code.

    Private Sub UserForm1_Initialize()
        txtJobNumber.Value = ""
        txtCustomer.Value = ""
        txtProject.Value = ""
        txtDeliverTo.Value = ""
        txtWantedby.Value = ""
        txtSchedbuildon.Value = ""
        txtScheduledon.Value = ""
        txtEsthrs.Value = ""
        cboStatus.Value = ""
        With cboSalesman
            .AddItem "SL"
            .AddItem "MG"
            .AddItem "WC"
        End With
        cboSalesman.Value = ""
        With cboDesigner
            .AddItem "MS"
            .AddItem "BA"
            .AddItem "JM"
            .AddItem "DH"
            .AddItem "DR"
            .AddItem "DC"
        End With
        cboDesigner.Value = ""
        With cboStatus
            .AddItem "Des"
            .AddItem "TRP"
        End With
        cboStatus.Value = ""
        With cboJobtype
            .AddItem "Res"
            .AddItem "Com"
            .AddItem "PB"
            .AddItem "Add"
        End With
        cboJobtype.Value = ""
        txtJobNumber.SetFocus
    End Sub
    Am I missing something?

    Thanks!
    Last edited by NBVC; 03-10-2009 at 01:21 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1