martin2k

Google
 
Web www.martin2k.co.uk

How to Scroll a Form's Title Bar Text by MUZMMAL YASEEN


 

Home

Read and add posts to the Visual Basic 6.0 Forums

Download some of my programs and OCXs

Read the Tips here

The old style forum is still available here

Contact


 

Beginner Tip

1)Take A Timer Control And Set The Interval To 150
2)Gernal Declaration Code type
3)Form load Code Type

Option Explicit
Dim
t As Integer
Dim
y As Integer
Dim
dada As String

Private Sub Form_Load()
dada = Form1.Caption
t = Len(dada)
y = 1
End Sub

Private Sub Timer1_Timer()
Form1.Caption = Mid$(dada, y, t)
y = y + 0.8
If y > t Then
    y = 1
End If
End Sub


Please fill in the below form if you have any comments or additional information you want to add about the above information.  If you have any Visual Basic 6.0 questions, please visit the Forum.

PLEASE NOTE: Questions sent via this form cannot be answered.  Please ask questions at the Forum.

* - Mandatory

*Name: E-mail:

*Comments:

*Please type the following code (your comment will not be accepted without it):

PLEASE NOTE: Questions sent via this form cannot be answered.  Please ask questions at the Forum.


Martin Allen 1999 - 2009.  Last updated Sunday 01 November 2009 01:41:15 PM -0000.