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: Izzac
  • Order by date
  1. Izzac

    MimeMessage and accentuated character for attachment

    I forgot. The header of mail is : Message-ID: <123123.JavaMail.jboucher@jboucher> Date: Thu, 5 Feb 2004 15:55:45 -0500 (EST) From: &quot;14181238899@123.com&quot; <faxback@123123.com> Reply-To: faxback@123123.com To: jboucher@123123.com Subject: =?iso-8859-1?Q?Carrier,_St=E9phane_hmw?=...
  2. Izzac

    MimeMessage and accentuated character for attachment

    Hi I send mail with javax.mail.internet.MimeMessage. My attachment is a PDF. I receive my mail and my PDF is perfect, but when the name of my PDF file contains accentuated characters(é è à ç...) these ones disappear. ex : Stéphane.pdf ---> Stphane.pdf I don't know well the rules of encoding...
  3. Izzac

    Hi, dynamically load of javascript

    ok, forget it! the problem its me.....this work very fine!
  4. Izzac

    Hi, dynamically load of javascript

    Hi, dynamically load of javascript file : function createScriptTag() { var head = document.getElementsByTagName('head').item(0) scriptTag = document.createElement('script'); scriptTag.setAttribute(&quot;language&quot;,&quot;javascript&quot;); head.appendChild(scriptTag)...
  5. Izzac

    execute Javascript after having copied it from IFrame

    Hi, I have Javascript in a DIV tag in a IFrame. I must copy them to the main frame. This part work fine with the innerHTML property on the DIV. But, now I SHOULD execute the javascript copied right after the copy ... (The copied javascript contains some functions but also some calls of...
  6. Izzac

    Row in table

    by the URL : pageURL/fileName.html?param1=value&param2=value in the page, the parameters will be accessible with : document.location.search the search is equals to : &quot;param1=value&param2=value&quot; I think..! ..but im not sure that this solution work locally. you must pass through a web...
  7. Izzac

    Dynamilcy Populate a &lt;select&gt;

    to learn more on DHTML in IE : http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/dhtml_reference_entry.asp?frame=true :-)
  8. Izzac

    cancel scrolling from arrows

    I have the answer : functionX() { if(window.event.keyCode == 38 || window.event.keyCode == 40) return false; } document.onkeydown = functionX; zac
  9. Izzac

    Dynamilcy Populate a &lt;select&gt;

    ...or : var option = document.getElementById(&quot;option1name&quot;); option.value = X; option.innerText = Y; <select name=&quot;selectname&quot;> <option name=&quot;option1name&quot;></option> ... </select>
  10. Izzac

    Dynamilcy Populate a &lt;select&gt;

    like that : var select = document.getElementById(&quot;selectname&quot;); var newOption= document.createElement(&quot;OPTION&quot;); select.options.add(newOption); newOption.value=&quot;YOUR VALUE&quot;; newOption.innerText=&quot;YOUR TEXT&quot;; ... <select...
  11. Izzac

    cancel scrolling from arrows

    Is it possible to cancel the scrolling when the up/down arrows is pressed ? By default, IE scroll the page. I tried : <body onscroll=&quot;return false;&quot; > and functionX() { ... window.event.cancelBubble = true; } document.onkeydown = functionX; and even : (but the...
  12. Izzac

    listbox with horizontal scrollbar

    Just a precision, normally I specify a width in the style (width:200) but when an option with too large text is added, the text is not completely visible. If I don't specify the width, it will be adjusted automatically with the larger text option added, but I must have a fixed width! thanks
  13. Izzac

    listbox with horizontal scrollbar

    hi all, I have a lisbox like that <select size=3 name=&quot;x&quot; style=&quot;height:300&quot; MULTIPLE> <option value=&quot;y&quot;>bla bla</option> </select> is it possible to have a horizontal scrollbar on my listbox ? I know that is possible with VBScript, but just with javascript or...
  14. Izzac

    horizontal scrollbar in listbox

    hi all, I have a lisbox like that <select size=3 name=&quot;x&quot; style=&quot;height:300&quot; MULTIPLE> <option value=&quot;y&quot;>bla bla</option> </select> is it possible to have a horizontal scrollbar on my listbox ? I know that is possible with VBScript, but just with javascript or...
  15. Izzac

    insert image in OPTION

    Hi, I search a way to insert an image in an OPTION included (obviously) in a SELECT. I think that is not possible...but maybe....! <STYLE> .option1 {font-family: Verdana, Arial; font-size: 11px; background-color: #CDDDDD;} .option2 {font-family: Verdana, Arial; font-size: 11px...
  16. Izzac

    load bar in the status bar don't stop!

    thanks Hattusas But the last lines of each of my 3 servelts (out.print(&quot;<!-- comment -->&quot;))are in the source of frame (and frameset) that i can see with IE. unfortunately (?!), no endless loop!
  17. Izzac

    load bar in the status bar don't stop!

    Hi, I use servlets with IE5.5, Apache 1.3.12, Jserv 1.1.2 I've a problem with the load bar (that give the state of page download) in the status bar. I call a servelt that define 2 frames, all work perfectly, the content of the 2 frames (that are also a servelts) is downloaded completely but...
  18. Izzac

    load bar in the status bar don't stop!

    Hi, I've a problem with the load bar (that give the state of page download) in the status bar. I call a page that define 2 frames, all work perfectly, the content of the 2 frames is downloaded completely but, sometimes, the load bar continues like when the page is not responding. This can...
  19. Izzac

    which page will be loaded ?

    thanks luciddream ! I wrote the code and this work fine in IE ! :) There remains to me the case of Netscape! :/ zac
  20. Izzac

    which page will be loaded ?

    Hi, How can I detect when a browser leaves my web site ? With the onUnLoad event, i can know when a new page is loaded, but is it possible to know which page will be loaded ? zac

Part and Inventory Search

Back
Top