04-20-2015, 10:21 PM
I am stuck at how to read the motor status. I am using VSE 2010 C# to develop a simple interface for my customer. I would like to seek for your advice regarding my problem. I am really stuck on how to read the motor status.
I am suing this method:
DEVMSNONTURBO t = new DEVMSNONTURBO();
bool pSucces;
if (bDeviceOpen)
{
pmacdoc.GetNTMotorStatusEx(dwDevice, 1, ref t, out pSucces);
textBox1.Text = t.msnt_in_position_true.ToString();
}
What I want is I want to read the Position complete status and display it in textbox as 0 or 1.
The above program do compile but I can only read 0 all the time. I am really stuck at this.
I am new to C# and this might a minor problem. I am really thankful and appreciate if you guy could give some advice to solve this problem.
I am suing this method:
DEVMSNONTURBO t = new DEVMSNONTURBO();
bool pSucces;
if (bDeviceOpen)
{
pmacdoc.GetNTMotorStatusEx(dwDevice, 1, ref t, out pSucces);
textBox1.Text = t.msnt_in_position_true.ToString();
}
What I want is I want to read the Position complete status and display it in textbox as 0 or 1.
The above program do compile but I can only read 0 all the time. I am really stuck at this.
I am new to C# and this might a minor problem. I am really thankful and appreciate if you guy could give some advice to solve this problem.