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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by BillericayMicky

  1. BillericayMicky

    ListView - No Header

    You can use something like: Dim mrow ListView1.HideColumnHeaders = True ListView1.ColumnHeaders.Add ListView1.View = lvwReport Set mrow = ListView1.ListItems.Add(, , "ABC") Set mrow = ListView1.ListItems.Add(, , "1234") or just set HideColumnHeaders on in the (Custom) viewer
  2. BillericayMicky

    How do I know if I'm in debug mode or execute mode?

    You can also check by using the command arguments. In VB go to .... Project Project Properties Make Then set the Command Line Arguments: to,say, DEV In your code check status by .... If Command() = "DEV" Then MsgBox "In Dev" Else MsgBox "Running Live" End If

Part and Inventory Search

Back
Top