ProClub Owns

Would you like to react to this message? Create an account in a few clicks or log in to continue.

Free Cheats for multiple games

ALL [Pro-Club] Public Cheats are updated as of 01/16/17 have fun thanks for stopping by make sure to check out are new site www.proclubownz.com for all your updated news.

Log in

I forgot my password

Top posting users this week

No user

2 posters

    Simple typewriter effect (VB.NET Console Application)

    tinkkis5
    tinkkis5


    Posts : 135
    Join date : 2013-04-23

    Simple typewriter effect (VB.NET Console Application) Empty Simple typewriter effect (VB.NET Console Application)

    Post by tinkkis5 Mon Jun 23, 2014 8:01 am

    Copy paste this entire code to your Module1.vb and debug it.
    Code:
    Imports System.Threading
    Module Module1
    Public str As String
    Public count As Integer
    Sub Main()
    count = 1
    str = "http://www.proclubowns.forumotion.net"
    Do
    Console.Clear()
    Console.WriteLine(str.Substring(0, count))
    Thread.Sleep(100)
    count = count + 1
    If count = str.Length Then
    Console.Clear()
    Console.WriteLine(str.Substring(0, str.Length))
    Exit Do
    End If
    Loop
    Thread.Sleep(1000)
    End Sub
    End Module
    Mini-Moof
    Mini-Moof
    Admin


    Posts : 2017
    Join date : 2009-06-26

    Simple typewriter effect (VB.NET Console Application) Empty Re: Simple typewriter effect (VB.NET Console Application)

    Post by Mini-Moof Mon Jun 23, 2014 12:06 pm

    Uh what ^^ Screenshot or anything? Or GIF

      Current date/time is Wed May 15, 2024 7:35 pm