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

  • Users: seema3
  • Order by date
  1. seema3

    Need help with a Self Join

    Hi wvmikep, I need to do exactly what you have stated initially in the post abt creating a yahoo sort of trail. Would like to know how u solved this problem. I read the link provided by ColinM and I tried executing the procedure speified but I kept getting an error abt Cursor does not exist...
  2. seema3

    Crystal help needed in asp

    You can use parameters to passon the value to the sub-report. IF the parameters to be used for the main report and sub are similar then link them in crystal reports that way whatever value u passin the main report will be taken by the sub report as well.
  3. seema3

    Auto-pop up window with ASP

    Use this: Response.Write(&quot;<SCRIPT>&quot; & &quot;window.open('error.asp?msg=&quot; & msg & &quot;','ErrorPage','WIDTH=635,HEIGHT=400,scrollbars=no,resizable=no,status=yes')&quot; & &quot;</SCRIPT>&quot;)
  4. seema3

    Help creating local package

    To do this, u can create a DTS package which exports your data from the dbf file to the SQL Server.Once you have created a DS package save it. Now you can write a VB application which will execute your DTS package. The VB application can be scheduled to your time. I have done this, if you are...
  5. seema3

    What's the best way to count?

    Select count(tasks) from table where status == 'Complete' for user. Select count(tasks) from table where status == 'Tentative' for user. Was this what you reqd.
  6. seema3

    Calling Crystal Reports from ASP

    To call a report Creat an application object and then a report object and the call the report. All this is given in the docmentation. If you have parametere in your report, pass them from the page. If you still don't understand I can post the code for you.
  7. seema3

    Subreports do not run after Passing Parameters

    Your subreport that is added in your main report.Right click on it and click change sub-report links and see if the links are properly set ie values youu require are being passed properly.
  8. seema3

    How to pass parameters to stored procedure from ASP

    I guess what you want to do is pass Parameters from your ASP page to your Crystal report which is using a stored procedure. 1)First, in your report create parameters for whatever fields you require. 2)Then in the report itself, if you want to make any selection based on these parameters, on the...
  9. seema3

    Null Testing

    how do i change the join between any 2 tables in crystal reports.
  10. seema3

    Null Testing

    join of a table to left outer join in Crystal reports.
  11. seema3

    Web Reports Please HELP

    If your database is SQL server then you need to give access to your script to access the database, this can be done by: Set DatabaseTablesCollection = Session(&quot;oRpt&quot;).Database.Tables For Each Table in DatabaseTablesCollection Table.SetLogonInfo &quot;dsnName&quot...
  12. seema3

    ASP &amp; Crystal... need serious help, I have no idea

    Here is a break down of the Simple Preview Report example. This example contains all the basic elements that are required to bring up a report over the web through ASP. reportname = &quot;SimplePreviewReport.rpt&quot; In our samples you will see the report name set as the variable...

Part and Inventory Search

Back
Top