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 SkipVought 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: kstargold
  • Order by date
  1. kstargold

    Using a counter to call a different var...Enumeration?

    Thanks for the help! Kstar
  2. kstargold

    Using a counter to call a different var...Enumeration?

    I'm not sure if it's call enumeration or not. It is very simple and goes like this...(this syntax is wrong) var myNumber = 7; var a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10; a[myNumber] = 10; //what is the format for this function It combines the "a" and the varable myNumber, alowing...
  3. kstargold

    Easy: How can I get the name of the HTML file I am Viewing

    Sorry, I needed to add "window."location.pathname Thanks for replying!! Kstar
  4. kstargold

    Easy: How can I get the name of the HTML file I am Viewing

    <SCRIPT LANGUAGE="javascript"> var here = location.pathname; queryString = queryString.substring(1, queryString.length); document.write(here); </SCRIPT> This doesn't seem to work, what mistake am I making? Thanks, Kstar
  5. kstargold

    Easy: How can I get the name of the HTML file I am Viewing

    Thanks, I apreciate it. Kstar
  6. kstargold

    Easy: How can I get the name of the HTML file I am Viewing

    How can I get the name of the HTML file I am Viewing? ...as in index.html, mypage.html, or otherpage.shtml I'm sure this is easy, but I have no idea. I can get the quarystring, but that's not the same. Thanks, Kstar
  7. kstargold

    Dynamic menu: Conditional CCS use- directed by JS

    Is the code that you listed JavaScript? Thanks, Kstar
  8. kstargold

    Dependent file upload

    My, that is a badly worded checkbox. Thank you muchly for the help!!! [2thumbsup] Kstar
  9. kstargold

    Dynamic menu: Conditional CCS use- directed by JS

    Hi, I have a table based menu as such: <tr> <td class="lglink" valign="top" width="1">&nbsp;</td> <td class="lglink" valign="top" width="13"> <img src="images/ybullet.gif" width="10" height="10" border="0" vspace="3"></td> <td class="lglink" width="143"><a...
  10. kstargold

    onClick change text (span)

    Wow, I could have searched with dogs for days and never found that. Thanks for the tip, have a star. Kstar
  11. kstargold

    onClick change text (span)

    I have three parts to this problem. <script language="JavaScript"> <!-- function changeLeftSide (image_ref, title, desc) { var objImg = new Image; objImg.src = "../imgs/" + image_ref; document.images["image_ref"].src = objImg.src document.getElementById("image_title").interHTML = title...
  12. kstargold

    Dependent file upload

    It prompted me to turn on dependent file upload, but now I want to turn it off. I've been through all of the options menus I could, still can't find how to turn it off. Any ideas? Kstar
  13. kstargold

    how do I wait x number of milliseconds??

    I’m no expert, but doesn’t delay(500); work? Kstar
  14. kstargold

    Folder deletion problems

    Anybody else have an idea? Thanks, Kstar
  15. kstargold

    Folder deletion problems

    How would I go about doing that? Is that a common setting? Thanks, Kstar
  16. kstargold

    Folder deletion problems

    Hi, I am part of a network at my work. A few offices have access to our shared drive (3gb data, about 40 users). We have been having problems with folders getting deleted. This is not a system error, it is user error. I was thinking that maybe if instead of deleting a file or folder, it...
  17. kstargold

    Split &quot;Lastname, Firstname Middlename&quot;

    I have a listing of people that are in program at my university. The cells of the Excell sheet are formated "Lastname, Firstname Middlename". I'm working on doing a mail merge, so I need them in "Firstname Middlename Lastname" format. I have learned a few things about spilt, but I don't know...
  18. kstargold

    Format a column as text

    Great, I put some code at the top, but it doesn't work. Is there an escape char? such as / so you can print a ' ? Thanks, Kanan
  19. kstargold

    Format a column as text

    Skip, it is directly imported from csv format. ETID, I could put a ' at the beginging of the line, Cells(i, "bp").Value = "'" & Cells(i, "bp").Value that should do it. Good idea. PHV, No, I haven't tried that, But I just did and it worked great. What does the @ meen? ~Kanan Thank...

Part and Inventory Search

Back
Top