I am pretty good googler but I have hit a road block this time. I created a C# WinForm app that opens the application ICBusinessManager's login window. What I can't figure out is how to make my winform log in automatically. The IC app's login window has a 'Log on' and a 'Cancel' button. I am fairly new to development(currently self-teaching) and I apologize in advance if I am not clear. Please ask if you need me to be more specific.
private void roboDialerBtn_Click(object sender, EventArgs e)
{
Process roboDialer = new Process();
roboDialer.StartInfo.FileName = "ICBusinessManager.exe";
roboDialer.StartInfo.Arguments = "ProcessStart.cs";
roboDialer.Start();
}