# FP SDK - NumPad

**URL:** https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220
**Category:** Developer Tools
**Created:** [December 1, 2009, 8:55am UTC](https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220 "2009-12-01T08:55:25Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![system](https://dub1.discourse-cdn.com/flex005/user_avatar/tech-community.robotics.abb.com/system/32/6_2.png) [@system](https://tech-community.robotics.abb.com/u/system)
#### Post date: [December 1, 2009, 8:55am UTC](https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220/1 "2009-12-01T08:55:25Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://dub1.discourse-cdn.com/flex005/user_avatar/tech-community.robotics.abb.com/system/32/6_2.png) [@system](https://tech-community.robotics.abb.com/u/system)
#### Post date: [December 4, 2009, 8:32am UTC](https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220/2 "2009-12-04T08:32:58Z")

</div>

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

---

<div class="post-metadata">

### Author: ![bidipow](https://avatars.discourse-cdn.com/v4/letter/b/e8c25b/32.png) [@bidipow](https://tech-community.robotics.abb.com/u/bidipow)
#### Post date: [April 20, 2010, 2:16pm UTC](https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220/3 "2010-04-20T14:16:40Z")

</div>

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

[VS2008 + FlexPendant]

---

<div class="post-metadata">

### Author: ![7seven](https://avatars.discourse-cdn.com/v4/letter/7/e68b1a/32.png) [@7seven](https://tech-community.robotics.abb.com/u/7seven)
#### Post date: [August 10, 2011, 11:41am UTC](https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220/4 "2011-08-10T11:41:21Z")

</div>

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?

---

<div class="post-metadata">

### Author: ![ECapitanio](https://avatars.discourse-cdn.com/v4/letter/e/ec9cab/32.png) [@ECapitanio](https://tech-community.robotics.abb.com/u/ECapitanio)
#### Post date: [September 29, 2011, 4:11pm UTC](https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220/5 "2011-09-29T16:11:33Z")

</div>

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??

---

<div class="post-metadata">

### Author: ![chaos](https://avatars.discourse-cdn.com/v4/letter/c/9d8465/32.png) [@chaos](https://tech-community.robotics.abb.com/u/chaos)
#### Post date: [October 3, 2011, 12:35pm UTC](https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220/6 "2011-10-03T12:35:25Z")

</div>

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

---

<div class="post-metadata">

### Author: ![ECapitanio](https://avatars.discourse-cdn.com/v4/letter/e/ec9cab/32.png) [@ECapitanio](https://tech-community.robotics.abb.com/u/ECapitanio)
#### Post date: [October 7, 2011, 9:06am UTC](https://tech-community.robotics.abb.com/t/fp-sdk-numpad/3220/7 "2011-10-07T09:06:58Z")

</div>

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!
