Im trying to make a controle app what would look like this.
( in the console )
>> Starting up...
>> Loading...
>> Done
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> Enter correct password to continue: [TEXT]
i need to put a password instead of [TEXT]
If it could maby a passchar = *
Can you make the >> Starting up... Dots make flash to ?
Like CA loading screen
Something like this is what i have got now
Code:
Module Module1
Sub main()
Dim Data1 As String, Data2 As Integer
Console.ForegroundColor = ConsoleColor.White
Console.WriteLine(" >> Client started...")
Console.WriteLine(" >> Loading database...")
Console.WriteLine(" ")
Console.WriteLine(" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ")
Console.WriteLine(" ")
Console.WriteLine(" >> Enter correct password to continue")
Console.ReadLine()
Data1 = Console.ReadLine
If Data1 = My.Settings.password Then
Data()
End If
End Sub
Sub data()
End Sub
End Module