views:

88

answers:

1

I have a dialog in an InstallScript Msi project (2008) and I'm trying to set some text in a label to bold, but can't seem to figure it out. I tried prefixing with {&STYLE_BOLD} (which is a predefined style), but it didn't help. Does anyone know how to do this?

Thanks!

+1  A: 

InstallScript MSI dialogs use InstallScript's support instead of MSI's. Thus you will need to use CtrlSetFont. See the example in the help, or in the online help.

Michael Urman
Thanks! That worked! For future reference I'll add you need to call it AFTER calling WaitOnDialog...
Tamar

related questions