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 Chriss Miller 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: SeAL
  • Content: Threads
  • Order by date
  1. SeAL

    <p> and innerHTML

    Hi everybody, I get something amazing with IE6.0, here's my snippet : <html> <head> <script type="text/javascript"> window.onload = function() { document.getElementById('myP').innerHTML = '<pre>I hope this will work :)</pre>'; } </script> </head> <body> <p id="myP"></p> </body> </html>...
  2. SeAL

    Select List

    Hi peeps, Does someone know how to force a select list to drop-up ??
  3. SeAL

    Select list

    Hi peeps, Does someone know how to force a select list to drop-up ??
  4. SeAL

    Evaluate String

    Hi peeps, Does someone know how to get the real value of this String : Session(&quot;USERID&quot;) = 1 leStr = &quot;Session(&quot;&quot;USERID&quot;&quot;)&quot; Response.Write leStr ==> output: Session(&quot;USERID&quot;) and not 1 Thanxs
  5. SeAL

    Word and WinXP

    Hi peeps, I have a problem with Word and Windows XP. I cannot open any file because I get this message : &quot;file is locked for editing&quot;. I'm sure that I don't have any temp file (I deleted all temporary folders ;-) ), I've tried to change my normal.dot and it's still the same error...
  6. SeAL

    PL/SQL Variables Problem

    Hi peeps, Does someone know how to select a variable of a select into? here's my sample : select count(*) into Nb_Facture_Echues from BT_PNS_POS PNS where PNS.CODE_CLIENT = var_codeClient and (TO_DATE(sysdate, 'dd-mm-yy') - TO_DATE(PNS.DATE_ECHEANCE, 'dd-mm-yy') < 0); IF...
  7. SeAL

    Regular Expression

    Hi peeps, I would like to find a way to replace all line breaks of a textarea by &quot;<br>&quot; but this doesn't work with multiple lien breaks. I use this : myHtmlMessage = myTempMessage.replace(/[\f\n\r]/g,&quot;<br>&quot;); Please, need some help !
  8. SeAL

    SPOOL Problem

    Hi all, I want to create a text file using the SPOOL command. Here's my sample: SET NEWPAGE 0 SET SPACE 0 SET LINESIZE 80 SET PAGESIZE 0 SET TERMOUT OFF SET ECHO OFF SET FEEDBACK OFF SET HEADING OFF SET MARKUP HTML OFF SPOOL OFF SET COLSEP ',' SPOOL toto.txt select CODECLIENT, BRANCHE...
  9. SeAL

    request.getParameter

    Hi peeps, I'm new to all this stuff and I have a little question: Why request.getParameter(&quot;err&quot;) make me an Error 500 when this parameter does not exists? I believed it will return me &quot;null&quot; Does someone have an issue for this problem, I must check if this parameter...
  10. SeAL

    SELECT TOP...

    How can i select top(5) results like in Microsoft SQL : SELECT top(5) id_person from PERSON; Is there a way to do it?
  11. SeAL

    Layers and Forms

    Hi guys, I get a problem with layers and forms. Why my layer always go under my select box even if I use z-index? Help will be really appreciate.
  12. SeAL

    document.write ... anywhere ????

    Hi everybody !! Here's my problem : I need to be able to change some text in a page with a javascript function. My problem is that I need to write the new text to a special place with the &quot;document.write&quot; method. Does anyone know how to do it under NS & IE ??? My vote will goes to...
  13. SeAL

    Dates format

    Problem with dates ??? Go in faq and read this new FAQ on dates format ;-)
  14. SeAL

    download finish

    Does anyone know how to be sure that an user has completly download a file without using a components ??

Part and Inventory Search

Back
Top