Search results for query: *

  1. vartan

    URGENT: RichTextBox onChange

    Sorry, I meant TextChanged instead of onChange. :)
  2. vartan

    URGENT: RichTextBox onChange

    URGENT: RichTextBox TextChanged I have a MDI program that makes a new form with the following code: PrivateSub ShowNewForm(ByVal sender AsObject, ByVal e As EventArgs) Handles NewToolStripMenuItem.Click, NewToolStripButton.Click, NewWindowToolStripMenuItem.Click ' Create a new instance of...
  3. vartan

    Copying, Cutting, and Pasting with a Rich Text Box

    Note: I can't copy any formatted text from other programs into the Rich Text Box.
  4. vartan

    Copying, Cutting, and Pasting with a Rich Text Box

    :confused: How do I copy or cut data from a rich text box (name = CRTB) to the clipboard? My program is an MDI Form that creates a new child form with the following: Private Sub ShowNewForm(ByVal sender As Object, ByVal e As EventArgs) Handles NewToolStripMenuItem.Click...
  5. vartan

    Bolding a RichTextBox in Child Form

    Strangely, it only worked when I used the If statement. But thank you so much! :D I will never regret that I joined this forum.
  6. vartan

    Bolding a RichTextBox in Child Form

    So if I wanted italics I would use: For Each ... Dim fs As FontStyle = CRTB.SelectionFont.Style If CRTB.SelectionFont.Italic = False Then 'add italic style CRTB.SelectionFont = New Font(CRTB.SelectionFont, fs Or Drawing.FontStyle.Italic) Else 'remove italic style...
  7. vartan

    Bolding a RichTextBox in Child Form

    :) Hi, I'm new to this forum. I have a problem with my Windows application. I have an MDI form that creates a new child form when the new button is clicked. The child form contains a rich text box called CRTB which is made to fill the whole child form: Private Sub ShowNewForm(ByVal...
Back
Top