Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Incresing the font size on a popup window

Status
Not open for further replies.

kachbo1

IS-IT--Management
Nov 16, 2004
40
0
0
GB
Hi,

I am using the following script which produces "The nos of days etc" at logon.

I would like to increase the font size or make the popup box larger.

Can anyone help.

Using the following script:

moveDate = CDate("26/11/2003")
Msgbox DiffADate(moveDate)

Function DiffADate(theDate)
DiffADate = "Days from today: " & DateDiff("d", Now, theDate)
End Function


Kachbo
 
The font is not configurable within a popup. You should look at creating an HTA so you can use HTML that will allow you to specify size.

I hope you find this post helpful.

Regards,

Mark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top