Sign in to follow this  
Followers 0
marcinmrag

EditVariable Sub problem

1 post in this topic

Hello Everyone,

I tried to use this sub function. Than i connect with button set event like a call subrutine but nothing is happend. Maybe someone used allready this function and can help :).

Below desribtion form help

EditVariable function

System version 1.0 or later

It displays a keypad and stores a value in the specified variable.

Syntax

System version 1.0:

EditVariable( VariableName As String,

Optional KeypadCaption As String

Optional FalseText As String

Optional TrueText As String,

Optional MinimumValue As Numerical

Optional MaximumValue As Numerical

Optional MaskCharacters As Boolean

Optional InputMethod As String )

 

System version 1.03 or later:

EditVariable( VariableName As String,

Optional KeypadCaption As String

Optional FalseText As String

Optional TrueText As String,

Optional MinimumValue As Numerical

Optional MaximumValue As Numerical

Optional MaskCharacters As Boolean

Optional InputMethod As String,

Optional Reserved As String,

Optional CustomKeypadGroup As String )

Parameters

VariableName

Data type: String

Essential

It specifies a name of the variable that should store a value.

 

KeypadCaption

Data type: String

Optional

It specifies a title character string for the keypad.

 

FalseText

Data type: String

Optional

It specifies a character string that is displayed when the entered value is illegal.

 

TrueText

Data type: String

Optional

It specifies a character string that is displayed when the entered value is normal.

 

MinimumValue

Data type: Numerical

Optional

It specifies the minimum input value.

 

MaximumValue

Data type: Numerical

Optional

It specifies the maximum input value.

 

MaskCharacters

Data type: Boolean

Optional

It specifies whether to mask input values.

True:Enable masking

False:Disable masking

InputMethod

Data type: String

Optional

It specifies the keypad used to input values.

NUMERICKEYPAD:Keypad to input numeric values

QWERTYKEYPAD:Keypad to input text strings

Reserved

Data type: String

Omit the parameter as it is for future expansion.

CustomKeypadGroup

Data type: String

Optional

It specifies the custom keypad group when using a custom keypad.

Description

It displays a keypad and stores a value in the specified global variable.

Example

Sub SampleSource

EditVariable("strValue", "Keypad", , , , , False, "QWERTYKEYPAD", , "Group0")

 

I tried 100000 options but keypad is not show up ;/

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0