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

  1. MartinCurrie

    urgent Array passing to function problem

    Try doing: for j = 0 to Cols-1 and see if this helps.
  2. MartinCurrie

    Entities not recognized in mail with CDonts

    Try copying the 'R' symbol from Word into your HTML Page. Here's one I made earlier ® Hope it works...
  3. MartinCurrie

    Clearing a simple multiselect listbox

    Add this code after the code which opens your report. Dim intCount As Integer For intCount = 0 To MyList.ListCount - 1 If MyList.Selected(intCount) = True Then MyList.Selected(intCount) = False End If Next
  4. MartinCurrie

    Query resulting in null

    criteria=iif(isnull(FormName!ControlName),0,FormName!ControlName)

Part and Inventory Search

Back
Top