textbox

  1. H

    Tip How To Create Transparent TextBox With Image and Changed Highlight Color Using C# Windows Forms Dot Net 4.8.1

    Youtube Link Full Source Code In The Video Download The Full Source Code From GumRoad WebSite Or Full Source Code In The Video Please Like And Subscribe For Further Questions Please Leave Your Comment Download Link https://hotmailhome.gumroad.com/l/asziwg *** SEO FEEDING TERMS/PHRASES...
  2. T

    Question transfer content from Form2's TextBox to Form1's DataGridView

    Hello guys, here I am again asking for support. I have a Form1 that contains a DataGrid and a 'Call' Button that calls Form2, on Form2 I have 2 TextBox and an 'OK' Button I need to transfer the contents of the TextBox from Form2 to the Grid of Form1 when clicking the OK Button, I did a lot of...
  3. E

    Question How to write non-ascii characters on maskedTextBox?

    I'm using TripleDESCryptoService and I keep the encrypted text in byte[]. I want to display this on a textBox. So I choose AsciiOnly = False for maskedTextBox. Now I copy a non-ascii character and paste it on maskedTextBox and there is no problem. But when I do it in code it fails. Example text...
  4. G

    Answered Combine multiple lines into a single line in a textbox

    Hi, I have a wpf application that has a textbox to which value is inserted using a scanner. At one time when I scan a single data, multiple lines comes into textbox which can be scrolled down to see. But I dont want them as multiple lines. I want to combine all lines into a single line and see...
  5. G

    Textbox not filling with last letter of the entered string

    Hi, I have created an application for learning purposes. Its a wpf application. The application works like this. First is the main window. It has a button called open and a textbox. When I click on open a new window will open up. This new window has 3 textboxes and 1 button ok. The three...
  6. D

    Getting the contents of TextBoxes created "on the fly"

    I've got a TableLayoutPanel (called userPanel) where I create 3 rows containing one label and two text boxes. At the application startup, I create them like this: public MainForm() { InitializeComponent(); for (int i = 0; i < userPanel.RowCount; i++) { userPanel.Controls.Add(new...
Back
Top Bottom