Scrolling Text
Hi Ariel Z
Thank you for the help. Seems like your source code scrolls txt on frm header. I need to scroll txt on the frm itself.
From the bottom of frm to the top.
I am only able to add this bit of source code, this will scroll text on the MainForm. Bottom to Top using a Label1.
Example using vb:
Private Const HWND_TOPMOST = -1
Private Const HWND_NOTOPMOST = -2
Private Sub Form_Load()
SetWindowPos hwnd, _
HWND_TOPMOST, 0, 0, 0, 0, _
SWP_NOMOVE + SWP_NOSIZE
Label1.Caption = "Copyright (c) 2008 , WMC Allrights Reserved." & _
vbCrLf & "Version 4.05.2006" & _
vbCrLf & "Product ID : AS-EP-VER-4.0" & vbCrLf & vbCrLf & "Created By" & _
vbCrLf & "WMC Software" & _
vbCrLf & vbCrLf & "Star Writer Light 4.0" & _
vbCrLf & "This software is freeware or shareware. You may use it" & _
vbCrLf & "free of charge as it fits your own projects but may not" & _
vbCrLf & "sell the original product. If you " & _
vbCrLf & "decide to distribute these files you must include this" & _
vbCrLf & "disclaimer and all the original copyright notices from the" & _
vbCrLf & "original owner. WMC takes no responsibility how" & _
vbCrLf & "you use this program." & _
vbCrLf & _
vbCrLf & vbCrLf & "Features Include" & _
vbCrLf & "Create RTF, TXT, DOC, etc.. Files, Encrypt & Decrypt, " & _
vbCrLf & "Advanced Find, " & _
vbCrLf & "Remove and Replace, Insert Current System Date & Time" & _
vbCrLf & "Embeded Files, Text Formating (Bold, Italic, Underline," & _
vbCrLf & "Strike, Bullets, Alignmets, Fore Color, Back Color, Fonts and Etc..)" & _
vbCrLf & "Open Other Applications (MS-Paint , MS-Calculator)." & _
vbCrLf & vbCrLf & "For more information Please visit:" & _
vbCrLf & "http://Under Construction" & _
vbCrLf & "E-mail: ???" & _
vbCrLf & _
vbCrLf & vbCrLf & "--- Thank you for using this Software ---"
End Sub
Private Sub Timer1_Timer()
Label1.Top = Label1.Top - 5
'If Label1.Top < Picture1.Top - Label1.Height Then Label1.Top = 735
End Sub
Thanks
Best regards
WmC