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 6728885
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:13:23+00:00 2026-05-26T10:13:23+00:00

I am working with some electronics instruments using GPIB. I can communicate with instruments

  • 0

I am working with some electronics instruments using GPIB. I can communicate with instruments like this:

K2400.WriteString("*IDN?", true);
textBoxK2400.Text += K2400.ReadString() + Environment.NewLine;

The first line will execute a command, and in the second line I add the response of the last command to the textbox. How can I write the command in the textbox directly and add the response?

For example, if the user command entered after an indicator like “>>” and hitting ENTER, the response should be added in the next line of textbox.

So how can I read the last line of a textbox and add the respone in a new line? I am looking for a method like:

private void Execute(string command)
{
  K2400.WriteString(command, true);
  textBoxK2400.Text += K2400.ReadString() + Environment.NewLine;
}
  • 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-26T10:13:24+00:00Added an answer on May 26, 2026 at 10:13 am

    You could try this:

    private void textBoxK2400_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.Return)
        {
            string command = textBoxK2400.Text.Split('\n').LastOrDefault();
            if (!String.IsNullOrEmpty(command) && command.StartsWith(">>"))
            {
                K2400.WriteString(command.Substring(2), true);
                textBoxK2400.Text += K2400.ReadString() + Environment.NewLine;
                textBoxK2400.Text += ">>"; // It's not necessary
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Whilst working on some generally horrible Javascript code this morning, I came across the
I'm working on some production software, using C# on the .NET framework. I really
Working through some OpenGL-ES tutorials, using the Android emulator. I've gotten up to texture
is it possible to get this stuff working(some way to force Objectfactory create instances
some are working some are not working. for example, i did using System.Web.Security; MembershipUser
Im working on some beginner stuff in java and Im using MouseMotionListener to get
Here's some working code: class A { public $Foo; public function GetFoo() { $this->Foo
I am working on some bash scripts that I'd like to work across my
I am working some portion of twitter api, and getting some JSON response using
I have some working code that I altered but I can't seem to get

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.