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

  1. vestrinang

    HOT DO I USE MULTIPLE LINES IN A LABEL'S CAPTION

    The answer above is good, but I have some specifications to it, so let's rewrite it and see what I mean: For i = 0 To List1.ListCount - 1 If List1.Selected(i) Then if i<>0 then Label1.Caption = Label1.Caption & vbCrLf Label1.Caption = Label1.Caption & List1.List(i) End If Next i...
  2. vestrinang

    Comparing Dates in SQL

    Try this: sqlString = &quot;SELECT * FROM rec WHERE rec.TheDate BETWEEN #&quot; & Month(myBegDate) & &quot;/&quot; & Day(myBegDate) & &quot;/&quot; & Year(myBegDate) & &quot;# AND #&quot; & Month(myEndDate) & &quot;/&quot; & Day(myEndDate) & &quot;/&quot; & Year(myEndDate) & &quot;#;&quot...

Part and Inventory Search

Back
Top