+ Reply to Thread
Results 1 to 14 of 14

IP address and hyperterminal

  1. #1
    Registered User
    Join Date
    12-21-2011
    Location
    Aus
    MS-Off Ver
    Excel 2010
    Posts
    62

    IP address and hyperterminal

    Hi, newbie to the site and also to the wonderful world of VBA.

    I am trying to create a spreadsheet where I can put an ip address into cell A1, at the side of cell A1 I would like a toggle switch to define either port 23 or 3001.
    Via a button I would like to open up hyperterminal which will automatically open it with the defined ip address and port number.
    The simplest line I have worked out is:
    Shell ("C:\Program Files\hyperterminal\hypertrm.exe /t 192.168.11.1:23")
    However I would to replace the ipaddress in the field to look at cell A1 and also the port number to look at toggle switch (port 23 or 3001). Hyperterminal should open as the main window.
    Thanks in advance. cheers

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591

    Re: Excel 2010 VBA - IP address and hyperterminal

    Hi

    No idea if this works but see what happens. It assumes that the IP address is in A1, and the "toggle" for B1 will actually give you the port number (either a drop down selection, or some other restriction). If the toggle is something else (say a tick box) then can you advise exactly what it is.

    Please Login or Register  to view this content.
    rylo

  3. #3
    Registered User
    Join Date
    12-21-2011
    Location
    Aus
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: Excel 2010 VBA - IP address and hyperterminal

    thanks rylo, I think it is working however Hyperterminal seems to be running in the background and I cannot view it, how can I get the hyperterminal window to be shown as the main window? cheers

  4. #4
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591

    Re: IP address and hyperterminal

    Hi

    Ok, tab to it and close it down, then try

    Please Login or Register  to view this content.
    and see if that puts it as the focus.

    rylo

  5. #5
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: IP address and hyperterminal

    Good old Hyperterminal I though I was the only one still using it
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

  6. #6
    Registered User
    Join Date
    12-21-2011
    Location
    Aus
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: IP address and hyperterminal

    Hi,

    I have ntried the following but hyperterminal stills seems to be running in the background and I cannot make it appear in front. any help would be appreciated. cheers

    Sub Button16_Click()

    mystr = "C:\Program Files\hyperterminal\hypertrm.exe /t " & Range("C7").Value & ":" & Range("f7").Value
    Shell (mystr)
    myvar = Shell(mystr, 3)
    End Sub

  7. #7
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: IP address and hyperterminal

    Please Login or Register  to view this content.



  8. #8
    Registered User
    Join Date
    12-21-2011
    Location
    Aus
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: IP address and hyperterminal

    Quote Originally Posted by snb View Post
    Please Login or Register  to view this content.
    Hi, I tried this but still nothing. Was I supposed to replace all the code with this or add to it (I tried both and nothing much happened). cheers

  9. #9
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: IP address and hyperterminal

    Remarkable; in my case (excel 2010) it showed exactly the screen you were asking for.

    hyperterm.GIF
    Last edited by snb; 01-03-2012 at 07:23 PM.

  10. #10
    Valued Forum Contributor
    Join Date
    07-21-2008
    Location
    London, UK
    Posts
    326

    Re: IP address and hyperterminal

    Hold on what version of Windows are you useing, might seem silly quesyion but

  11. #11
    Registered User
    Join Date
    12-21-2011
    Location
    Aus
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: IP address and hyperterminal

    just noticed the path you had in your code for hypertrm was poitning via a Windows NT directory, I have deleted this from my path and it all works well, thanks for the input.

    The first part of my little project is to be able to ping the ip address in cell c7 and dump the results into a cell into excel thereforte it isnt live just a dump of info.
    Firstly is there a way to embed a cmd window into excell? If so how could I implement this, it would be nice to have then would have the ability of interogating further.
    If this is not possible then I would like to carry on as previous and dump the info into a cell in the worksheet. I got some info from doing a few searches on google on how to do this but I am too much of a novice to understand what it going on in the code. The code is detailed below, at the moment the dump of info is going into cell d7 however I would like it to go into c8. The code below was originally written so many ipaddress (i.e. a list) could be checked one after another however I only need to do one at a time. Any assistance in tweaking the code would be good. Thanks

    <Sub RunPing()

    i = 7

    While (ActiveSheet.Cells(7, 3) <> "")
    '//Retrieve IP address
    strCompAddress = ActiveSheet.Cells(i, 3)

    '//Setup Shell command for Ping
    '//NOTE: Make to leave a space after PING.exe
    Dim strShellCommand As String
    strShellCommand = "C:\Windows\System32\PING.exe " + strCompAddress

    '//Create Shell Object in to run Scripts
    Set oSh = CreateObject("WScript.Shell")
    Set oEx = oSh.exec(strShellCommand)

    '//Read output buffer
    strBuf = oEx.StdOut.ReadAll
    ActiveSheet.Cells(i, 4) = strBuf
    i = i + 1
    Wend
    End Sub/>

  12. #12
    Valued Forum Contributor
    Join Date
    07-21-2008
    Location
    London, UK
    Posts
    326

    Re: IP address and hyperterminal

    yep this is correct M$ Win Xp Pro etc

    Just for the other point M$ Se7en does not have hypertermal its been removed, so watch upgrades etc

  13. #13
    Valued Forum Contributor
    Join Date
    07-21-2008
    Location
    London, UK
    Posts
    326

    Re: IP address and hyperterminal

    Frogboy, please try and wrap your codes in code tags you end up with the admins and mods chasing after you, only takes a minute or so to do and makes code a heap easier to read etc - thanks for understanding I mean well

  14. #14
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: IP address and hyperterminal

    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1