USUÁRIO:      SENHA:        SALVAR LOGIN ?    Adicione o VBWEB na sua lista de favoritos   Fale conosco 

 

  Fórum

  Visual Basic
Voltar
Autor Assunto:  Controle com rolagem vertical de texto ?
Cid
SÃO PAULO
SP - BRASIL
Postada em 17/07/2004 16:12 hs            
Gostaria de saber o nome desse controle que tem em páginas da internet que fica rolando o texto na vertical e se é possível usá-lo no VB 6.0.
Obrigado a todos.
     
|-tom-|
Pontos: 2843
CATANDUVA
SP - BRASIL
Postada em 18/07/2004 02:13 hs            
olha tem um jeito de deixar o texto rolando no Vb sim , vc faz esse seguinte codigo usando um textBox
 
 
*Global do Form
Public Function ShowMessage()

Static MsgPtr As Integer
Static MyText As String

If Len(MyText) = 0 Then
MsgPtr = 1
MyText = "Rolando texto numa Picture Box! "
End If

Picture1.Cls
Picture1.Print Mid$(MyText, MsgPtr); MyText;
MsgPtr = MsgPtr + 1

If MsgPtr > Len(MyText) Then
MsgPtr = 1
End If

End Function

*Coloque um objeto Picture Box
*Coloque um objeto Timer (Interval=100)

Private Sub Timer1_Timer()

ShowMessage

End Sub

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------

 tom -Catanduva/SP

Analista Sistemas - Visual Basic 6 - VB.NET

"Confiai perpetuamente no Senhor, porque o Senhor Deus é uma Rocha Eterna"

                                                                                              Isaías 26:4  Emoções 

 

     
Cid
não registrado
Postada em 18/07/2004 11:31 hs   
Valeu, tom!
 
Só que com esse código, o texto rola na horizontal e eu quero na vertical.
 
Ah! O nome do controle é marquee.
 
consegui algo parecido usando 5 label's uma acima da outra e um timer. Com o seguinte código:
 
Private Sub Timer1_Timer()
Label1.Caption = Label2.Caption
Label2.Caption = Label3.Caption
Label3.Caption = Label4.Caption
Label4.Caption = Label5.Caption
Label5.Caption = Label1.Caption
End Sub
O texto fica subindo, só que não fica tão bom. Ficaria melhor se eu conseguisse rolar o texto na picture na vertical.
 
Se alguém souber como fazer isso, dá um toque aí.
 
Valeu!
     
Página(s): 1/1    


Seu Nome:

Seu eMail:

ALTERAR PARA MODO HTML
Mensagem:

[:)] = 
[:P] = 
[:(] = 
[;)] = 

HTML DESLIGADO

     
 VOLTAR

  



CyberWEB Network Ltda.    © Copyright 2000-2025   -   Todos os direitos reservados.
Powered by HostingZone - A melhor hospedagem para seu site
Topo da página