Click here to Skip to main content
16,010,022 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: From VB to VB.net Pin
Nick Parker14-Jun-03 10:44
protectorNick Parker14-Jun-03 10:44 
GeneralRe: From VB to VB.net Pin
Anonymous14-Jun-03 17:55
Anonymous14-Jun-03 17:55 
GeneralRe: From VB to VB.net Pin
Nick Parker15-Jun-03 1:52
protectorNick Parker15-Jun-03 1:52 
GeneralRe: From VB to VB.net Pin
Jonavis16-Jun-03 5:22
Jonavis16-Jun-03 5:22 
GeneralMoving Multiple Labels Pin
Jm6k13-Jun-03 12:17
Jm6k13-Jun-03 12:17 
GeneralRe: Moving Multiple Labels Pin
dynamic14-Jun-03 0:05
dynamic14-Jun-03 0:05 
GeneralRe: Moving Multiple Labels Pin
Jm6k14-Jun-03 7:33
Jm6k14-Jun-03 7:33 
GeneralRe: Moving Multiple Labels Pin
dynamic14-Jun-03 7:45
dynamic14-Jun-03 7:45 
<br />
    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click<br />
        Dim objLabel As Control<br />
        For Each objLabel In Me.Controls<br />
            If TypeOf objLabel Is Label Then<br />
                If objLabel.Name = "Label" > "0" < "21" Then<br />
                    MoveLabel(objLabel)<br />
                End If<br />
            End If<br />
        Next<br />
    End Sub<br />
<br />
    Public Function MoveLabel(ByVal lbl As Label)<br />
        Dim i As Integer<br />
        Dim j As Integer = lbl.Top<br />
<br />
        For i = 1 To 60<br />
            j = j + +1<br />
            lbl.Top = j<br />
            System.Threading.Thread.Sleep(20)<br />
        Next<br />
    End Function<br />

that moves 20 label 1 at a time in a smooth scroll , you can change the time of scroll on the sleep section.Smile | :)


switch(twinsOnWay).
  {
  case ("twins on the way"):
//not
long now

    MessageBox.Show("for mr and mrs dynamic","twins on the way");
  break;
}



GeneralRe: Moving Multiple Labels Pin
Jm6k14-Jun-03 7:58
Jm6k14-Jun-03 7:58 
GeneralRe: Moving Multiple Labels Pin
14-Jun-03 13:11
suss14-Jun-03 13:11 
GeneralSounds and Music Pin
TGWDNGHN13-Jun-03 10:43
TGWDNGHN13-Jun-03 10:43 
GeneralRe: Sounds and Music Pin
J. Dunlap13-Jun-03 10:47
J. Dunlap13-Jun-03 10:47 
GeneralRe: Sounds and Music Pin
dynamic14-Jun-03 14:26
dynamic14-Jun-03 14:26 
Generalaccess denied Pin
kristina_c13-Jun-03 7:44
kristina_c13-Jun-03 7:44 
Generaldatagrids Pin
kristina_c13-Jun-03 3:29
kristina_c13-Jun-03 3:29 
GeneralRe: datagrids Pin
GrindAZ13-Jun-03 5:38
GrindAZ13-Jun-03 5:38 
GeneralRe: datagrids Pin
kristina_c13-Jun-03 7:43
kristina_c13-Jun-03 7:43 
GeneralRe: datagrids Pin
GrindAZ13-Jun-03 7:49
GrindAZ13-Jun-03 7:49 
GeneralRe: datagrids Pin
kristina_c16-Jun-03 7:45
kristina_c16-Jun-03 7:45 
GeneralRe: datagrids Pin
GrindAZ16-Jun-03 7:50
GrindAZ16-Jun-03 7:50 
GeneralEnumerate Control Properties in .Net Pin
Chubby Arse13-Jun-03 0:31
Chubby Arse13-Jun-03 0:31 
GeneralRe: Enumerate Control Properties in .Net Pin
J. Dunlap13-Jun-03 7:28
J. Dunlap13-Jun-03 7:28 
GeneralPrint on next page In VB.NET Pin
rain117812-Jun-03 17:30
rain117812-Jun-03 17:30 
GeneralRe: Print on next page In VB.NET Pin
code_gopher20-Jun-03 10:12
code_gopher20-Jun-03 10:12 
GeneralSound Question... Pin
GSMe12-Jun-03 16:35
GSMe12-Jun-03 16:35 

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.