Help with Customized Numeric Keypad in FactoryTalk Se

Join Date
Jul 2007
Location
Kiruna
Posts
600
Hi there,

FactoryTalk SE experts can you help me with this one please.

The SE numeric keypad is horrible and not suited for my application so I made my own on a display.

The numeric keypad is basically just all the numbers on buttons. On each button press I use the Send Keys "x" command to write to the tag.

So when i load the display i pass a tag parameter PIN_NUMBER. On the display I have a numeric display connected to #1.

The problem is the data does not get written to tag PIN_NUMBER (DownloadALL command) unless I place a numeric input on display and click it before I start pressing the numbers. Then it will work.

Any ideas how to get around this, i.e bring the numeric input into focus upon loading of display?
 
I've made a SE numeric popup. I used VBA code to capture different passed parameters. One of tem being the tag I want it to write to.
 
From where I want the popup to appear, usually with touch animation: Display NumberPad /T#1,#2.CVOper,0,100,%,1

Then some of the VBA code in the NumberPad:

Set ParamList = Me.TagParameters
TopicName = ParamList.Item(1)
TagName = ParamList.Item(2)
TagMinValue = ParamList.Item(3)
TagMaxValue = ParamList.Item(4)
TagUnits = ParamList.Item(5)
DecimalPt = ParamList.Item(6)

Then create a taggroup to write to the tag:

Set TagGroup = CreateTagGroup(Me.AreaName, 1000)
TagGroup.Add "::[" & TopicName & "]" & TagName
TagGroup.Active = True
TagsOK = TagGroup.RefreshFromSource(TagsInError)
TextBox1.Value = TagGroup(1).Value
 

Similar Topics

I'm fairly new to Rockwell software, I've had some basic training in the past but nothing too advanced. My company and I use Reliable products for...
Replies
3
Views
43
Hi all I need help on this As in my project used Schneider TM241 controller. Now I want to communicate Elite energy meter with controller by...
Replies
3
Views
107
Hi all, I am having issues accessing my Cimplicity software - the site code changed after re-install and I am no longer able to attain a new key...
Replies
10
Views
131
Good day all! Can someone help me with the procedure to update Beijers E700 firmware? The Panel I am working on is firmware 2.04v and I would...
Replies
1
Views
53
Hi, We have an application that has a device that goes through a reboot (appears un-graceful) What then happens is the MVI module appears to hang...
Replies
0
Views
59
Back
Top Bottom