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 Wanet Telecoms Ltd 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. Acer40

    Problem in deploying RPT into Different SQL Server Name

    I Don't know if this could help. Why not use OLE DB Connection. Steps: 1. Create new SCR file 2. Click Ddtabase button (Data Explorer Appears) 3. Double Click More Data Source Folder 4. Double OLE DB Folder and Make New Connection 5. On Provider Tab select Microsoft OLEDB Provider for SQL...
  2. Acer40

    The number of times a character apears in a string

    I dont know if this could help function CountDuplicates(strStringToSearch, strFind) { var intStringPos = 0; var intStringCount = 0; while (intStringPos != -1) { intStringPos = strStringToSearch.indexOf(strFind, intStringPos + 1); intStringCount++; } return(intStringCount); }

Part and Inventory Search

Back
Top