Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have this below mentioned code and I want to increase the font size of "Row No:7" in the msgbox can any one guide me on this. If ActiveCell.Value = "" Then MsgBox "There is no data in sheet to transfer or else the Row No:7 is Blank", vbInformation, Title:="MESSAGE" Exit Sub End If Regards Heera |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can't. Best bed would be to either use a userform in which you can
control the font of text boxes, or maybe isolate the line like: MsgBox "There is no data in sheet to transfer or else the " & chr(10) & chr(10) & "Row No:7" & chr(10) & chr(10) & "is Blank", vbInformation, Title:="MESSAGE" "Heera" wrote in message ... Hi, I have this below mentioned code and I want to increase the font size of "Row No:7" in the msgbox can any one guide me on this. If ActiveCell.Value = "" Then MsgBox "There is no data in sheet to transfer or else the Row No:7 is Blank", vbInformation, Title:="MESSAGE" Exit Sub End If Regards Heera |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks bob
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Increase font size in Drop-Down List | Excel Discussion (Misc queries) | |||
Increase font size in a check box | Excel Discussion (Misc queries) | |||
Increase font size in a check box | Excel Discussion (Misc queries) | |||
Number in cell increase with increase in font size. | Excel Discussion (Misc queries) | |||
Increase font size within my formula bar | Excel Programming |