Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3273764
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T18:57:59+00:00 2026-05-17T18:57:59+00:00

Hey all i am trying to send a text message from a virtual machine

  • 0

Hey all i am trying to send a text message from a virtual machine (VMWARE) to my local machine so that i can hit a button in the VM and have it do something on the local.

Is there anyway to send a text through an IP, TCP/IP, LAN using VB6 or VB.net? I was looking at the net send to send something but it doesn’t seem to work for me (as well as it seems to pop up a dialog box for every text you send). I’ve already tried this out:

http://www.codeproject.com/KB/vb/CfSimpleSendComp.aspx

But it doesn’t seem to work at all on my computer? I’ve tried both the IP of the machine and also the computer’s name. Maybe .NET Remoting in VB?

Could anyone let me know if there are other ways to do what i would like to do?

Thanks!

David

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T18:57:59+00:00Added an answer on May 17, 2026 at 6:57 pm

    You also can consider to use Eneter Messaging Framework.
    It is lightweight and very easy to use.

    I am sorry, I am not familiar with VB syntax, but in C# the whole implementation
    is here: (You can copy paste the code into your project, include Eneter.Messaging.Framework.dll and change the IP to yours.)

    The server listening to string messages.

    using System;
    using Eneter.Messaging.EndPoints.StringMessages;
    using Eneter.Messaging.MessagingSystems.MessagingSystemBase;
    using Eneter.Messaging.MessagingSystems.TcpMessagingSystem;
    
    namespace StringReceiver
    {
        class Program
        {
            static void Main(string[] args)
            {
                // Create Tcp based messaging.
                IMessagingSystemFactory aTcpMessaging = new TcpMessagingSystemFactory();
                IInputChannel anInputChannel = aTcpMessaging.CreateInputChannel("127.0.0.1:7091");
    
                // Create string message receiver
                // Note: it is possible to receiver typed messages too.
                IStringMessagesFactory aStringMessagesFactory = new StringMessagesFactory();
                IStringMessageReceiver aStringMessageReceiver = aStringMessagesFactory.CreateStringMessageReceiver();
                aStringMessageReceiver.MessageReceived += StringMessageReceived;
    
                // Attach the input channel to the string message receiver
                // and start listening.
                Console.WriteLine("String sercer is listening.");
                aStringMessageReceiver.AttachInputChannel(anInputChannel);
            }
    
            // Processing messages.
            static void StringMessageReceived(object sender, StringMessageEventArgs e)
            {
                Console.WriteLine("Received message: " + e.Message);
            }
        }
    }
    

    The client sending the string messages:

    using Eneter.Messaging.EndPoints.StringMessages;
    using Eneter.Messaging.MessagingSystems.MessagingSystemBase;
    using Eneter.Messaging.MessagingSystems.TcpMessagingSystem;
    
    namespace StringMessageSender
    {
        class Program
        {
            static void Main(string[] args)
            {
                // Create Tcp based messaging.
                IMessagingSystemFactory aTcpMessaging = new TcpMessagingSystemFactory();
                IOutputChannel anOutputChannel = aTcpMessaging.CreateOutputChannel("127.0.0.1:7091");
    
                // Create string message receiver
                // Note: it is possible to receiver typed messages too.
                IStringMessagesFactory aStringMessagesFactory = new StringMessagesFactory();
                IStringMessageSender aStringMessageSender = aStringMessagesFactory.CreateStringMessageSender();
    
                // Attach the output channel to the string message sender
                // so that we can send messages via Tcp to desired Ip address.
                aStringMessageSender.AttachOutputChannel(anOutputChannel);
    
                // Send message.
                aStringMessageSender.SendMessage("Hello world.");
           }
       }
    

    }

    Eneter Messaging Framework can be downloaded at http://www.eneter.net.

    If you would like to get more technical info: http://www.eneter.net/OnlineHelp/EneterMessagingFramework/Index.html
    More examples: eneter.blogspot.com

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey all. Newbie question time. I'm trying to setup JMXQuery to connect to my
Hey all, my Computational Science course this semester is entirely in Java. I was
Hey all, I have something of an interesting requirement for my project. I need
Hey all. We're sending quite a few emails (around 23k) using IIS6 SMTP service
Hey all - I have an app where I'm authenticating the user. They pass
Hey all, I'm pulling my hair out on this one. I've checked all my
Hey all. I have a server written in java using the ServerSocket and Socket
Hey everyone, I'm using Virtual PC and working with a virtual hard disk (*.vhd)
Hey so what I want to do is snag the content for the first
Hey, I'm using Levenshteins algorithm to get distance between source and target string. also

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.