Ok, the problem is I never used the Sendkeys thing. I have code like this:
You see, when i type something in the same line as" >>> " that and after I press enter, nothing happend. I want to get that input of user. How?
VB Code:
Imports System.Windows.Forms Module Module1 Sub Main() Dim userInput As String = Nothing Console.Title = "Tracker v1.0" Console.BackgroundColor = ConsoleColor.Black Console.ForegroundColor = ConsoleColor.Yellow Console.Clear() Console.WriteLine() Console.WriteLine("Type ""help()"" to get more informations. ") Console.WriteLine("Type ""clear()"" to clear application.") Console.WriteLine("") SendKeys.SendWait(">>>") userInput = Console.ReadLine() If userInput = "clear()" Then Console.Clear() End If Console.ReadLine() End Sub End Module