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

    Pass property of HTML tag to function inside parent vb app?

    Hi, how could I pass the 'bgColor' property of a TD html tag for example to my vb app's code when it's clicked on in my webbrowser control? eg:- vb code inside app: Function msgBoxTDBGColor(s) MsgBox("The current table cell background color inside my webbrowser control is " & s & ".") End...
  2. davemarsh

    extract variable from a function

    function xyz(){ var d=new Date(); } .. is it possible to extract the non-global 'd' var from that function somewhere else in my code? (the function can't return any value...)
  3. davemarsh

    Get logged on username and drive letter?

    Hi - I'm writing a small app that deletes some unwanted content in a folder. But how do I get the users logged on name, for the right path? eg. 'C:\Documents and Settings\Administrator\folder\files'. Also their drive letter may not be 'C' - how could I check that? Cheers DM
  4. davemarsh

    can php accept remote cookies?

    hi - is the a way for php to accept a remote server cookie, or a way around it? what i'm tyring to do, is send a string to a remote page that won't allow you to post to it unless you have a session cookie already set by it. eg : <...
  5. davemarsh

    strip html entities from a string

    hi - i have a function that strips html entities such as '&amp;#09;' etc: option explicit dim tmp tmp=request.querystring(&quot;s&quot;) response.write strip(tmp) function strip(tmp) dim x,i set x=new regexp x.global=true x.ignorecase=true x.pattern=&quot;\&([#a-zA-Z0-9]+);&quot...
  6. davemarsh

    Problem CSS 'vertical-align' property

    Hi, should'nt the child span be aligned in the middle of the parent in this example?? - what am i doing wrong? : <span style=&quot;width: 300px; height: 300px; background: #ccc;&quot;> <span style=&quot;vertical-align: middle;&quot;>In the Middle? </span> </span> Cheers...

Part and Inventory Search

Back
Top