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 SkipVought 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. smasaitis

    Menu Bar in ASP.net

    Check out: http://www.devmansion.com/nav.aspx?id=smartlinkspro.menulink smasaitis
  2. smasaitis

    Active Reports on ASP.NET - licenses ?

    You are correct. The following quote is taken from the license agreement: "Distribution of the application(s) using ActiveReports is royalty-free, requiring no additional license fees." Check out http://www.datadynamics.com/Products/ARNET/ProductLicenseAgreement.aspx for more info. The only...
  3. smasaitis

    Extreme newbie question about passing variables

    Here is a good article to consider: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbtskpassingvaluesbetweenwebformspages.asp
  4. smasaitis

    ActiveReports

    I have been using Crystal Reports for the past 3 years. Crystal is a great product when developing your reports. It's awesome. You can do almost anything with Crystal. However, when you try to get these reports incorporated into your application, trouble always seems to arise. Using Visual...
  5. smasaitis

    Simplified way to call crystal report from ASP

    OK, here is the deal: I want to call a crystal report (version 8.5) from an ASP page. Sounds simple? No, it's not. I have searched Crystal's web site (www.crystaldecisions.com). They do not make it clear. I have searched all of the Tek-Tips forums/FAQs regarding Crystal and the web. I...
  6. smasaitis

    Simplified way to call crystal report from ASP

    OK, here is the deal: I want to call a crystal report (version 8.5) from an ASP page. Sounds simple? No, it's not. I have searched Crystal's web site (www.crystaldecisions.com). They do not make it clear. I have searched all of the Tek-Tips forums/FAQs regarding Crystal and the web. I...
  7. smasaitis

    Format with Multiple Columns

    I am using CR 8.5. I want a report that will have two columns of data. The Format with Multiple Columns option is not working for me. In the Layout tab, I set the following options: Width of the Detail Size = 8in Gap Between Details: Horizontal = .5in Vetical = .5in Printing...
  8. smasaitis

    Lines not displaying in front of watermark

    I am using CR 8.5. I put a watermark on my report by inserting the image into the page header, then underlaying the section. The text displays with the image in the background which is great except that the lines in the details section are not displaying. Once the lines reach the image, the...
  9. smasaitis

    Create multiple detail lines with a parameter and no table

    I am using CR v8.0. I want a to create a report that will allow a variable number of detail lines to be printed based on the number that was entered for the parameter. Example: If 5 is entered for the parameter, then 5 detail lines will be displayed. The detail lines will not contain any...
  10. smasaitis

    The Case Statement

    I think the following code would be the best way to trap for your different errors: if @Err = 0 begin -- begin/end used if there is more than -- one statement to perform after the if insert into tErrorLog_BU (ErrNumber, ErrDescription) values (@Err, 'tErrorLog Truncate...
  11. smasaitis

    Change name of table when exporting to Excel

    I am using MS SQL Server 7.0 and Excel 2000. I am trying to export a table from SQL to Excel using a DTS package. I can export the table to Excel, but the sheet name becomes whatever the table name is. I need the sheet name to be a date found in the SQL table. I get the max date then set...
  12. smasaitis

    Delete trigger for foreign keys??????

    pirate007, I had the same problem until I found help on Microsoft's web site (I don't have the link). Here is the bottom line: you cannot have constraints on tables and try to use a delete trigger. Triggers are executed first before the constraint is checked. This is why you get the error...
  13. smasaitis

    stack overflow problem

    Another cause for this error could be an infinite loop (i.e. a loop that never ends). If you are looping through a recordset an forget to put rs.movenext inside the loop, then a "stack overflow" error could result.
  14. smasaitis

    Version 7 Chart does not view properly with Version 8 Crystal Viewer

    I am using VB 6 to call both version 7 and version 8 crystal reports which are populated be MS SQL 7 stored procedures. If I install the app on a clean computer that does not have any crystal viewers installed and view the version 7 report, everything is find. However, if I view a version 8...
  15. smasaitis

    Suppress boxes

    Using version 8, I want to create an alternating background color in my details section. I though I could put 2 boxes in the details section - one box would have color while the other would be white. On every other row I would suppress the white box and not suppress the colored box. However...

Part and Inventory Search

Back
Top