Search results for query: *

  1. F

    Cursor position while changing font...

    Hi, So I'm writting a small little word processor program just to get back into programming again. Right now, I have a toolbar with buttons, a RichTextBox for writing in, and two combobox's filled with the installed fonts and font sizes. My actual question is, at this point when I change the...
  2. F

    Help with Font ComboBox

    This is what I found out... Sub ComboBox1SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Me.textBox1.Font = New System.Drawing.Font(ComboFonts.Families(comboBox1.SelectedIndex), 13, Font.Style) End Sub And it worked!
  3. F

    Help with Font ComboBox

    Ok...I'm working on a simple type word processor. Just soemthing to play with cuz I got bored. I have a combobox thats filled with all the font familes on my system. I want to be able to select a font from the combobox and have that selection be the font for my TextBox that is the word...
Back
Top