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

  • SEARCH
  • Home
  • 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 9239229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T07:56:21+00:00 2026-06-18T07:56:21+00:00

I am trying to have a permanent prefix input in the textbox. In my

  • 0

I am trying to have a permanent prefix input in the textbox. In my case, I want to have the following prefix:

DOMAIN\

So that users can only have to type their username after the domain prefix. It’s not something I have to do, or pursue but my question is more out of curiosity.

I was trying to come up with some logic to do this on the TextChangedEvent however, this means I need to know which characters have been deleted where and then pre-append DOMAIN\ to whatever their input is – I can’t work out the logic for this so I can’t post what I have tried apart from where I got to.

public void TextBox1_TextChanged(object sender, EventArgs e)
{
  if(!TextBox1.Text.Contains(@"DOMAIN\")
  {
    //Handle putting Domain in here along with the text that would be determined as the username
  }
}

I’ve looked on the internet and can’t find anything, How do I have text in a winforms textbox be prefixed with unchangable text? was trying to do a similar thing but the answers don’t really help.

Any ideas on how I can keep the prefix DOMAIN\ in a TextBox?

  • 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-06-18T07:56:23+00:00Added an answer on June 18, 2026 at 7:56 am

    Using the KISS principle is indicated here. Trying to catch key presses just won’t do anything when the user uses Ctrl+V or the context menu’s Cut and Paste commands. Simply restore the text when anything happened that fudged the prefix:

        private const string textPrefix = @"DOMAIN\";
    
        private void textBox1_TextChanged(object sender, EventArgs e) {
            if (!textBox1.Text.StartsWith(textPrefix)) {
                textBox1.Text = textPrefix;
                textBox1.SelectionStart = textBox1.Text.Length;
            }
        }
    

    And help the user avoid editing the prefix by accident:

        private void textBox1_Enter(object sender, EventArgs e) {
            textBox1.SelectionStart = textBox1.Text.Length;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I'm trying to have a window that I can drag around by the
I'm trying to redirect requests that have a query string to a different domain
I am trying to have a method that takes in a username and will
I have set up an asset host at assets.domain.com but it appears that cookies
I am trying to optimize a query that contains a cross join. I have
I have an xml which looks like <Personnel> <Employee type=permanent> <Name>Seagull</Name> <Id>3674</Id> <Age>34</Age> </Employee>
I am trying to set a permanent cookie by JavaScript. I have something like:
Afternoon, I am trying have an HTML file containing a frameset which contains two
Trying to have my PHP script return some SQL table queries. Here's my script
I have trying to learn MVC4 Web API. I am running my project from

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.