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

    Need to send drop down box value/text to another page

    I am working on java script, but it goes very slow (I don't know java script at all)
  2. veronic

    Need to send drop down box value/text to another page

    But I do not have a button and I don't need it. That's why I cannot use response.redirect. Unless I can somehow use it not clicking on special button..??
  3. veronic

    Need to send drop down box value/text to another page

    I do not use session variable. Our DBA's do not like it for some reason. Can someone post a sample how to use LinkButton? Plus, I had a suggestion to use ItemDataBound. But I keep getting a lot of errors. Again, any samples???? Thanks a lot
  4. veronic

    Need to send drop down box value/text to another page

    thank you very much Unfortunately I don't know java at all but i'll try
  5. veronic

    decode, grouping in sql question

    I have the following SQL: select decode(grouping(r.status_desc)+grouping(r.status_code)+grouping(r.AUDIT_DEPT_ID),0, r.status_CODE, 'Total') status_code, decode(grouping(r.status_code)+grouping(r.STATUS_DESC)+grouping(r.AUDIT_DEPT_ID),0, r.AUDIT_DEPT_ID, NULL) AUDIT_DEPT_ID...
  6. veronic

    Need to send drop down box value/text to another page

    I have a grid with populated summary data which depends on drop down selection by departments. One column in this grid is hyperlink which send three different parameters to detail screen. I am using URL on the HTML side: NavigateUrl='<%# DataBinder.Eval(Container, "DataItem.STATUS_DESC"...
  7. veronic

    Passing drop down text/value to another page.

    I have a grid with populated summary data which depends on drop down selection by departments. One column in this grid is hyperlink which send three different parameters to detail screen. I am using URL on the HTML side: NavigateUrl='<%# DataBinder.Eval(Container, "DataItem.STATUS_DESC"...
  8. veronic

    grouping, rollup SQL question

    I have the following SQL: select decode(grouping(r.status_desc)+grouping(r.status_code)+grouping(r.AUDIT_DEPT_ID),0, r.status_CODE, 'Total') status_code, decode(grouping(r.status_code)+grouping(r.STATUS_DESC)+grouping(r.AUDIT_DEPT_ID),0, r.AUDIT_DEPT_ID, NULL) AUDIT_DEPT_ID...
  9. veronic

    Problem with double quotes

    I am using Crystal 9.0, Oracle DB. I need printable version of the report and I send it to .pdf. I have a field "Comments" which passing ok but.. If in this comments user write anything using double qouts it displays like &quot User Comment &quot instead of "User Comment". How can I fix it??
  10. veronic

    Double quotations being improperly displayed

    I am using Crystal 9.0, oracle db and looks like I have all available service packs installed
  11. veronic

    Double quotations being improperly displayed

    I send report to .pdf and instead of showing some comments using "Some comments" I get &quot;Some comments &quot; how can I fix it?? thank you
  12. veronic

    Drill Down in CrossTab???

    I have a crosstab which show number of projects and amount for different departments by Project Status. Looks like: Dep1 Dep2 dep3 Open $5000 $ 20 $0.00 7 2 0 On Hold $ 800 $0 $500 8 0 4..etc...
  13. veronic

    How to pass SQL where clause to report

    Thank you very much but could you please give me an example??? Thanks again
  14. veronic

    How to pass SQL where clause to report

    But it only apply to one table and one field. I have many different parameters. For example: User select information for Bob Smith, only close cases, o in Dev, high priority...etc. It is all done in VB for the HTML report.In this case Sql where clause looks like: where name = "Bob Smeth" and...
  15. veronic

    Send SQL from web page to Crystal 9.0

    I have a report done on VB where user select number of different options of information he wants to see and he gets a report on HTML. But if he wants to print it he has on that page link to Printer friendly version(which is in Crystal). I need to be able to send this to Crystal as where clause...
  16. veronic

    How to pass SQL where clause to report

    I did not explain my question correctly. I have a report done on VB where user select number of different options of information he wants to see and on that page link to Printer friendly version(which is in Crystal). I need to be able to send this to Crystal as where clause in SQL in run time.
  17. veronic

    How to pass SQL where clause to report

    I have SQL statement in Command which looks like Select a,b,c,d from atable where a = "parameter1" and b = "parameter2" and c = "parameter3" Is it possible to pass it to Crystal as one 'where clause' instead of passing three different parameters??
  18. veronic

    Unable to connect: incorrect log on parameters.

    Did you find a solution?? I have the same problem
  19. veronic

    Unable to connect: incorrect log on parameters..????

    I use Crystal 9.0 and Oracle DB. Report works OK in Crystal but when I add to application I get a message: Unable to connect: incorrect log on parameters. I have a number of reports work perfectly with the same code and only this one give a problem. My code: Dim myParamValues As New...
  20. veronic

    Parameters from VB to Crystal 9.0

    I use Crystal 9.0, Oracle DB. When I need to send parameters from web page to Crystal I am using following code: Session("Val1") = dtBeginDate Session("Val2") = dtEndDate Response.Redirect("fp_monthly_pdf.aspx") I am looking for other possibilities to send parameters (not...

Part and Inventory Search

Back
Top