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 TouchToneTommy 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. dfrankel

    access a frame within a frame

    I need to access a frame of an inner frameset from the outer most frameset. using parent.parent would give me what I need going the other way. But is there an equivalent like child.child?????
  2. dfrankel

    does anybody know what this does <!-- saved from url

    I actually tried it on a test page. I saved another site and removed that line completey. The new site that I saved loaded up fine. I don't know why. Perhaps the site I saved from was a .asp I don't know. Daniel
  3. dfrankel

    does anybody know what this does <!-- saved from url

    <!-- saved from url=(0091)http://edge2.edge.pwj.com/OLS/jsp/sesupport.jsp?edge_id=PWT00000084&se_code=3001&color=gray --> When I removed part of the URL the page didn't load properly.
  4. dfrankel

    does anybody know what this does &lt;!-- saved from url

    But it's not just a comment because when a dleted part of the url that was in the comment the site didn't function properly.
  5. dfrankel

    Web Based WYSIWYG Editors

    You should look into www.ektron.com. They have eWebEditPro. I don't know the cost but from my understanding it is not very expsensive when you get a license for a few users. I do not know what the cost is, so I can't tell you for certain that this is what you are looking for. Good luck. Daniel
  6. dfrankel

    does anybody know what this does &lt;!-- saved from url

    I saved a web site and it added this line of code with the URL of the web site I was saving from. I thought it was a comment and when I deleted it, the top frames functionality didn't work quite right. The images were gone. Daniel
  7. dfrankel

    list of objects

    The question is better stated like this: the CreateObject method, where can I get a list of objects that can be created using this. dfrankel
  8. dfrankel

    list of objects

    hithere, I'm familiar with the reference sites, but these sites don't say anything about objects like CDNOTS and the like. dfrankel
  9. dfrankel

    list of objects

    Where can I find a list of all available objects or most of them in vbScript. I had to do a lot of searching on the net before I found something useful for sending mail CDNOTS. Another one is Set oRegistry = GetObject(&quot;winmgmts:{impersonationLevel=impersonate}//&quot; & _ sComputer &...
  10. dfrankel

    Using Javascript Variable in HTML IMG tag

    What I would reccomend to do is: <span id=&quot;changeMe&quot;><img src=&quot;filename.jpg&quot; name=&quot;image&quot; usemap=&quot;var1&quot;></span> <a href=&quot;file.html&quot; onMouseover=&quot;document.images['image'].src='newimage1.jpg'; changeSpan('link1'); return true;&quot;>Link...
  11. dfrankel

    move down the page using OnLoad()

    I don't know if this will work, but what you can try doing is I assume there is a link to get user to next n. You can put a <span id=pos> around the link and when the page is loaded do a focus() to that id. Good Luck. Daniel
  12. dfrankel

    HTML header objects

    Can you get HTML header objects with JavaScript? I want to know what the refferer page is, or whether GET or POST was used in a form.
  13. dfrankel

    Getting the size of a file to be uploaded

    Jack, there is no way of getting the file size of a file you are trying to upload from a PC before it actually gets uploaded. The document.fileSize atribute only works with IE4.0 and higher and only works if the file has already been loaded in the html page. Dan
  14. dfrankel

    Validating Radio Buttons and text box at same time

    I'm not completely clear what you are trying to do, can you please be more specific. Dan
  15. dfrankel

    Accessing Variables from Dynamic HTML

    This code sould work for what you want. <html> <head> <script> function tariffText() { document.all.dynText.innerHTML = &quot;<table><tr><td><input type='radio' name='tariff' value='175' checked><br><input type='radio' name='tariff' value='128'></td></tr></table>&quot;; }...
  16. dfrankel

    close after submit

    visualJay, I would reccomend doing the window.close() from the page your action= is on your form. Daniel
  17. dfrankel

    change text in a file

    Thanks Ken, in the end, we decided not to use a shell script, instead we just used the [exec cp $source $destination] command. Is there a difference between using TCL file rename or exec cp command? Daniel Frankel UBS PaineWebber
  18. dfrankel

    change text in a file

    Thanks Bob, I figured it out, I actually tried doing it a different way. I didn't want to overwrite the file, because I was affraid if it broke in the middle I would lose the whole file. I did a [gets $channelId line] and split the $line by the = sign. Then I looked at the first variable...
  19. dfrankel

    change text in a file

    I have a file with varibales and their values in it. I would like to update those values directly to the text file. How do I do that?

Part and Inventory Search

Back
Top