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

    Two Reports as one...

    Thanks All. I will look into your suggestions. Tim
  2. Tim2525

    Two Reports as one...

    Hi All, I'm not sure if this can be done or not. What I want to do is... I have two reports (rptPhysicianDir and rptPhysicianSpecialty). I want rptPhysicianDir to run first and once it's completed have rptPhysicianSpcialty to run picking up the next page number. Can this be done and how...
  3. Tim2525

    Apostrophes with INSERT statements

    Thanks RoyVidar. Will give it a try.
  4. Tim2525

    Apostrophes with INSERT statements

    Hi All, I'm doing an INSERT of data from a temp table to another table. My issue is one of my fields has data with an apostrophe in it and it's messing up my insert. Is there a way of working around this where the data is inserted into the field including the apostrophe. Below is my insert...
  5. Tim2525

    ADO recordset to variable

    Thanks for the reply stix4t2 I'm wanting to learn the ADO part so I tried your suggestion and I'm getting "0" zero return. I did notice my sql statement was completely off. I modified it and still getting zero returned. Any ideas? strSQL = "SELECT rate FROM tblRate;" Set objRec =...
  6. Tim2525

    ADO recordset to variable

    Hi All, Trying to load a result from a query to a variable - currRate. When I get to code line "currRate = objRec.GetString(adClipString, ColumnDelimeter:=" ", RowDelimeter:=vbCrLf)", I get the following error. Run-time error '3021': Either BOF or EOF is True, or the current record has been...
  7. Tim2525

    Loop Select for Selected Values

    Thanks clFlaVA! I had just figured it out. Appreciate the quick response. T
  8. Tim2525

    Loop Select for Selected Values

    Hi All, Here is my problem. I'm trying to get the value(s) from a select box-multiple which are selected and store them to a variable. How would I do this? In my loop I'm seeing all items in the select box. I tried using venOption[venIndex].text but it only picked up the first value. Here...
  9. Tim2525

    Update Statement

    Thanks much rbod. That did it. T
  10. Tim2525

    Update Statement

    Hi All, This should be a very easy one. I'm having trouble getting my update statement to run. I come from an Oracle background so this stuff is still greek to me. UPDATE catentry SET catentry.field4 = 'KM' From manurel, catentry, catentdesc WHERE manurel.manunbr IN (2495,1135) AND...
  11. Tim2525

    setTimeout() Issue

    Thanks All for the quick replies. I use the setInterval() and the code executes fine. How do I stop the interval. I used clearInterval() but I'm pretty sure I'm using it incorrectly. Any help appreciated. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <META...
  12. Tim2525

    setTimeout() Issue

    I got the code to loop. I'm still having an issue with setTimeout() function. I want a 5 sec delay but it calls the function without a delay. Still having an issue with my document.write... TIA, T
  13. Tim2525

    setTimeout() Issue

    Hi All, Trying to get my code to re-execute a function every 5 secs - setTimeout(urlTest = getThuleInfo(), 5000); Everything works fine for the first loop. After that it just sits there. If anyone has any suggestions, I would appreciate it. Also, I'm try to get the document.write('NO not...
  14. Tim2525

    Getting URL from a frame

    Hi All, Trying to figure out how to get the url contents from another frame. The frames url changes evertime the user makes a selection from a series of drop down menus. This is what I have so far. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <SCRIPT...
  15. Tim2525

    Passing Variable via HTTP Address Line

    I answered it. Thanks all.
  16. Tim2525

    Passing Variable via HTTP Address Line

    Dumb question sedj. Where would I declare variable someName?
  17. Tim2525

    Passing Variable via HTTP Address Line

    Hi All, I have a jsp page calling another jsp page. I want to pass information to the called page via the http address line. Example: document.forms[frmName].action = "/tools/test/new.jsp?new,x"; How would I retrieve "new" and "x" from the http line in my new jsp. TIA, T
  18. Tim2525

    Standard out/Error out

    Thanks much rbod for the information.
  19. Tim2525

    Standard out/Error out

    Sorry all - I'm use ksh.
  20. Tim2525

    Standard out/Error out

    Hi All, My apologies for the VERY simple qs. Want to send echo messages to a log file. Is my code right? Can this be done with printf function? Currently what is happening is the message appears on my screen with the path following it and backup.log file not created. Message that appears...

Part and Inventory Search

Back
Top