Search results for query: *

  1. V

    How can I add checkBox dinamically in a Form?

    Hello! I have an ArrayList of Strings. And I have to add one checkbox to every word contained in the ArrayList. I try with this: Dim startPositionInForm = 30 For i = 0 To ArrayList.Count - 1 Dim check As New System.Windows.Forms.CheckBox check.Location...
  2. V

    Problems with Colors in a RichTextBox

    :confused: Hello! I'm having problems with a richTextBox. This rich is used like a code editor (with some words in blue and the oders in black) The user can write on it new words and after that he can push a button that read all the rich and paint (If it's necessary) the new words. Here, I've...
  3. V

    How can I hide the cursor in a richTextBox?

    Hello! I've a richTextBox with the readOnly=True. But shows the text that I want with the typical cursor and seems that the user can write in it. Is it possible to hide this cursor? Thanks in advance
Back
Top