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

    download an .msi file from within an html page

    Hello Is it possible to download and execute an .msi file from within an html page like this? <OBJECT ID=&quot;RunClient&quot; Type=&quot;application/x-oleobject&quot; ClassID=&quot;CLSID:913B101A-EDD1-11D5-AD4A-0060B0FB4900&quot; CodeBase=&quot;/Root/TestFile.msi&quot; Height=100%...
  2. ronsig

    download and run an .msi in an &lt;object&gt;

    Hi, Is it possible to download and run an .msi file using an <object> tag? Thanks, Ron
  3. ronsig

    Windows DLL versions

    Hi, Is there someplace (probably in Microsoft's site) where I can see what DLL's and what versions of those DLL's are included in the different Microsoft OS? thanks, Ron
  4. ronsig

    Dynamically choose a css

    Hi! Is it possible to run a script which checks a field in a page as it loads, and then assign a certain css file to the page depending on that field's value? 10x Ron
  5. ronsig

    form action and address bar URL

    Hi! I have this page where the user enters using a URL which also sends parameters to the server :(&quot;http://xxx2/login.html?tag_OpCode=38&tag_Profile=cn&quot;) Inthe response I get a page which has an &quot;Action&quot; pointing to a different location (&quot;http://xxx2/fol1&quot;) on...
  6. ronsig

    Detect client date setting

    Hey, people! Is there a way to detect which format the date is on a client machine (US/European), so when I display a date entry box I'll know whether to expect and check against - mm/dd/yy Vs. dd/mm/yy (to clarufy: I need to display either :&quot;Enter mm/dd/yy&quot; or the other way)...
  7. ronsig

    Submitting an &lt;IFrame&gt;

    Hello everyone! Is there a way to have an iframe submit without the surrounding page getting replaced as well? Also, I'm having a problem submitting a form within the iframe: there's a form (&quot;form2&quot;) within the page loaded to the iframe(&quot;iframe_obg&quot;), but when I try to...
  8. ronsig

    displaying '&lt;' in a &lt;select&gt;

    Hi Y'all! is it possible to display the '<' and '>' characters in a <Select> list? I know this doesn't work: <option>&lt;</option> Is there another way? Thanks, Ron
  9. ronsig

    Post a form without a reply page

    IS there a way to send a post message to the server as a way of notification, without the server sending back a reply page? I know I can use a different (invisible) frame to do this, but I was wondering if I can do it without the hassle. Thanks, Ron
  10. ronsig

    accesskey activation

    Hi, I'm using the &quot;accesskey&quot; attribute for buttons/links, but the hot keys only set the focus on the button/link. How can I make them actually fire the button's callback function? e.g <button accesskey=&quot;t&quot; onclick=&quot;alert();&quot;><u>T</u>est </button> <a...
  11. ronsig

    Authentication ActiveX in an HTML page

    Does anyone know how I can use the Activex dialog which authenicates users when they try to access a specific Web page? By that I mean the dialog box which pops and asks the user to enter his/her user name and password (and possibly other information) thanks, Ron
  12. ronsig

    ActiveX authentication

    Does anyone know how I can use the Activex dialog which authenicates users when they try to access a specific page? By that I mean the dialog box which pops and asks the user to enter his/her user name and password (and possibly other information) thanks, Ron
  13. ronsig

    scroll event (Contd.)

    In continuation to my scrolling question from 3 threads below, I know it's possible to do this: document.captureEvents(Event.MOUSEUP); document.onmousedown=norightclick; Is it also possible to do something like this? document.captureEvents(Event.SCROLLPAGEDOWN); or...
  14. ronsig

    capturing the scrolling event

    Hi! Does anyone know how I can: 1. Determine if a captured scroll event is horizontal or vertical? (I'm using <body onscroll=&quot;...&quot;> to handle the scrolling) 2. Stop the scrolling from the event handler i.e. if the event handler &quot;decides&quot; the scroll should be aborted, it...
  15. ronsig

    IE reserved words

    Hello, I've come across several words which, if used in my scripts, sometimes cause IE to crash For instance, I've used &quot;Schema&quot; as the id of an input field and every now and then the browser crashed after loading the page. Once I changed the id to a different value, the problem...
  16. ronsig

    obscure symbols

    Hi! I've recently learnt that the character &#9654; renders as the Unicode &quot;black right-pointing triangle&quot;. I have been unable to find a single conversion table isting this html code. Does anyone know where I can find it? Thanks! Ron
  17. ronsig

    IE version sniffing

    Hi I'm trying to sniff out the exact browser version used, but all IE versions return &quot;4&quot;. How can I distinguish between 5, 5.5, 6 etc.? Thanks, Ron
  18. ronsig

    Version sniffing

    Hi I'm trying to sniff out the exact browser version used, but all IE versions return &quot;4&quot;. How can I distinguish between 5, 5.5, 6 etc.? Thanks, Ron
  19. ronsig

    frameset resizing

    Hi! I've manged to resize my frameset in IE using : <frameset frameborder=&quot;0&quot; framespacing=&quot;0&quot; border=&quot;0&quot; cols=&quot;*&quot; rows=&quot;46,*,25&quot; id= &quot;s1&quot; name=&quot;s1&quot;> and a script saying...
  20. ronsig

    events in netscape

    Hi, All! I've tried using the folowing in N6.2 and got a javascript error back: <tr id=&quot;row1&quot; onClick=&quot;RowSelection('row1',this,self.event.ctrlKey,self.event.shiftKey);self.event.cancelBubble=true;&quot;> apparently, Netscape doesn't handle the &quot;self.event&quot; command...

Part and Inventory Search

Back
Top