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!

Search results for query: *

  1. JeeEiych

    getting form name from document.forms[]

    I have several forms in a page. I want to access a repeating field from those forms but I want to avoid one particular form. I tried to access the name but I can't. This is how I tried it.. for (var iForm = 0; iForm < document.forms.length; iForm++) { if ((document.forms[iForm].name !=...
  2. JeeEiych

    Passing Hex-sign as function parameter

    I got it. I used the escape() function and it works! @cLFlaVA I need such kind of data because the URL-like data is not a real URL but it is a kind of an ID in my database. Anyway, thanks to all for the help. Gabriel
  3. JeeEiych

    Passing Hex-sign as function parameter

    one more thing I have also make sure that my web server only got it as "http://myURL.org.me/kb" cheers Gabriel
  4. JeeEiych

    Passing Hex-sign as function parameter

    Hi Nick & cLFlaVA. The thing is, that value actually is from a variable. Maybe I should put all the things in more complete. Please have a look... I also have done what cLFlaVA asked. The function... function newwindow(myTp,myURI) { if (myTp==1) { window.open('UIClass.php?shwTp=' + myTp +...
  5. JeeEiych

    Passing Hex-sign as function parameter

    Hi all. I want to pass this value: "http://myURL.org.me/kb#academic". I want to make my link to open a window with the value as one of the parameter. My call was like: javascript:newwindow(1,http://cognet.org.me/kb#academic) For the second parameter the function only read the...
  6. JeeEiych

    How to create interactive batch?

    I need to create a text-base menu. I need the user to key-in the option they choose. How to get their input? I've tried to use &quot;chioce&quot; command but it's no longer available in W2k env. Thanks.
  7. JeeEiych

    Alter Column

    Hi guys. I have a problem in altering a column. I run an SQL command in SQL v7 sp2. I used this line: Alter Table MyTable Alter Column MyField char(20) I run this script in two databases from the SQL query analyzer. It responsed differently. On one database is working but on the other, it...

Part and Inventory Search

Back
Top