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 gkittelson 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: *

  1. jaredn

    Turn Off JS Help on Mouse Click

    No problem, mate. jared@eae.net - http://webfx.eae.net
  2. jaredn

    Accessing source code from different domain

    In IE4(?)+ you can try using an .hta (HTML Application) file. This is only a viable solution in limited situations, since the browser forces you to download or open the file, much like an EXE. So it will work well for a corporate intranet app, but probably not for public internet consumption...
  3. jaredn

    Turn Off JS Help on Mouse Click

    I wrote a solution, but only tested it with IE6. My Changes are in bold: <html><body> <div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div> <script language="JavaScript" src="overlib2.js"></script> Welcome, please login below:<BR><BR> <FORM NAME="Login"...
  4. jaredn

    focus a DIV

    I am just curious, but why do you want to set focus to a div element? Anyways, on a whim, I tried the code below; it appeared to work: <div tabindex="0" id="benluc">Here you go</div> <script> document.getElementById("benluc").focus(); </script> The key is the addition of tabindex="0" to...
  5. jaredn

    Client-Side Database Connection

    I know this isn't a 'turnkey' ::pukes:: solution, but it might shove you in the right direction: Ashlet IT - Remote Scripting. Hope that helped, jared@eae.net - http://webfx.eae.net
  6. jaredn

    Which methods are &quot;more right&quot;?

    Among other differences, JScript's 'reflection' capabilities will show significant differences: BR = "<br>"; literal_string = ""; object_string = new String(); document.write("typeof(literal_string) is " + typeof(literal_string)+BR); document.write("typeof(object_string) is " +...
  7. jaredn

    Using Remote Servers in Visual Studio.NET

    Thanks Chiph. Makes sense. But still annoys the living daylights out of me. Thanks again, everyone. jared@eae.net - http://webfx.eae.net
  8. jaredn

    Using Remote Servers in Visual Studio.NET

    Perhaps and I hope so. Thanks for all the advice. jared@eae.net - http://webfx.eae.net
  9. jaredn

    Using Remote Servers in Visual Studio.NET

    Whenever I attempt to add a web server that is not local (ie, that is over the internet) in the Server Explorer window, I receive an error to the effect of: You have entered an Internet address or an IP address outside the local domain. Connections to Internet addresses or to external domains...
  10. jaredn

    Using Remote Servers in Visual Studio.NET

    Wow. What a useful feature to leave out of such a great productivity tool. What on earth were they thinking :-/ ? Thanks for answering though. jared@eae.net - http://webfx.eae.net
  11. jaredn

    Using Remote Servers in Visual Studio.NET

    Hello, thank you for taking the time to read this. I am coming to C# from a background in heavy dhtml and asp work. My tool of choice when working with those technologies has always been HomeSite (originally an Allaire product, but it has since been picked up by Macromedia). One of the...
  12. jaredn

    Design Process for Standalone Developer

    Thanks again guys. I will certainly be looking further into this 'Iconix' solution. jared@eae.net - http://webfx.eae.net
  13. jaredn

    Design Process for Standalone Developer

    Thank you for the advice; it certainly does make sense. I do, however, still look forward to finding a proven design method that a standalone programmer can use... Thanks again, Jared N jared@eae.net - http://webfx.eae.net
  14. jaredn

    Design Process for Standalone Developer

    I'm not sure this is the proper forum for this question, so my apologies in advance if it indeed is not... When constructing software in an object-oriented (or really any) fashion, one must implicitly or explicitly use a design process to structure their tasks; ie, vision, requirements...
  15. jaredn

    Get Elements type/name

    Your code is a little confusing, but maybe you want to do something like this: theelement = document.forms[count].elements[count] theelementtype = theelement.type theelementname = theelement.name That should give you the two variables that you want, IF I understand your problem correctly...
  16. jaredn

    Meaning

    For which version of javascript are you writing this application? I'm not familiar with &quot;int&quot; being a valid javascript keyword. Anyways, the statement means: Create a (n integer) variable called &quot;newSize&quot;. If the value stored in the variable &quot;size&quot; is greater than...
  17. jaredn

    testing for undefined

    This works for me: teamleader = new String(Request(&quot;teamleader&quot;)) if(teamleader==&quot;undefined&quot;) { teamleader = &quot;&quot; //default value } Note well, the .QueryString isn't necessary (though I bet it trivially increases performance). Note also, I convert the Request...
  18. jaredn

    forms and JS

    Use: formelement = document.getElementById(&quot;chk1&quot;); formelement.disabled = true; jared@eae.net - http://webfx.eae.net
  19. jaredn

    keeping input box values when using history.go(0)

    Might cookies work? http://www.webreference.com/js/column8/ jared@eae.net - http://webfx.eae.net
  20. jaredn

    Explain this line to me

    Oh. But the purpose of the aforementioned line of code is to check to see if document.getElementById exists. If it does exist, then you know that the browser being tested has at least minimal DOM capabilities. jared@eae.net - http://webfx.eae.net

Part and Inventory Search

Back
Top