Hi,pete
When I put 1 to offset3114 and 70193(EVT_CDU_L_1 , 69632 + 561,e.g.) to 3110,then white FSUIPCConnection.Process();(I use C# and FSUIPC Client DLL for .NET of course),the pmdg CDU just show me "1" once,and then I push the button again,no response.Here s the program:
... ...
private Offset<int> test1 = new Offset<int>(0x3110);
private Offset<int> test2 = new Offset<int>(0x3114);
... ...
private void button1_Click(object sender, EventArgs e)
{test2.Value=1;
test1.Value=70193;
FSUIPCConnection.Process();}
... ...
But,when I write the program like below,the CDU can display the number every time I press the button,BUT,the number isn t "1",it becomes "11",every time show me twice !
private void button1_Click(object sender, EventArgs e)
{test2.Value=1;
test1.Value=70193;
FSUIPCConnection.Process();
test2.Value=0;
test1.Value=70193;
FSUIPCConnection.Process();}
Please,help me to solve this problem.pmdg,fsuipc,c#client,which one I used in a wrong way,Thanks!
Best regards from far east