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 strongm 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: gooseriver
  • Content: Threads
  • Order by date
  1. gooseriver

    UPDATE statement - with two tables

    I am trying to convert this to an update statement in which I want to update tb2.effdt = tb1.startdt where tb2.type = 'zenster' and tb2.effdt< tb1.startdt select distinct * from Table1 tb1, Table2 tb2 where tb1.id=tb2.id and tb2.type='zenster' and tb2.effdt< tb1.startdt; I have tried...
  2. gooseriver

    How to flag columns that have two @@ in the cell

    How can I flag (true or false) if there are two @ symbols in a cell
  3. gooseriver

    SQL Query - Between two dates

    I have two date parameters DT1 and DT2. If I enter two dates - return data from within those two dates. If no values are entered in the parameters, return everything. Not sure how to incorporate both.
  4. gooseriver

    Download a file from web server

    I have a pdf file on my web server. I want to be able to have the user download the pdf file from an asp page - a link. For security purposes would it be possible to hide the actual path of the file on the web server, etc... C:\temp\test.pdf.. On the asp page have Download File Here.. When you...
  5. gooseriver

    insert blank page on odd pages

    I am using Crystal Reports 10 Report Structure: GrpHeader1a - d (ClientLastName) GrpHeader2 - Registration Number In GrpFooter1d - I have New Page After This put a new client on each page. However if the client starts on a even page number I want to insert a blank page so that the client...
  6. gooseriver

    crystal_webcompserver - error message: not authorized

    I keep getting this err on our server logs. Can anyone help me out here: Rule Details:- Log File Type - application Event Type - Error Event Id- 35301 Source - ANY Category - ANY User - ANY Check for the String in Description - ANY The Following Events Matched with the Rule Source : Event...
  7. gooseriver

    Stuck in a loop

    I am checking the status of a scheduled report. I need to use a loop in which I check the status of the scheduled job when the "status" is = 1 then exit the loop... I tried this and it did not work it stays in the loop.. Dim infoObjects Set infoObjects = IStore.Query("Select Top 1* From...
  8. gooseriver

    Attach object instance from email message

    Ce 10 I am using the ASP COM SDK to schedule reports using the smtpoptions. The requirements are to send the report VIA email - this is successful. The other requirement is to send only the link and not the report. I am able to send the link but the attachment of the report is included in the...
  9. gooseriver

    Storing the values of a dictionary object into a session variable

    I have a dictionary object and would like to store the following items into a session variable : dicParams.Add "FName", objElm.nodeTypedValue dicParams.Add "LName", objElm.nodeTypedValue dicParams.Add "@City", objElm.nodeTypedValue How can I do this?
  10. gooseriver

    %SI_VIEWER_URL% - bypass Viewer Log On screen

    I am scheduling a report VIA email using ASP and CE10. In the body of my email I put this %SI_VIEWER_URL% which will send a hyperlink to the report in the email. This all works great but when I click on the link in the email I get prompted with the Viewer Log On screen. Is there any way to by...
  11. gooseriver

    address error. CrystalEnterprise.Smtp: SMTP_E_MAILBOX_UNAVAILABLE_2(55

    I am successful in scheduling a report directly using the CE 10 CMC. However when I try using my asp code provided in the SDK, I keep getting: address error. CrystalEnterprise.Smtp: SMTP_E_MAILBOX_UNAVAILABLE_2(550) Any ideas?
  12. gooseriver

    Replace &quot;,&quot; with a carriage return in a fucntion dec

    In Access 2000 in a module I have the following: Function Tes(pTd1 As String, _ Optional pTd2 As String = ",") _ As String I want to replace the "," with a carriage return. I run a query that calls this fucntion... I know this is simple but just cannot figure it out...
  13. gooseriver

    Copy the same column into 1 record

    Access 2000 Table1 Columns: -ContactName (text) -Notes (text) Example: John Smith Test1 John Smith Test2 John Smith Test3 Dave Brown Test1 Using a query how can I group by ContactName and conactenate the Notes into 1 column Example: (one record) John Smith Test1 (carriage return) Test2...
  14. gooseriver

    Conditional Formatting

    In Crystal can we use conditional formatting. I have a string and would like to make specific phrases bold in a string ie: If {Table1.Memo} in ("<" to ">") then formula = crBold
  15. gooseriver

    Instr

    On my report I have a string value with a (test). I need to take the value between the "(" and ")" and store it into a stringvar.. How can I do this so that the value in stringvar var1 is test?
  16. gooseriver

    New parameters not showing in report

    CR10 SQL 2000 Stored Procedure I added two new parameters and I reference the parameters in a supress condition. When I do a refresh the two new parameters are not in the list... Why???
  17. gooseriver

    escape/unescape

    Are there any known issues using a string containing a comma? We are using ASP to pass parameters from a free form text box to a Crystal Report. We use escape which changes the comma to a %2c and then unescape will decode as comma but anything after the comma does not appear.
  18. gooseriver

    Maintenance

    We are using CE10 on a Windows 2000 server. We use a custom app that uses the RAS and we schedule job using the job server. What maintenance should we do to the server to keep the app up to par. Someone mentioned to me about the temp files that are built up...
  19. gooseriver

    filesystemobject - subfolders

    Using FileSystemObject how can I display the names of the files in the subfolders within that folder and include the subfolder in which the file is located. IE: Folder structure: Parent Folder("c:\temp") Subfolder1 Subfolder2 test.doc code.doc test1.doc code1.doc test2.doc code2.doc output...
  20. gooseriver

    SQL Server 2000 - Move one record from one db to another db

    I want to take record where empname = 23 from db1 and insert it into db2. Both db have the same structure... How can I do this through a script to run through query analyzer Database: db1 Table: table1 column: empname to Database: db2 Table: table1 column: empname

Part and Inventory Search

Back
Top