ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Collect User Input (https://www.excelbanter.com/excel-programming/448300-collect-user-input.html)

JCO

Collect User Input
 
Can VB programing within Excel, take the user's Input.

Can a macro run and get the Font Name and Font Size? If so, how is this
done?
Thanks


Howard

Collect User Input
 
On Saturday, March 2, 2013 3:24:10 PM UTC-8, JCO wrote:
Can VB programing within Excel, take the user's Input.



Can a macro run and get the Font Name and Font Size? If so, how is this

done?

Thanks

Hi JCO,

Try this.

Option Explicit

Sub FontIt()
Dim i As Variant, j As Variant
i = Range("A1").Font.Size
j = Range("A1").Font.Name
MsgBox i & " " & j
End Sub

Regards,
Howard

GS[_2_]

Collect User Input
 
JCO wrote on 02/03/2013 :
Can VB programing within Excel, take the user's Input.

Can a macro run and get the Font Name and Font Size? If so, how is
this done?
Thanks


Why do you need to prompt the user for this? Is their some reason why
the user can't just select these from the toolbar control[s]?

Otherwise, you'd need to use the VB6 Common Dialog control, which would
have to be distributed with your VBA project. A VB6 developer license
is required to use/distribute the control in your projects.

Perhaps you can google to see if someone has written a pure VB font
picker that you can modify to work in a VBA userform. Or maybe there's
a DLL available!

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion




All times are GMT +1. The time now is 01:25 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com