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

Hello everyone. Could someone please assist me? I am using Citect version 7.2 service pack 5 and Windows 7. I have created a project...
Replies
0
Views
95
Hello, I'm not sure if anyone can help me. I made a big mistake by pulling out the battery to swap it with the machine turned off, and as a...
Replies
0
Views
63
I've adjusted the IP of the Panelview Plus as well as the DNS servers; the screen does not show up in the search when I go to the transfer utility...
Replies
7
Views
196
Hi Everyone, I own a GE Versamax controller that I purchased for a class at Long Beach City College a couple of years ago. I lost the use of my...
Replies
12
Views
338
I was wondering if anyone could help i am trying to use a SLC 500 with a 5/05 processor to set up an incremental encoder to a HSCE2 card? The card...
Replies
2
Views
194
Back
Top Bottom