CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2000
    Location
    Arizona, USA
    Posts
    493

    Is This Possible?

    The IS department where I work has asked me to come up with a way to do something which I am
    not sure can be done. They want me to create something that would allow them to right click
    on an IP address on a web page and they would have menu choices like PING that would ping that
    address. I am sure there is a way to add menu choices to IE's default right click menu but
    I don't know how. Also how would I get the IP address they right clicked on?
    Does anyone have any ideas on how to accomplish this?

    Kris
    Software Engineer
    Phoenix,AZ
    Kris
    Software Engineer
    Phoenix, AZ USA

  2. #2
    Join Date
    Sep 2001
    Posts
    5

    Re: Is This Possible?

    it would depend on how the webpage was setup. asp where each field(ip address) was specific. Then you couldsimply click on that field to ping it.
    text1Address_click()
    'ICMP routine
    or as you said setup a menu

    text1Address_click()
    'menu1.visible=TRUE

    of course you would probably want to setup the text fileds into an array so all of the menu commands hold true for each address
    A lot of work to do this i think but good luck
    hope this helps





Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured