Page 1 of 1

PB Automation

PostPosted: Mon Jan 28, 2019 1:19 pm
by parkinstein
Hello, colleagues. There is a problem: I am trying to send text to TextInput as follows,
Code: Select all
public void SendTextToPandora(string text)
        {
            try
            {
                var pb = PBAuto.ConnectTcp(Properties.Settings.Default.PM_address, 0);
                pb.SetText(10, 3, text);
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
                throw;
            }
        }


but the text is cut slightly less than half (regardless of the size of the text). Has anyone solved this problem?
I use pbauto - csharp from codeproject.
Thank you in аdvance for your help.