Search results for query: *

  1. V

    How can I add checkBox dinamically in a Form?

    Wow! Thanks JohnH you were right! I was blind and I was sure that this arraylist was full of Strings and the problem were that was with only one String! Thanks a lot ;)
  2. 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...
  3. V

    Problems with Colors in a RichTextBox

    Sorry, but my English is a little poor, and I can't understand very well :( 1- I don't understand this solution. My problem is that when the user are writing, I want that ALWAYS the color has to be black (and if the user writes near a blue word, the chars tha appear when he writes are blue...
  4. 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...
  5. V

    How can I hide the cursor in a richTextBox?

    Ok... Thanks to everybody :)
  6. V

    How can I hide the cursor in a richTextBox?

    Well, with the TabStop=False (more or less) I have the result that I was expecting. Thanks a lot :)!
  7. 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