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. Daspoo

    "File Repository Server Output is Down" Error When Retrieving Instance

    Thanks for the reply! Yep, all the space expectations are there, and details regarding the Start time, max no. of minutes idle, etc. are all populated and displayed. So as far as I can tell, the server/service is running successfully and is enabled. (Thx for the info, tho - it never dawned on...
  2. Daspoo

    How to print to file using ReportDocument object model?

    Although we're using VS2002, the following code allows a given report (after setting parameters information, etc.) to be exported to either PDF, Excel or Word format and saved as a file on the web server's file system. The "objRpt" variable is instantiated as a ReportDocument object. Hope this...
  3. Daspoo

    can i add parameters for a schedule report

    sonny: RE: Question 1: Before you actually schedule a report, from the Central Management Console select the report, select the "Process" tab and the "Parameters" link under that tab, and enter the appropriate parameter information. Once that's done, anytime you schedule the report to run, it...
  4. Daspoo

    BOXI XI R2 SP2 under VMWare

    (Sorry if my answer is not applicable to your original question...) Currently I have Crystal Reports Server XI installed on a virtual machine running under VMWare Virtual Infrastructure 3.x, and have created and deployed a web application utilizing the SDK for the product on a different virtual...
  5. Daspoo

    "File Repository Server Output is Down" Error When Retrieving Instance

    Hi. I'm testing the use of Crystal Reports Server XIR2 with an in-house web application (on Server A), and have run into an error message regarding requests for successful report instances from the Crystal Management Server. The application has been written so that when a user requests a...
  6. Daspoo

    Filling a combo box with the results from a DataSet?

    dollarbillg: Try something like this: cmboBox.DataSource() = yourdataset For j = 0 To yourdataset.Tables(0).Rows.Count - 1 cmboBox.Items.Add (yourdataset.Tables(0).Rows(j).Item(0).ToString) Next That should do it.
  7. Daspoo

    Filling a combo box with the results from a DataSet?

    dollarbillg: Try something like this: cmboReportList.DataSource() = yourdataset For j = 0 To dataDude.Tables(0).Rows.Count - 1 cmboReportList.Items.Add (dataDude.Tables(0).Rows(j).Item(0).ToString) Next That should do it.

Part and Inventory Search

Back
Top