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 Mike Lewis 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. Giaggio

    FTSearch & Syntax

    Your first searchFormula works fine in a test of mine! I will test the others tomorrow but its not seems correct. Ask yourself some question: - Is my db correctly indexed ? - Firma$ contains a rigth value for the search or contains some wrong char (i.e. some spaces)? (use the debugger to verify...
  2. Giaggio

    fill array with items

    What is all() in your code? You are using i as index for the ForAll cicle (where i is a variant of Notesitem) and the next line you're using the same variable as index for an array?? Do you know something I miss? Try the code below: Option Base 0 ' so you're sure where arrays starts Sub...
  3. Giaggio

    If document doesn't exist!

    I think You need something like this: Dim searchstring$ Dim coll As Notesdocumentcollection Dim session As New Notessession Dim db As Notesdatabase ' suppose your db is the current db Set db=session.Currentdatabase searchstring$=Inputbox(" ... ' You know this function ' Trimming extra...
  4. Giaggio

    populate list box with names

    I made something similar using a notesdocumentcollection populated with the result of a search in the database, for all document in the collection I can then create an array with the values I need extracted from one or more fields per document and put the array in a multi value field hidden in...

Part and Inventory Search

Back
Top