Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Change Font Size


Is it possible to change the font or font size of the VB IDE?

I.e. I want to lower the font size of the code editor so I can see more code on my screen at once. Hopefully, without changing my screen resolution.

TIA.

Tristan Wolf

Confucious say, "Man who fight salmon should use right hook."




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
How To Change The Font Type And Font Size For A Menu Bar?
Dear all,
I meet a problem in my application. How can i change the font type and font size for the menu used in th form? Since my application is run on 1280x1024, it is too small to see the type on the menu bar. Could anyone help me? Very urgent!!! Thanks.

Paul

Popupmenu Background Color Change As Well As Font Size Change
hi folks
am creating one popupmenu using createpopupmenu() API
and also i insert items dynamically using insertmenuitem API
and display using Trackpopupmenu().
My problem is

1)i want to change the background color of popup menu?????
2 i want to change the font size in popup menu ???????
dynamically .
if any body know API or how to change the font size and change the background color in popupmenu ,please help ur friend.

Important:
I don't need menu editor.
i need only popup menu.
expecting a positve reply.
-------------------------------------------------
"HARD WORK NEVER END FAILS"
-------------------------------------------------

Change Font Size In RTB, But Not All Of It!
I have the code below to change the size of the selected font in a RichTextBox.

If the user selects a different size font part way through using the RTB, how do I get the text from that point on to be the newly selected size?
I have a combobox with the sizes available for the font.


Code:
Private Sub cmbFontSize_Click()
On Error GoTo ErrTrap

If Len(rtbNotes.SelText) > 0 Then
rtbNotes.SelFontSize = cmbFontSize.List(cmbFontSize.ListIndex)
rtbNotes.SetFocus
Else
''rtbNotes.SelFontSize = cmbFontSize.List(cmbFontSize.ListIndex)
End If

Exit Sub

How To Change Font And Size On Runtime
Hello, im making an application that needs the ability to be resized according to the user's screen (640x480, 1042x768, etc) or whenever the user wants to. What is the best way to implement it? Different forms? Anyone has done something to accomodate a form when the fonts are changed? Thanks..

Change Font Size In A RichTextBox
Is there a simple command to change the font size of all the text in a RichTextBox. The only method that I have found so far is

RichTextBox1.SelStart = 0
RichTextBox1.SelLength = Len(RichTextBox1)
RichTextBox1.SelFontSize = 14
RichTextBox1.SelStart = 0

It works but highlights all the text first, then changes the font size and finally restores the cursor to the start of the text.

RichTextBox1.Font.Size = 14 only changes the first bit of text.

To Change Font Size Of The Titlebar
Hello,

I've changed the Font of the title bar of the form through "systemparametersinfo" parameters. n now i want to change the font size.


But in the case of multilingual fonts the display changes coz the font size is different for different languages.

can u help me to change the font size of the title bar?????
the code to change the font of the title bar as follows :





Private Type LOGFONT
lfHeight As Long
lfWidth As Long
lfEscapement As Long
lfOrientation As Long
lfWeight As Long
lfItalic As Byte
lfUnderline As Byte
lfStrikeOut As Byte
lfCharSet As Byte
lfOutPrecision As Byte
lfClipPrecision As Byte
lfQuality As Byte
lfPitchAndFamily As Byte
lfFaceName(1 To 32) As Byte
End Type


Private Type NONCLIENTMETRICS
cbSize As Long
iBorderWidth As Long
iScrollWidth As Long
iScrollHeight As Long
iCaptionWidth As Long
iCaptionHeight As Long
lfCaptionFont As LOGFONT
iSMCaptionWidth As Long
iSMCaptionHeight As Long
lfSMCaptionFont As LOGFONT
iMenuWidth As Long
iMenuHeight As Long
lfMenuFont As LOGFONT
lfStatusFont As LOGFONT
lfMessageFont As LOGFONT
End Type

Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, lpvParam As NONCLIENTMETRICS, ByVal fuWinIni As Long) As Long
Private Declare Function CreateFontIndirect Lib "gdi32" Alias "CreateFontIndirectA" (lf As LOGFONT) As Long

Dim ncm As NONCLIENTMETRICS 'NONCLIENTMETRICS to change
Dim Orincm As NONCLIENTMETRICS 'NONCLIENTMETRICS to replace original
Dim Returned As Long
Dim lf As LOGFONT
Dim hFont As Long


Private Sub Combo1_Click()

Dim i As Integer
ncm.cbSize = Len(ncm)

Returned = SystemParametersInfo(41, 0, ncm, 0) 'get the system NONCLIENTMETRICS
Orincm = ncm 'store the value of system NONCLIENTMETRICS to use later
'now to change the font name
'other functions can be used to change t
' he font name
'but for simplicity i have used asc() &
' mid()


For i = 1 To Len(Combo1.Text) 'use ncm.lfMenuFont.lfFacename(i) to change menu font
ncm.lfMessageFont.lfFaceName(i) = Asc(Mid(Combo1.Text, i, 1))
ncm.lfCaptionFont.lfFaceName(i) = Asc(Mid(Combo1.Text, i, 1))
Next i
ncm.lfMessageFont.lfFaceName(i) = 0 'add null at the end of font name
ncm.lfCaptionFont.lfFaceName(i) = 0
Returned = SystemParametersInfo(42, 0, ncm, &H1 Or &H2) 'remove &H2 if you don't want to affect all the open windows

lf.lfHeight = 24 ' character height in pixels
lf.lfWidth = 12 ' character width in pixels
lf.lfEscapement = 0 ' orientation of next character
lf.lfOrientation = 0 ' orientation of first character
lf.lfWeight = 400 ' normal thickness
lf.lfItalic = False ' not italic characters
lf.lfUnderline = True ' not underlined characters
lf.lfStrikeOut = False ' not strikeout characters
lf.lfCharSet = 255 ' OEM character set
lf.lfOutPrecision = 0 ' default output precision
lf.lfClipPrecision = 0 ' default clipping precision
lf.lfQuality = 0 ' default scaling quality
lf.lfPitchAndFamily = 64 ' default pitch, script font family

hFont = CreateFontIndirect(lf)
MsgBox hFont
MsgBox "Message & Caption Font Changed to " & Combo1.Text, vbOKOnly, "Amit"
' Returned = SystemParametersInfo(42, 0, Orincm, &H1 Or &H2) 'replace original font
' MsgBox "Message & Caption Font Replaced to " & StrConv(Orincm.lfCaptionFont.lfFaceName, vbUnicode), vbOKOnly, "Amit"


'
End Sub



Private Sub Form_Load()

' Heres a very simple code to change the
' system
' NONCLIENTMETRICS like the the window t
' itle font,
' the message font,menu font using VB. Y
' ou can also change
' other elements like status font etc
' in your window only or all the open wi
' ndows
' like PLUS! or display settings (appear
' ance)
' also it is possible to underline, stri
' kethru fonts in
' your window with this code. This code
' is very useful
' if you are coding a multi-lingual soft
' ware.
' For more info and more free code send
' e-mail.
'
' email - vengs_amit@yahoo.com

Dim i As Integer
Show
' to flood the combo box with first 10 f
' onts


For i = 1 To 200 ' or use For i = 1 To Screen.FontCount to flood all the fonts in your pc
Combo1.AddItem Screen.Fonts(i)
Next i
End Sub

Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
Returned = SystemParametersInfo(42, 0, Orincm, &H1 Or &H2) 'replace original font
MsgBox "Message & Caption Font Replaced to " & StrConv(Orincm.lfCaptionFont.lfFaceName, vbUnicode), vbOKOnly, "Amit"

End Sub

Private Sub mnuExit_Click()
Returned = SystemParametersInfo(42, 0, Orincm, &H1 Or &H2) 'replace original font
MsgBox "Message & Caption Font Replaced to " & StrConv(Orincm.lfCaptionFont.lfFaceName, vbUnicode), vbOKOnly, "Amit"
End

End Sub

Change Size Font In Flexgrid
Hi

How can I to change size font from flexgrid, via Code ?

Please post a example


tks

Help Me To Change The Font Size Of My POS Printer
Hello forum,
I have a TP-100 dotmatix pos printer and I'm curruntly print receipt using printer.print method. But when I try to change the font size using printer.fontsize, there is no effect on the print outs. I want to use different sizes of fonts in my POS printer. Is there any way I can do this without using Printer.FontSize.

I also want to know how to display line of text on a Pole Display. If theres anyone to help me that will be a great help. Thank You!

Change The Font Size Of The Menu
Hi All,
How can we change the font size of the menu?
TIA,
kalpana

How Do I Change The Font Size In A RtfText Box?
I give the user a common font dialog and get the font name and size from them, I can then change the font but how do I change the font size?
Here is my code so far:
On Error Resume Next
CommonDialog1.CancelError = True
cdlFont.FontName = rtfText.Font
cdlFont.FontSize = rtfText.Font
cdlFont.FLAGS = cdlCFBoth
cdlFont.ShowFont
If Err.Number = cdlCancel Then
Err.Clear
Exit Sub
Else
rtfText.Font = cdlFont.FontName
End If

Change The Font Size Of The Msgbox
could someone tell me how to change the font size of the msgbox, please.

/CC.

How To Change The Font Size Of Tooltip?
Say, I have a couple of buttons in a form. When mouse moves on the buttons, the tooltip will be shown. Now the font size of tooltips is considered too small. Is there any easy way to change it? Thanks for your inputs.

Change Pop Up Menu Font And Size
How do i change the font and size of
popup menu in Visual Basic

Change Menu Font And Size
How do i change the font and size of menu which , I create
through menu editor in Visual Basic

Change Font Size At Run Time
In VB, how can you change the font size in a picture box dynamically if the scale properties (I mean coordintates) are changed? In other words, how can the font size be increased or decreased in proportion to the scale properties?

Thanks in advance.

Change Font Size Dynamically
In VB, how can you change the font size in a picture box dynamically if the scale properties (I mean coordintates) are changed? In other words, how can the font size be increased or decreased in proportion to the scale properties?

Thanks in advance.

Subclassing A Combobox To Change The Font Size
I've been working on a problem that I describe in this thread and have come to the conclusion that the solution will probably require subclassing the combobox.

What I would like to end up with is something that looks like this when dropped down:


Code:
Topic 1
Item 1
Item 2
Item 3
...
Topic 2
...
I've taken a look at the examples in the code library and tutors corner about subclassing and, while I'm still new at it, I get the concept at least.

I have two questions about the subject however. First, what API would I be using to set the font size and weight (how bold it is)? CreateFont?

Second, and probably more importantly, what steps would be involved in drawing the text to the combobox? For instance, would I have to do something to the rectangle that holds each entry in the combobox and, if so, could someone point me in the right direction?

Thanks for your help.

How To Print In Dos Mode And How To Change Font Size ?
I wish to dos mode printing to print bills, (Creating Text file to print). How can i change font size ?

I saw following codes in sample for printing dos mode. Please explain usage of following codes

Print #1, Chr(27) 'purpose ?
Print #1, Chr(12) 'purpose ?
Print #1, particulars; Spc(17 - Len(CStr(particulars))); ' purpose ?
Print #1, vbCr ?

How can i set paper size ?


Senthil kumar.A

Change Output Text's Font Size
hi all,

i have a problem here.actually im developing a Normalization Tool using Vb 6.0. the main function of this tool is user can draw ERD using drawing toolbar and then this tool will help to narmalized it.for sure,user must input attributes for each entity when drawing ERD.

the entity's name and attribute's name will be appear on the notation of Entity.is it possible if i wan to change the font size of attribute's name?and can give any ideas to do it?

thanks a lots..

Change Font Type && Size In RichTextBox??
How do I change FontName and Font Size in a RichTextBox1 using two ComboBox... ComboBox1 for Font Name, and ComoBox2 for Font Size....Thnx

How To Change The Font Type And Size In Vb Program
Hi,

How can I change the font type and size of a word file in Vb program.

Thanks

James

Change Font Size Of MSChart 1 Values???
hi! i want to know how to change the font size of the values of both the x and y axis of MSChart1 control. I want to make my font smaller because the numbers are too big and they are not readable.

I hope somebody can help me.

Thank you so much!

I Should Know This But, How Do You Change The Default Font Size For A Project?
Hi,
How do you change the default font size for a project?

I've been setting the font property for every text box, frame, label, command button, etc. There's got to be an easier way.

Thanks,
Al.

How Do I Change Font Size When Outputting To Word Pad
How do I change font size when outputting to Word Pad or just a txt file?

thank you

How To Change Font Size On A Single Line
I am using Vb6's standard print object and would like to know how to change the font size in a line of print.

I need to print "123 Welcome 123", on the first line of a page and would like the "123's" to be in a different font size than the "Welcome"

I have experimented with things like

printer.font.size = 20
printer.print Tab(2);"123";font.size=12; Tab(18);"Welcome"; font.size=20; Tab(40); "123"
printer.enddoc

The result is: 123False WelecomeFalse 123 all at size=20, but properly tabed.

I have looked at using the richtextbox also but the code for a WYSISWYG does not appear to be a simple undertaking.

Change Font N Size In Popup Menu
hi folks
am creating one popupmenu using createpopupmenu() API
and also i insert items dynamically using insertmenuitem API
and display using Trackpopupmenu().
My problem is

1)i want to change the background color of popup menu?????
2)Question is i want to change the font size in popup menu ???????
dynamically .
if any body know API or how to change the font size and change the background color in popupmenu ,please help ur friend.

Important:
I don't need menu editor.
i need only popup menu.
expecting a positve reply.
-------------------------------------------------
"HARD WORK NEVER END FAILS"
-------------------------------------------------

How To Change The Font Size Of Menu Items?
I know we may call SetWindowLong to set up a callback function to handle the font size of menu items. But I wander if there is any easier way to achieve that? Thanks for your inputs.

How To Change The Font Size Of The Caption Of A Form?
Actually, I tried to change the font property of the form, but it doesn't change the font size of the caption. Any ideas how to do that? Thanks for your inputs.

Change Font Size Based On Length Of Text
i want it so that when someone enters something into a text box and push a button the font size of the text is decreased until the whole string is in the textbox and not going outside it.
so say someone enters into a text box "hello my name is blah blah blah"
not all of it will be visible because it goes beyond the length of the text box. i want the program to decrease the size of the text "hello my name is blah blah blah" until it fits into the text box. anyone help me out here ?

Change ListBox Width Based On Font Size
I have a ListBox displaying all ASCII characters. I let the user select the font size for the list box, but I would like to width of the ListBox to change based on that font size.

I thought of a cool way to find the width of the widest character in the font:

Have a label named Label1 on the page

VB Code:
...  Label1.AutoSize = True  widest = 0  For i = 33 to 255    Label1.Caption = Chr(i)    If Label1.Width > widest Then      widest = Label1.Width    End If  Next i  ...


EDIT: Submitted too early on accident

Then you could set the width of the ListBox to widest.

Anyway, some characters in Wingdings and such are VERY wide. So I'm not sure that I want the width to compensate for the widest one. I would perfer to make the width of the ListBox based on an average character. I am affraid to just grab the width of a random character using the method above, because it might be too small or too big.

Unless there is a good formula I could use to calculate average character width based just on font size I need a way to get the width of an average character. Any ideas?

How Can I Auto Change Font Size On Drag And Drop To RTB
Greetings

I need a quick solution in correcting someone else's work.

I have a form with two listboxes and a RTB. The font is size 8 and bold in listbox1. It's size 10 and Italic in listbox2. Unfortunatly, The RTB is auto-saved and printed as a report and there is no opportunity to make the text uniform beforehand. Needless to say, the RTB and the printed report looks like crap.

I would like to be able to make the text automatically uniform when the drag is dropped into the RTB. At one point last night, I had it where it would correct before it saved, but even that doesn't work now.

What I really want is to correct this when it GOES INTO the RTB so that it doesn't look so crappy on screen.

Any help is appreciated.

Wendy



[Edited by Wendy Jackson on 09-12-2000 at 12:41 PM]

How To Change The Font Size Of An Output File Converted Into PDF In VB
Hi,
I have a requiremnet in Vb where we will get a text file from one server and it needs to be converted in to PDF format.
There was already some code which will do this.But now my problem is the fontsize in the PDF format was very small and we are not controlling the font size any where in our application.
Now how can I change the font size of the PDF file.Any suggestions will be highly appreciated.
Regards
Saritha.

How To Change The Font Size Of Menu Items And Tooltiptext?
I mean how to do that programmatically without changing any settings. Thank you very much!

Change Font Size In Access 2000 For Label Control
I am creating a custom report. I am using the following code to create labels.

Set ctlLabel = CreateReportControl(frm.Name, acLabel, , _
, "NewLabel" & i, intLabelX, intLabelY, 100, 25)

I can't see to find a way to change the font size for each of the labels that I create. Is there a way to do this or is it even possible?

Thanks for your help,
Remasters

How To Change Font Size Dynamically Through VB CODING In Data Report?
Hi,
How could we change the font size of a label box in datareport through VB CODING?. I tried the following but it shows the error message, "Object does not support this property or method"

DRSalB.Sections("section2").Controls("lblname1").FontSize = 10

Is code has any wrong syntax or there any other alternative methods?

How To Change FONT Size To Match A Fixed Width N Heigth?
here is a sample project..... wat i'm tryin to do is to make a resizable control. this control will contain only a circle (shape) and a label. now how can i set the font sieze of the label so that it nicely fit inside that circle when user resize the control?? (the label caption will b a single character (number) such as 1, 3 etc) when ever the user resizes the control the circle get resized!!

here is how i did it...... but i'm lookin for a batter way to assign the calculate the font size..... is there any way i can get a font size using a given Height n Width??


VB Code:
Private Sub UserControl_Resize()With UserControl    If shpFinger.Height <> .Height Then        .Width = .Height    ElseIf shpFinger.Width <> .Width Then        .Height = .Width    End If    shpFinger.Top = 0    shpFinger.Left = 0    shpFinger.Height = .Height    shpFinger.Width = .Width    lblFinger.Font.Size = shpFinger.Height * 0.035    lblFinger.Top = ((.Height / 2) - (lblFinger.Height / 2))    lblFinger.Left = ((.Width / 2) - (lblFinger.Width / 2)) End WithEnd Sub

Printer Font Size Vs Picturebox/form/font Size
HI Everibody.
Sorry for my bad English

Why the printer object font size is different as in Picturebox or form font size property?

I copyied in a PictureBox all the properties availabe in the printer object (width, height, scalemode, scalewidth, etc, etc) to simulate a printer object, but the font size in the picturebox is always greater therefore printer.currentX & Y does not match picture1.currentX & Y

Now, how can I configure a picturebox that matches perfectly the printer proportion? I need it to make Preview routine

How can I caculate the correct scale for Picture1?

Change The Desktop Font Size (normal, Large, Extra Large)
Hallo,
I’m writing a little application that has to change the screen appearance font size (normal large and extra large) at run-time.
I have already read several posts about how to get the DPI setting back or change it. The problem is how to propagate this change to the system.

Sending a WM_SETTINGCHANGE message with SETNONCLIENTMETRICS
WPARAM affects only the Desktop Icons. The taskbar and start menu are not affected.


Code:

SendMessageTimeout HWND_BROADCAST, _
WM_SETTINGCHANGE, _
SPI_SETNONCLIENTMETRICS, _
0&, _
SMTO_ABORTIFHUNG, _
10000&,
dw_Result




Thanks a lot for helping


James

Detecting The Current Font And Font Size On Various Lines In A Rich Text Box.
I have written an editor that uses a rich text box as the main text area.

The editor allows the user to select a font and font size on the toolbar.

My question is, how does one get the combo box text (for both the font and font size) to display the font or font size for the current line of the current character location?

Meaning, if I were to type in two lines, the first line being Arial 12pt, and the second line being Tahoma 14pt, how would I get the program to display the font and font size in the combo boxes?

I know about SelFont, SelStart and such, but I am not selecting any text. I am merely moving the cursor up or down and need to be able to display the font and font size for where the cursor currently is.

Anyone have any ideas?

I thank you in advance.

Detecting Font And Font Size On Various Lines In A Rich Text Box.
I have written a basic editor that uses fonts and such, however when I select a different line (while entering text into the text area of the rich text box), it doesn't display the font or font size for that particular location.

Does anyone have any ideas where I can look to solve this problem?


I thank you in advance for any information you may be able to share with me.

How To Get The Font Name And Font Size Of Header/footer Text?
Hi Everybody

Simple question.

In one of my procedures, I write the VBA Excel code set the text for headers and footer specifying the font name and font size (code line shown below in part).


Code:
'...
'...
'worksheetName has been previously defined to contain the
'name of the worksheet being handled
fullFilename = ActiveWorkbook.FullName
footerText = fullFilename & "[" & worksheetName & "]"
With ActiveSheet.PageSetup
.LeftFooter = "&""Times New Roman,Regular""&06" & footerText
End With
'...
'...


However, when I try to read the same (header/footer text) using code and assign it to a string variable, it actually includes the VBA code referring to the font name and font size as well. This is what I get (the contents of the string variable is shown below).

&"Times New Roman,Regular"&06H:MSOFFICEMY DOCUMENTSCombined National Monthly ReportTest11.xls[SBU - East]

Have a look at all the text prior to "H:..."

But when you see the header/footer content in pagesetup -> headers/footers, you only see the actual text viz :-

"H:MSOFFICEMY DOCUMENTSCombined National Monthly ReportTest11.xls[SBU - East]"


Is there a way to read this actual text only in to a string variable?


Best regards


Deepak Agarwal

Retain Font Styles When Changing Font Size
March 25, 2008

Re: VB6

Hello, everyone. I searched for over two hours for an answer but didn't find a relevant forum example. I am using a richtextbox for my documentation. I made several simple font features such as font sizes and font styles (bold and underline) to the richtextbox. The problem I have is that after I bolded and underlined some of my document text, if I change my document to a different font size, any text that have been bolded or underlined will be undone, so I have to highlight them and bold or underline them again. Does anyone have any advice or any example code to correct it?

The following is a fragment of code in selecting for fontbold and for changing font size:

If Len(Trim(RichTextBox1.SelText)) > 0 Then' For selecting text
RichTextBox1.SelFontSize = 14
End If
RichTextBox1.SelBold = Not (RichTextBox1.SelBold)' For selecting text for bold
RichTextBox1.Font.Size = 14 ' Font size to the whole document or richtextbox

Any advice or help will be greatly appreciated.

Mydanvue

Changing Font Size And Bold And Font ???
dim Heading as string
Heading = "I want to Make this sentance Bold and bigger"

how would i go about making this variable bold and changing the font and font size.
thankyou

Vb6 - How To Change MDI Form Caption Font I.e. Titlebar Font
How can i change MDI form titlebar text font? i want to use different font than system font, i tried SystemParametersInfo() API function but failed. remember i am a beginner

Font Type && Font Size
Hi,

I was wondering what font type and font size you usually use in your vb projects.
What font size is too small, and what size is too big?
Do you use different fonts in your project? or maybe different font sizes?

As you noticed my question is some kind of a poll, I hope there will be much replies.

Thank you for your time!

OsMo

Web Font Question: Font Size
has anyone by chance tried to figure out a way to convert font point size to html size?

Like FontSize @ 8 = HTML font size 1???


Thanks!

(I have figured out how to change web page settings on the fly...BG color...text color...link color...ONLY for less complex pages)

Font Size Vs Font Selected?
I'm creating the editing toolbar for a Rich Text Box, and am starting work on the Font selector (combo) & Font Size selector (combo) and was wondering: Is the size dependant on the font chosen or can the font be any size the user chooses?

|
+--JDMils
|
+--VB6
+--VB Dot Net
|
+-- Navman GPS Forums @ http://forum.jdmils.com
|

Font Size And Font Color
how do i let the user pick what font and what what color of a font with the common dialog?

CommonDialog Box Font Box - Font Doesn't Change
Hi,
I'm using the ShowFont feature of CommonDialog in VB 6.

I have a Rich text box called RTB1


With comDlg1
.DialogTitle = "Font" 'set the dialog title
.Flags = cdlCFBoth
.ShowFont
End With

RTB1.SelFontName = comDlg1.FontName
RTB1.SelFontSize = comDlg1.FontSize
RTB1.SelBold = comDlg1.FontBold
RTB1.SelItalic = comDlg1.FontItalic
RTB1.SelStrikeThru = comDlg1.FontStrikethru
RTB1.SelUnderline = comDlg1.FontUnderline


When I select a font from the box and hit ok - I don't see the font change in the Rich Text Box (for e.g, the font size) .. I step through the code and the .SetFontName , .SelFontSize etc properties of the Rich Text box are getting set from comDlg1 ... but there're no visible changes to the font..


Appreciate any help - thanks.
Saad

Copyright © 2005-08 www.BigResource.com, All rights reserved