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

  • Users: SekharEevani
  • Order by date
  1. SekharEevani

    Blank DB Logon

    You may have to stop the page/job server services to change the logon credentials from LocalSystem.
  2. SekharEevani

    Filling parameter drop down with data from sp...

    If I understood the question correctly, your parameter field requires values to be filled dynamically from a procedure. In this case, you can do it from the Reports server. Create a separate report with sp and with the only field to display on this report is the result to be filled in your...
  3. SekharEevani

    Round to nearest .5

    Another way.. k = IIf(Text1.Text - Int(Text1.Text) > 0.5, _ Int(Text1.Text) + 0.5, Int(Text1.Text)) Nearestvalue = IIf(Text1.Text - k > 0.25, k + 0.5, k) It has to be improvised for values less than zero. -Sekhar
  4. SekharEevani

    another parameter problem

    If it is ok to pass the parameter without converting the Date format, you may try this! Rem CrystalReport1.ParameterFields(0) = "CutoffDateS;Date(" & Calendar.Year & "," & _ Calendar.Month & "," & _...
  5. SekharEevani

    Passing Parameter from Visual Basic to Crystal Report

    In the following, the Output report will be displayed using "Crystal Report Control". Insert the "Crystal Report Control" component in the VB Project and add it in the main form. #1. Define the report path as in step#1, #2. Pass the values to Crystal Report Parameters as...

Part and Inventory Search

Back
Top