Search

You searched for the word(s): userid:822049

Matching Posts

  • Re: How to retrieve the current page's URL in vbScript?

    Hi, NC! Long time no see :) you see, the software I'm using to create the button allows me to 'link' it to a file; which can be whatever file I want(exe, bat, vbs....) which will be loaded every time I click on that button, only that whenever I use an html type of page I get blocked by IE because of the active content(<script>) that is found on that page, and also I canot get the referrer because that page will be opened in a new window(new process) so there is no referrer... see
    Posted to Client Side Web Development (Forum) by x-format on 6/11/2009
  • How to retrieve the current page's URL in vbScript?

    Hello! I'm trying to retrieve the current page's URL in vbScript but whatever I do doesn't work. I'm new to vbScript and I created a button for IE that will redirect me to a given url to which I'd like to append the current page's url. I've searched the web for quite some time and I've found some 'solutions' but none of them worked. If I used a msgbox to display the URL of the current viewed page it's always empty, no matter what... I've tried this
    Posted to Client Side Web Development (Forum) by x-format on 6/11/2009
  • Re: help me with an idea...

    [quote user="Satheesh Pagolu"] hi thanx for ur reply... can u explain a bit more... a example code will be very much appreciated..thanx again.... [/quote] Ex: < !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns= "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv= "Content-Type" content= "text/html; charset=utf-8" /> < title
    Posted to Client Side Web Development (Forum) by x-format on 12/21/2008
  • Re: help me with an idea...

    by setting a different name to each popup ?
    Posted to Client Side Web Development (Forum) by x-format on 12/18/2008
  • Re: Create a right click context menu and insert the data into the texbox/textarea

    The context menu is probably the hardest widget to implement at this given time. You can find some examples working in IE and Firefox but the main problem is that nothing will work in Opera. so...good luck :)
    Posted to Client Side Web Development (Forum) by x-format on 12/17/2008
  • Re: Server side code using AJAX

    the problem with your code is that you set a variable in a function and try to access it in another function. which, btw, you can't, using the code you have. I see no reason you should have 3 different functions when there's no factory function for the XMLHttpRequest object, so why not wrap it in one function call?
    Posted to Client Side Web Development (Forum) by x-format on 12/17/2008
  • Re: how to hook the javascript?

    here you go! < script type= "text/javascript" > // Prevent default action function preventDefault(evt) { if (evt.preventDefault) { // FIREFOX return evt.preventDefault(); } else { // IE return evt.returnValue = false; } } function CollapseExpend(id, ev) { preventDefault(ev) if(document.getElementById(id).style.display == "none") { document.getElementById(id).style.display = 'block'; } else { document.getElementById(id).style.display = 'none'; } } </ script
    Posted to Client Side Web Development (Forum) by x-format on 12/17/2008
  • Re: #Include File vs. Virtual

    Even if you don't use SSI your website could still present enough vulnerabilities a malicious person could take advange of, and to answer your question, no, it is not dangerous to use SSI.
    Posted to Client Side Web Development (Forum) by x-format on 12/11/2008
  • Re: Full screen

    you mean that when you log out, you want the browser to exit from fullscreen automatically? If this is the case, wouldn't it be easier to just press the F11 key on your keybord?
    Posted to Client Side Web Development (Forum) by x-format on 12/6/2008
  • Re: Checkbox deselect warning message

    [quote user="LeMerovingian"] sorry it still doesn't behave properly. I am hoping that when the user clicks on the (checkbox while it is already checked), that it gives them a warning, and if they choose to cancel it wont deselect. At the moment the code is de-selecting and re-selecting after they choose cancel, but I don't want it to deselect at all if they cancel. [/quote] I really would like to see how you'd do that. really.
    Posted to Client Side Web Development (Forum) by x-format on 11/28/2008
Page 1 of 27 (266 items) 1 2 3 4 5 Next > ... Last »