Search found 2 matches

by ebussa
Mon Mar 16, 2020 8:32 am
Forum: Developers
Topic: Command line login
Replies: 3
Views: 12917

Re: Command line login

Thanks for the tip Chris. Unfortunately, using the snippet you provided, the program still enters the manual logon dialog. After keeping all of my parameters and adding the PassHash parameter as you suggested, it is now passing the first condition below, but fails on the second one (`!Programs.Using...
by ebussa
Fri Mar 13, 2020 11:00 am
Forum: Developers
Topic: Command line login
Replies: 3
Views: 12917

Command line login

I am attempting to write a program that opens the Perio Chart form automatically. My program is very short: class Program { [STAThread] static void Main(string[] args) { var odArgs = new string[] { "UserName=admin", "OdPassword=od123", "PatNum=11" }; var start = new FormOpenDental(odArgs); start.Sho...