"text loading" effect - Toturial

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
44 posts Page 2 of 5
User avatar
Adroxxx
Member
Member
Posts: 26
Joined: Sat Aug 21, 2010 1:46 pm

Doesnt work. It shows me an error. Can someone put in the code which have to be used?
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

Re: "text loading" effect - Toturial
Codex
Adroxxx wrote:
Doesnt work. It shows me an error. Can someone put in the code which have to be used?
if you mean a example, then Noob.exe has made one, its in his post...
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
User avatar
MrAksel
C# Coder
C# Coder
Posts: 1758
Joined: Fri Mar 26, 2010 12:27 pm

I really like it even as i don't need it
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;


Over 30 projects with source code!
Please give reputation to helpful members!

Image
Image
User avatar
Noob.exe
Top Poster
Top Poster
Posts: 233
Joined: Wed Mar 31, 2010 6:42 pm

i guess something like that would make text fade out...
...
Code: Select all
    Dim a As Integer = 0
    Dim textl As Integer
timer1... interval = 20 (change at will)
Code: Select all
textl = TextBox1.TextLength
        If a < Textl Then
            TextBox1.Text = TextBox1.Text.Remove(a, 1)
            a += 1
            TextBox1.Text = " " & TextBox1.Text
        Else
            Timer1.Stop()
            a = 0
            TextBox1.Clear()
        End If
looks kinda strange, because charts are often wider that " " but its something :|
What should I write so that the Text is gonna repeated again. With your code it just loads 1 time and then finish. I want it to do this all the time until program is closed. ^^
wanted this? (just combine 2 codes)
<3 VB & Python
User avatar
Adroxxx
Member
Member
Posts: 26
Joined: Sat Aug 21, 2010 1:46 pm

Re: "text loading" effect - Toturial
Adroxxx
No I want it like this

http://de.tinypic.com/r/5y6q6w/7

But after 1 time loading it doesnt do anything. I want it to load all the time. Always repeat again and again.
User avatar
Noob.exe
Top Poster
Top Poster
Posts: 233
Joined: Wed Mar 31, 2010 6:42 pm

then put code in do-loop and tel backgroundworker do its job
<3 VB & Python
User avatar
Adroxxx
Member
Member
Posts: 26
Joined: Sat Aug 21, 2010 1:46 pm

Re: "text loading" effect - Toturial
Adroxxx
Noob.exe wrote:
tel backgroundworker do its job
how do I do this?
sry I am noob
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

Re: "text loading" effect - Toturial
Axel
Noob.exe wrote:
then put code in do-loop and tel backgroundworker do its job
backgroundworker is old and stupid

Subroutines is my way :D

just do
Code: Select all
Sub DoYourWork
'What you need to do in code
me.backcolor = black
msgbox("lololol")
end sub
http://vagex.com/?ref=25000
User avatar
Noob.exe
Top Poster
Top Poster
Posts: 233
Joined: Wed Mar 31, 2010 6:42 pm

YourSocksRoxx wrote:
Noob.exe wrote:
then put code in do-loop and tel backgroundworker do its job
backgroundworker is old and stupid

Subroutines is my way :D

just do
Code: Select all
Sub DoYourWork
'What you need to do in code
me.backcolor = black
msgbox("lololol")
end sub
thanks , didnt know that :)
<3 VB & Python
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

Re: "text loading" effect - Toturial
Axel
Noob.exe wrote:
YourSocksRoxx wrote:
Noob.exe wrote:
then put code in do-loop and tel backgroundworker do its job
backgroundworker is old and stupid

Subroutines is my way :D

just do
Code: Select all
Sub DoYourWork
'What you need to do in code
me.backcolor = black
msgbox("lololol")
end sub
thanks , didnt know that :)
lol np dude :D
http://vagex.com/?ref=25000
44 posts Page 2 of 5
Return to “Tutorials”