How can I change the Register.Console.Speed
I like to use console.writeline @ 9600
Register.Console.Speed changing
-
- Posts: 5
- Joined: 11 October 2007, 2:23 AM
- Location: Belgium
As specified in the Language Reference Manual, Register.Console.Speed is read only. The code you need is as follows:I'm not able to test this code right now but it should work.
Code: Select all
Sub Main()
' COM1 is open at the beginning of a program so it needs to be
' closed before changing the baud rate
Call CloseCom(1, 0, 0)
Call OpenCom(1, 9600, Register.RxQueue, Register.TxQueue)
Debug.Print CStr(Register.Console.Speed)
End Sub
Mike Perks
Re: Register.Console.Speed changing
It is important to note that the "sign on" message will always be output when the speed for Com1 is still at the default speed of 19.2K. If you have a terminal connected that is configured for 9600, the sign on message won't be received correctly. You may suppress the sign on message by placing the directive shown below in the first module listed in your project.petervanlievenoogen wrote:I like to use console.writeline @ 9600
Code: Select all
Option SignOn Off
You can also set the flag explicitly in your code as illustrated below. Changing the flag in this manner will not have an effect until the next time the application runs.
Register.SignOn = False
- Don Kinzer