With earlier versions of Ultra VNC I designed a VB utility to pass the password and the IP address from the VB to the launcher utility using the following code.
process.StartInfo.Filename = "c:\Program Files\UltraVNC\vncviewer.exe"
process.StartInfo.Arguments= ("password " & txtBPass.Text & " " & IP.ToString)
process.Start()
This code allowed me to enter the password into the launcher and it would pull the IP address from my DNS server and automatically connect to one or more terminals
With the new launcer version I cannot figure out how to pass both the username and the password
I would love some suggestions