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

    java.net.UnknownServiceException: protocol doesn't support output

    Hi, I recieve the following error : "java.net.UnknownServiceException: protocol doesn't support output" when I run the peace of code beneath. Anyone? authenticate("user", "pw"); URL destURL = new URL("file","max1","\\max1\public\test.txt"); buffedOut = new...
  2. DeSn

    valid URL

    How can I test if an URL is valid? F.e. new URL("file:\\test\t.txt") give me an URL object while the path "test\t.txt" isn't a valid path. How can i test this?
  3. DeSn

    new File(path).list() problem

    Anyone an idea why this doens't work if path is a path="../MilesRoot/" path="\\\\max1\\public\\" new File(path).list() The list is null. It works if path is f.e. "c:\\test\\
  4. DeSn

    creating URL

    Hi, How can I create an URL in java with represents a networkpath? URL u = new URL("\\max1\test"); The above doesn't work :(
  5. DeSn

    opening Excel file in browser problem

    Hello, When I open a MS Excel file with the following javascript command: t = window.open("rapportering.xls","rapportgenerator","toolbar,status,menubar,resizable,location"); I receive strange signs like this (it is like it doesn't know it is an excel file?): ÐÏࡱá>þÿ "...
  6. DeSn

    Opening Excel sheet

    Hi, I try to open and Excel sheet in IE (or netscape, the both don't work) and I receive strange signs. When I drap the sheet in IE, it works fine. t = window.open("rapportering.xls","rapportgenerator","toolbar,status,menubar,resizable,location"); Any ideas?
  7. DeSn

    onfocus() and onKeyUp

    Hi, The following code works fine in IE but doesn't work in Netscape (4.79). I don't know if it is the onfocus or the onKeyUp that doesn't work. <input name="vanA" class="textbox" type="text" size="1" style="width=20px"...
  8. DeSn

    Read receipt

    Hi, I want to put a read receipt on my out-going mail. I tried the following code: Message msg = new MimeMessage(session); msg.addHeader("Return-Receipt-To", "test@hotmail.com"); But this doesn't do a thing. Can anyone help me?
  9. DeSn

    url in email

    Can you put an a href in an email in the way that you can put some javascript in the onclick event?
  10. DeSn

    error when placing a project in cvs

    I receive the message "The directory... is curently in use" when I want to place my project in CVS. Does anyone know a solution?
  11. DeSn

    Anything changed on the page

    Is there a way to know if anything has changed on the webpage? I mean if a field has received a value or a combobox has changed, anything at all? This is my situation: I have a page with a lot of fields and a save-button. What I want to do: if nothing has changed on the page and the user...
  12. DeSn

    Anything changed on the page

    Is there a way to know if anything has changed on the webpage? I mean if a field has received a value or a combobox has changed, anything at all? This is my situation: I have a page with a lot of fields and a save-button. What I want to do: if nothing has changed on the page and the user...
  13. DeSn

    window.opener

    Is there a way to know if a window is opened by antoher window or not? I know you can access that other window by window.opener, but i would like to check on this. Thanks
  14. DeSn

    div in IE and NN

    Hi, This is my html code: <div id=&quot;binnenland<%=i%>&quot; style=&quot;position:absolute; top:<%=(i+1)*104+(i*61)%>px; left:150px;&quot;> <table border=&quot;0&quot;> <tr> <td class=&quot;label&quot;><input...
  15. DeSn

    line in html

    Hi, i've created a gray line like this: <tr> <td colspan=&quot;4&quot; bgcolor=&quot;gray&quot; height=&quot;2&quot;></td> </tr> in IE this works fine, in NN (4.79) not. When I place &nbsp; in the td I get a thick line, which isn't ok. Can anyone help me?
  16. DeSn

    input-&gt; size difference in NN and IE

    Hi, Can anyone explain me why this field: <input type=&quot;text&quot; size=&quot;70&quot; name=&quot;aard&quot; value=&quot;<%=klacht.getAard()%>&quot; onfocus=&quot;blur();&quot;> is bigger in NN4.79 than in IE6
  17. DeSn

    back ground image

    Hi, This is the html code: <td class=&quot;subtable_left&quot;> </td> <td class=&quot;subtable&quot;> <table> <tr><td><a href=&quot;javascript:startRegistratie();&quot; class=&quot;link&quot;>. Registratie van een milieuklacht</a></td></tr> <tr><td...
  18. DeSn

    netscape &quot;document.fm.elements[&quot;straat&quot; + tel] has no properties&

    Hi, I have to following error in Netscape(4.76): document.fm.elements[&quot;straat&quot; + tel] has no properties. In IE everything works fine. This is the JS code: document.fm.elements[&quot;straat&quot;+tel].value=klagergegevens.straat; and this tr: <tr>...
  19. DeSn

    how to declare a function in a jsp-file

    Hi, I want to declare a function (no javascript function) in a jsp-file. Does any know how to do this?
  20. DeSn

    File conversion message

    Hi, I have a Word (office XP) document with mailmerge to a txt-file. Every time I open the document I receive the message &quot;File conversion Select the encoding that makes your document readable&quot; No matter what I choose and then save the document, I keep receiving the stupid message...

Part and Inventory Search

Back
Top