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 gkittelson 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. mubaig75

    Crystal Report Exporting to Excel problem

    I have an ASP.NET website where I am showing off crystal reports to users by exporting them to pdf format. Following is the code: ---------------- 1 Private Sub ExportReport() 2 Dim oStream As System.IO.MemoryStream = 3 myReport.ExportToStream(...
  2. mubaig75

    Exporting crystal report to excel format

    Hi everybody, I have an ASP.NET website where clients can view their monthly billings by selecting different options. One of the option is the way they want to see the report i.e. whether they want to see it in PDF or EXCEL etc etc..... What I am trying to acheive is depending on their choice...
  3. mubaig75

    Error: buffer too small for string or...

    Hi Everybody: I am using visual studio 2002 and crystal reports.Net for reporting off an Access 2000 database with bunch of tables. The problem is when I start developing report and add database to the report and when i run the report to see if everything is fine then i get the following...
  4. mubaig75

    suppressing hyperlink when printing...

    Hello, I am using CR.NET and and I have a hyperlink field on the report. I don't want to get this hyperlink field printed when I send it to the printer. Is there any way to suppress this hyperlink field when sending to printer.? Thanx
  5. mubaig75

    Logon Failed

    Hi, I am developing reports in CR.NET and SQL Server 2000. When I use SQL Server username and password then I get Logon Failed exception (even when i use 'sa' user) and when i use integrated security=true then report works. Any help will be appreciated. Thanks.
  6. mubaig75

    Reporting off ADO.NET Dataset

    I have a .NET Dll function which returns ADO.Net Dataset. I like to design a report off this dataset it. I like to know the procedure of connecting it to Report Designer so that I can get the database fields. I would also appreciate any link to any tutorial or so. Thanks
  7. mubaig75

    Changing SQL Thru Code

    Is it possible to change Report's SQL from code? I mean using the object model. Thanx
  8. mubaig75

    Reporting off Stored Procedures

    Thanks. I tried field names instead of "*" but it didn't make any difference. Then I tried the Stored procedure (didn't use it as a command) and when I Verify Database I got the following error and didn't get any prompts for parameters: Details: ADO Error Code: 0x80040e14 Source: Microsoft...
  9. mubaig75

    Reporting off Stored Procedures

    Thanks Dave. * I tried Set NOCOUNT ON * I used a Command with the following SQL: EXEC afzi.ChangesReport_Web {?ReportStyle}, {?OneOrAll}, {?ID1}, {?LatestBy} And then I did Verify Database.... I got an error message saying; "No value given to one or more required parameters." I never...
  10. mubaig75

    Reporting off Stored Procedures

    Thanks a lot for instant reply. db is SQL Server 2000 and below is my Stored Procedure: ALTER PROCEDURE afzi.ChangesReport_Web ( @ReportStyle TINYINT, @OneOrAll BIT, @ID1 INT, @LatestBy SMALLDATETIME ) AS DECLARE @tbl1 TABLE ( ClientName VARCHAR(30), Div_Name VARCHAR(30), [Desc]...
  11. mubaig75

    Reporting off Stored Procedures

    I am using a stored procedure as a datasource for my report which has 4 parameters. So the problem is after adding this stored procedure I can't see any fields under Database Fields section. Its understandable that I haven't given any values to the parameters. I can see the parameters under the...

Part and Inventory Search

Back
Top