Click here to Skip to main content
15,920,111 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: editing subsequent subitems in a listview Pin
mr_lasseter1-Jul-06 4:20
mr_lasseter1-Jul-06 4:20 
GeneralRe: editing subsequent subitems in a listview Pin
Axel Seitz1-Jul-06 5:23
Axel Seitz1-Jul-06 5:23 
QuestionVS.net Options/Project properties [modified] Pin
bemahesh30-Jun-06 10:58
bemahesh30-Jun-06 10:58 
GeneralRe: VS.net Options/Project properties Pin
User 171649230-Jun-06 11:46
professionalUser 171649230-Jun-06 11:46 
GeneralRe: VS.net Options/Project properties Pin
bemahesh3-Jul-06 5:02
bemahesh3-Jul-06 5:02 
GeneralRe: VS.net Options/Project properties [modified] Pin
bemahesh5-Jul-06 9:17
bemahesh5-Jul-06 9:17 
QuestionRe: VS.net Options/Project properties Pin
bemahesh5-Jul-06 9:36
bemahesh5-Jul-06 9:36 
QuestionScrolling the object in Windows Forms Pin
MAP Tiger30-Jun-06 7:20
MAP Tiger30-Jun-06 7:20 
Hi Guys

I am working on a project which requires me to scroll an object such as "Label" object. Right now I am doing this with the following method:

Declaration:
Dim Pos as integer

Private Sub btnscroll_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnscroll.Click
lblscroll.Left = Me.Width + 1
pos = Me.Width + 1

Timer1.Interval = 100
Timer1.Enabled = True
Timer1.Start()
End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
lblscroll.Left = pos
pos -= 1
End Sub

But the problem is that it flickers and I want it to be smooth. And as the value of the left property of the "Label" cannot be in decimal.

So if anyone of u can help me to scroll the object flicker free then please tell me and also note my email: maptiger@hotmail.com

Thanks anyways.


MAP Tiger
Tiger Softwares

Software Designer and Developer
VB.NET, ASP.NET, VFP
AnswerRe: Scrolling the object in Windows Forms Pin
zacharyshroyer30-Jun-06 9:05
zacharyshroyer30-Jun-06 9:05 
QuestionRe: Scrolling the object in Windows Forms Pin
MAP Tiger30-Jun-06 10:00
MAP Tiger30-Jun-06 10:00 
QuestionGet Hostname Pin
Larry White30-Jun-06 6:12
Larry White30-Jun-06 6:12 
QuestionInfo for CreateObject("Excel.Application") Pin
jayleemaree30-Jun-06 5:05
jayleemaree30-Jun-06 5:05 
QuestionTextbox control bound to binding source? Pin
Rashar30-Jun-06 4:11
Rashar30-Jun-06 4:11 
AnswerRe: Textbox control bound to binding source? Pin
Rashar30-Jun-06 5:15
Rashar30-Jun-06 5:15 
QuestionNeed Some Help with Crystal Reports Pin
Jats_4ru30-Jun-06 2:46
Jats_4ru30-Jun-06 2:46 
AnswerRe: Need Some Help with Crystal Reports Pin
aransiola1-Jul-06 8:59
aransiola1-Jul-06 8:59 
GeneralRe: Need Some Help with Crystal Reports Pin
Jats_4ru2-Jul-06 18:58
Jats_4ru2-Jul-06 18:58 
QuestionBackup and Restore [modified] Pin
sujith3130-Jun-06 1:14
sujith3130-Jun-06 1:14 
QuestionCheckedListBox- How to ignore doubleClick event Pin
vsuganthan29-Jun-06 23:56
vsuganthan29-Jun-06 23:56 
AnswerRe: CheckedListBox- How to ignore doubleClick event Pin
pj1027-Jul-06 2:33
pj1027-Jul-06 2:33 
QuestionUpto what size we can store a data in a file Pin
himuskanhere29-Jun-06 20:18
himuskanhere29-Jun-06 20:18 
AnswerRe: Upto what size we can store a data in a file Pin
Dave Kreskowiak30-Jun-06 4:04
mveDave Kreskowiak30-Jun-06 4:04 
QuestionSocket Permissions Pin
elms29-Jun-06 18:25
elms29-Jun-06 18:25 
AnswerRe: Socket Permissions Pin
Colin Angus Mackay29-Jun-06 21:45
Colin Angus Mackay29-Jun-06 21:45 
AnswerRe: Socket Permissions Pin
Dave Kreskowiak30-Jun-06 3:58
mveDave Kreskowiak30-Jun-06 3:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.