我想创建与每个字母出现之间存在一定的时间由字母在Visual Studio中的效果,其中的文字不是一次全部显示在屏幕上,但信。 我打算开个不同的模块,将在此代码从我的主模块。 有任何想法吗? 这里是我的代码至今。 我想提出一个命令提示符。
Public Sub Main()
Dim line As String
Console.Title = "Command"
Console.WriteLine("Microsoft Windows [Version 6.3.9600]")
Console.WriteLine("<c> 2013 Microsoft Corporation. All right reserved.")
Console.WriteLine(" ")
Do
Console.Write("C:\Users\Bob>")
Line = Console.ReadLine()
If line = "help" Then
Console.WriteLine("hello world")
Console.WriteLine(" ")
ElseIf line = "help1" Then
Console.WriteLine("hello again, world!")
Console.WriteLine(" ")
ElseIf line = "exit" Then
Environment.Exit(0)
Else
Console.WriteLine("Command not found.")
Console.WriteLine(" ")
End If
Loop While line IsNot Nothing
End Sub