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!

Search results for query: *

  • Users: bhas
  • Content: Threads
  • Order by date
  1. bhas

    array declaration

    Is declaring an array like this correct? Function Check_Val(ByRef arrArray) Dim row As Integer, j As Integer For row = LBound(arrArray) To UBound(arrArray) - 1 For j = row + 1 To UBound(arrArray) If arrArrray(j) = arrArray(row) Then Check_Val =...
  2. bhas

    lbound errors

    when i try to run this script i get an error like 'type mismatch' for lbound. any one knows why? Function Check_Val(ByRef arrArray) Dim row , j For row = LBound(arrArray) To UBound(arrArray) - 1 For j = row + 1 To UBound(arrArray) If arrArrray(j) <> arrArray(row) Then Check_Val = arrArray(row)...
  3. bhas

    mapping problem

    I am getting an error when i try to create functoid and then link them to the destination. The error in the functoid is 'type mismatch for lbound'. I am using the ubound and lbound functions in an array to get the size. can anybody guess what the problem could be. Can we lbound and ubound at all...
  4. bhas

    arrays in vbscript

    Hi, Here is my vbscript. What i want it to do is to go thru the array and look for matching numbers. The array will have numbers like 25429-8,23456-8 etc.. Please responfd with answers Function check_val( byref arrArray ) ' Dim arrArray() Dim row, j Dim StartingKeyValue...
  5. bhas

    How to access the Crystal Enterprise Engine from ASP

    Hi friends I am facing a problem, deployment in production. I am useing CE Server. How to access the server from the .asp page. Present i hot coded server name in my global.asa file as application variable, and i am useing in .asp page. It is working very fine in development site. Now...
  6. bhas

    Database connectivity problems

    We are using Crystal Report 8.5.0.217. The reports were initially created with a username, that had READ,WRITE & EXECUTE permissions.These reports were created from our &quot;DEVELOPMENT&quot; datbase, based on orcale stored procedures. However when we try to set the location of these reports...

Part and Inventory Search

Back
Top