FP SDK - NumPad

Hi!

I’m trying to implement a numpad in a flexpendant application, but since I’m quite new to

this I wonder how to implement it? The manual just mention something about connecting the pad to a textbox?

BR

B Axel

I gave up and used a CompactAlphaPad instead, but still I’m curious how to use the NumPad.
// Axel

Someone know how to use it ?
I can’t see the numpad on my form !!

[VS2008 + FlexPendant]

Got the same problem, can’t see the NumPad on the form.

In an older version i used two years ago(I think RAB 5.11) it works …

Anyone info’s about that?

Got the same problem..
How to use NumPad control??? there are too few documentation about it in the FP SDK (v5.14).
It’s can be used only with TextBox target??

I have used the NumPad function till v5.13 and it worked in the following way:

Declaration of the NumPad - in my case NumPad_Joints and then I connected
the target of a TexBox (see last command) with the NumPad
this.numPad_Joints = new ABB.Robotics.Tps.Windows.Forms.NumPad();

this.numPad_Joints.BackColor = System.Drawing.Color.White;

this.numPad_Joints.EnablePoint = true;

this.numPad_Joints.EnableSign = true;

this.numPad_Joints.ExponentFormatButton = false;

this.numPad_Joints.Location = new System.Drawing.Point(331, 29);

this.numPad_Joints.PointText = “.”;

this.numPad_Joints.Size = new System.Drawing.Size(191, 191);

this.numPad_Joints.TabIndex = 33;

this.numPad_Joints.Visible = true;

numPad_Joints.Show();

numPad_Joints.BringToFront();

this.numPad_Joints.Target = this.tb_NumPad;

Maybe it helps you.

BR/
Chaos

Tnx Chaos about your help!!
but I have another question: How I can do it as screenshot?? (is “Program Data” edit num value).
If the numpad target can be only a texbox, how we can do it about listView specific cell??? maybe is a textbox overlay value cell while numpad control is shown?? some ideas???

bye Ema!