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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DubnerM

  1. DubnerM

    Message box on ipaq/win ce.

    Have you checked image replacing? (sorry for silly question: what is iPaq) Michael Dubner Brainbench MVP/HTML+JavaScript http://www.brainbench.com
  2. DubnerM

    Should I use frames or not?

    H-mm can you formulate why you are converting to noframes as soon as you forced to work ever dhtml menus? Michael Dubner Brainbench MVP/HTML+JavaScript http://www.brainbench.com
  3. DubnerM

    className equivalent in NS6?

    Exactly the same - className, but you should know that there is no such this as document.all in NS6 - you must browse by DOM to element - for example using document.getElementById. Michael Dubner Brainbench MVP/HTML+JavaScript http://www.brainbench.com
  4. DubnerM

    Opening variable frameset in PopUp window.

    If your script opened a window by using something like window.open(...) than you need to save to some variable window object that this method returns: popupwin = window.open(...) and than you can use something like popupwin.topframe.... popupwin.frames[0].... popupwin.frames['topframe']...
  5. DubnerM

    opening a document

    IE uses same registry information that Windows Explorer uses. There is three ways to associate file with software: 1. Right way: (Re-)Install software that you think that must display file of type you are interested in. 2. Simple: assoc DocumentType=c:\Full\Path\To\Program.exe...
  6. DubnerM

    auto-email data input

    Of cause you can - you should create form with hidden fields and fill them from javascript. Then you have following options: 1. pray that your client have correctly configured mail in his browser and use action="mailto:..." 2. write (or stole somewhere) simple program that will send...
  7. DubnerM

    pb with <input type=file>

    There is following strange symptoms, for the form with <input type=file...>: In Netscape: onchange: only when you change text part by hands onclick: _after_ you have selected (or cancelled selection) file in browse dialog In IE5: onchange: after both types of change onclick: _before_ clicking...
  8. DubnerM

    Curiosity: What does &quot;Communicator-&gt;Server tools&quot; menu about?

    I'm really curios: What does &quot;Communicator->Server tools&quot; menu about? Michael Dubner Brainbench MVP/HTML+JavaScript http://www.brainbench.com
  9. DubnerM

    Can you change the pop up window size with HTML?

    You must know that Java and JavaScript is two different languages and similiarity if their names is just bad joke. Second onening of new window can be done with plain HTML (but not recommended - if user want to open you link in new window (s)he can do this, if not you MUST NOT force user to do...
  10. DubnerM

    applet param as js variable

    Both pieces of code do have syntax errors: correction for first is document.write(&quot;<PARAM NAME=\&quot;links3\&quot; VALUE=\&quot;&quot; + portal + &quot;\&quot;>&quot;); note doubled double-quotes around + portal + . Reason is that \&quot; denotes quotes as part of string that we want...
  11. DubnerM

    Determine whether htm is loaded ?

    You just need to set onload event handler. For example: parent.frames['tempFrm'].onload=myfunction; parent.frames['tempFrm'].location.href='my.htm'; Michael Dubner Brainbench MVP/HTML+JavaScript http://www.brainbench.com
  12. DubnerM

    Changing Color With CSS

    You can use scrollbar-face-color, scrollbar-arrow-color, scrollbar-base-color, scrollbar-shadow-color, scrollbar-dark-shadow-color, scrollbar-highlight-color and scrollbar-3d-light-color properties. But they only supported in IE5.5B1. You can get more information at...
  13. DubnerM

    Changing Color With CSS

    You can use scrollbar-face-color, scrollbar-arrow-color, scrollbar-base-color, scrollbar-shadow-color, scrollbar-dark-shadow-color, scrollbar-highlight-color and scrollbar-3d-light-color properties. But they only supported in IE5.5B1. You can get more information at...
  14. DubnerM

    How do I prevent robots scanning my site?

    The quick way to prevent robots visiting your site is put these two lines into the /robots.txt file on your server: User-agent: * Disallow: / But you should be aware that some robots will ignore this. More information can be found in...
  15. DubnerM

    Prevent a Web site from Web catchers

    You can protect your site from webcathers that reads robots.txt. But most of robots can be forced to ingore this. You can also protect you site by sending some error to some of &quot;User-agent&quot;s but most of cathers have option to change what they send as &quot;user-agent&quot; string. In...

Part and Inventory Search

Back
Top