Click here to Skip to main content
16,007,809 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How can i change Character Pitch of a dot printer? Pin
Greeky27-Dec-05 20:33
Greeky27-Dec-05 20:33 
GeneralRe: How can i change Character Pitch of a dot printer? Pin
Dave Kreskowiak28-Dec-05 1:51
mveDave Kreskowiak28-Dec-05 1:51 
QuestionError What does it mean? Pin
Greeky26-Dec-05 1:42
Greeky26-Dec-05 1:42 
AnswerRe: Error What does it mean? Pin
Dave Kreskowiak27-Dec-05 7:30
mveDave Kreskowiak27-Dec-05 7:30 
QuestionMultiColumn Combobox in datagrid Column Pin
HemaRawat26-Dec-05 1:01
HemaRawat26-Dec-05 1:01 
QuestionDataGrid Column Pin
MalikRizwan26-Dec-05 0:21
MalikRizwan26-Dec-05 0:21 
Questionthe font properties Pin
karoitay25-Dec-05 14:40
karoitay25-Dec-05 14:40 
AnswerRe: textBox font properties Pin
[Marc]25-Dec-05 14:57
[Marc]25-Dec-05 14:57 
You have to make a new Font:
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

  Dim oldFont As Font = TextBox1.Font

  'Make a new font (12.0! is the size)
  'Here i did it with the font family and style of the old one
  'So only the size get's changed
  Dim newFont As New Font(oldFont.Family, 12.0!, oldFont.Style)

  'Give the textbox the new font
  TextBox1.Font = newFont

  'Dispose of the old font for memory
  oldFont.Dispose()

End Sub

HTH! Smile | :)

Merry Christmas! Jig | [Dance]
"..Commit yourself to quality from day one..it's better to do nothing at all than to do something badly.."
-- Mark McCormick

GeneralRe: textBox font properties Pin
karoitay25-Dec-05 15:08
karoitay25-Dec-05 15:08 
Questioncommondialog problem Pin
markshte25-Dec-05 6:09
markshte25-Dec-05 6:09 
AnswerRe: commondialog problem Pin
Dave Kreskowiak27-Dec-05 7:27
mveDave Kreskowiak27-Dec-05 7:27 
QuestionDetecting the logival dirver of OS Pin
JUNEYT25-Dec-05 5:28
JUNEYT25-Dec-05 5:28 
AnswerRe: Detecting the logival dirver of OS Pin
Dave Kreskowiak27-Dec-05 7:22
mveDave Kreskowiak27-Dec-05 7:22 
Questionmedia player for pda Pin
pgcnet25-Dec-05 1:51
pgcnet25-Dec-05 1:51 
AnswerRe: media player for pda Pin
Dave Kreskowiak27-Dec-05 7:21
mveDave Kreskowiak27-Dec-05 7:21 
QuestionDetecting th eplugged devices to USB ports Pin
JUNEYT24-Dec-05 10:20
JUNEYT24-Dec-05 10:20 
AnswerRe: Detecting th eplugged devices to USB ports Pin
Dave Kreskowiak27-Dec-05 7:18
mveDave Kreskowiak27-Dec-05 7:18 
Questiontreeview state Pin
ingwaar24-Dec-05 1:45
ingwaar24-Dec-05 1:45 
AnswerRe: treeview state Pin
George B Gilbert24-Dec-05 5:50
George B Gilbert24-Dec-05 5:50 
GeneralRe: treeview state Pin
ingwaar26-Dec-05 2:45
ingwaar26-Dec-05 2:45 
QuestionWeb mail sniffing in VB Pin
Dinakara K23-Dec-05 23:07
Dinakara K23-Dec-05 23:07 
QuestionTable Collection Pin
sonj23-Dec-05 17:35
sonj23-Dec-05 17:35 
AnswerRe: Table Collection Pin
sonj26-Dec-05 17:04
sonj26-Dec-05 17:04 
QuestionLooping through a string array Pin
j45mw23-Dec-05 12:22
j45mw23-Dec-05 12:22 
AnswerRe: Looping through a string array Pin
Dave Doknjas23-Dec-05 14:06
Dave Doknjas23-Dec-05 14:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.