|
-
Feb 15th, 2003, 12:33 AM
#1
Thread Starter
Addicted Member
Falashing and fore font
Hi all
1- Is it possible to change fore font on the msgbox?
2 - Is it possible to make the fore font on the msgbox flashing?
Any one can help please ?
Many thanks in advance
vbnt
-
Feb 15th, 2003, 12:57 AM
#2
PowerPoster
you can do pretty much anything you want to the msgbox control using subclassing and API calls
-
Feb 15th, 2003, 01:00 AM
#3
Thread Starter
Addicted Member
Many thanks phinds
Can you post example please ?
Thank you
-
Feb 15th, 2003, 01:05 AM
#4
The picture isn't missing
uhh.... if you want flashing then you are better off making your own message box with forms and a timer or something similar that will flash the text.
Remember, if someone's post was not helpful, you can always rate their post negatively  .
-
Feb 15th, 2003, 01:17 AM
#5
PowerPoster
Can you post example please ?
poke around on planetsourcecode or any of several other sites referenced via the link down below my name
-
Feb 15th, 2003, 01:30 AM
#6
Show your Form(MessageBox) as 'Modal':
VB Code:
Option Explicit
Private Sub Form_Load()
With Label1
.ForeColor = vbBlue
.FontName = "Arial"
.FontSize = 12
.Caption = "This is a test"
End With
Timer1.Interval = 500
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
If Label1.ForeColor = vbRed Then
Label1.ForeColor = vbBlue
Else
Label1.ForeColor = vbRed
End If
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|