Results 1 to 9 of 9

Thread: Clear Comboboxes ?[Resolved]

Threaded View

  1. #1

    Thread Starter
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    Clear Comboboxes ?[Resolved]

    Right now I have this code . It works fine unless I bind those comboboxes to arrays. any other solutions ?
    VB Code:
    1. Dim ComBox As Control
    2. For Each ComBox In ME.Controls
    3.                         If TypeOf ComBox Is ComboBox Then
    4.                             ComBox.Text = ""
    5.                         End If
    6.                     Next
    Thanks
    Last edited by Pirate; Apr 18th, 2003 at 01:25 PM.

Posting Permissions

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



Click Here to Expand Forum to Full Width