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 strongm 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: *

  • Users: RiceW
  • Order by date
  1. RiceW

    Removing Objects from a Collection

    Is there a way to remove objects from a collection without knowing the key? Or, is there a way to find the index of an object in a collection? Specifically, I want to check a property of an object in a collection. If it's false, I want to remove it, but I won't always know the key. Thanks in...
  2. RiceW

    Toolbar Backcolor and API question

    How do you set the background color of a toolbar through API. I figure it's probably the SendMessage or SetWindowLong, but don't know exactly how. Also, in the SendMessage, on of the parameters is wMsg and you pass in various values to do certain things. How do I fond out what these are. In...
  3. RiceW

    How can I measure time less than 1 millisecond?

    I need to time an event that usually takes less than one millisecond. Is there a way to do so?
  4. RiceW

    DHTML Menu

    There is a GREAT menu at http://www.milonic.com
  5. RiceW

    Change a node's text colr in a treeview?

    Well, that was painless. How dumb of me. Thank you!!!
  6. RiceW

    Change a node's text colr in a treeview?

    How do you change the node's text colr in a treeview. It is probably simple with an API, but I can't find it! Thanks in advance.
  7. RiceW

    unloading a form

    Here is the code! Private Sub UnloadThisForm_Click Dim lAnswer As Long lAnswer= MsgBox("Are you sure you want to exit?", _ vbYesNo, "MyProject") If lAnswer = vbYes Then Unload Me End If End Sub There it is. Hope this helps.
  8. RiceW

    So easy, close form

    Use "Unload Me"

Part and Inventory Search

Back
Top