H Herfried K. Wagner [MVP] Jun 24, 2005 #3 Michael D. Ober said: Yes - it's a property of the console class. Click to expand... .... in .NET 2.0 there will be a 'Title' property, but this property does not exist in .NET 1.0/1.1.
Michael D. Ober said: Yes - it's a property of the console class. Click to expand... .... in .NET 2.0 there will be a 'Title' property, but this property does not exist in .NET 1.0/1.1.
T Tom Shelton Jun 24, 2005 #4 Is it possible to set the window title of a console app? Click to expand... Pre-2.0... Declare Auto Function SetConsoleTitle Lib "Kernel32" _ (ByVal lpConsoleTitle As String) As Boolean 2.0+ Console.Title HTH
Is it possible to set the window title of a console app? Click to expand... Pre-2.0... Declare Auto Function SetConsoleTitle Lib "Kernel32" _ (ByVal lpConsoleTitle As String) As Boolean 2.0+ Console.Title HTH
M Martin Williams Jun 24, 2005 #5 Thanks, that's just what I was looking for. Tom Shelton said: Pre-2.0... Declare Auto Function SetConsoleTitle Lib "Kernel32" _ (ByVal lpConsoleTitle As String) As Boolean 2.0+ Console.Title HTH Click to expand...
Thanks, that's just what I was looking for. Tom Shelton said: Pre-2.0... Declare Auto Function SetConsoleTitle Lib "Kernel32" _ (ByVal lpConsoleTitle As String) As Boolean 2.0+ Console.Title HTH Click to expand...