Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

textbox in screenpainter

Former Member
0 Likes
1,250

in screenpainter, we have textbox when we open its properties we have options such as (visible,nonvisible,possible and notpossible) what is the difference.

and how it can be used in our forms.

in screenpainter, we have textbox when we open its properties we have options such as (visible,nonvisible,possible and notpossible) what is the difference.

and how it can be used in our forms.

7 REPLIES 7
Read only

Former Member
0 Likes
1,124

Hi Babu,

Visible - It displays the Text Box at the output.

nonvisible - It doesn't displays the Text Box at the output. it hides the text Box.

possible - User can enter the values in text box.

notpossible - User can't enter the values in text box. The text box is in display mode.

Required - It tell that the text box is a Mandatory field. user should enter the Values.

Thanks,

Reward If Helpful.

Read only

Former Member
0 Likes
1,124

Hi,

visible and non-visible are useful to make the complete text box appear or disappear.

possible and not possible are useful for making fields available for input or not.

see this example below.

loop at screen.

if screen-name = <ur field name>.

screen-invisible = '1'.

endif.

endloop.

rgds,

bharat.

Read only

Former Member
0 Likes
1,124

Hi,

Visible means it will be visible and u cannot enter the data..But can see the data

Invisible:Not visible to the user

Possible:visible to the user a well as we can enter the data

Not possbible:not able to enter the data

Read only

Former Member
Read only

Former Member
0 Likes
1,124

the properties of text box can be changed dnamacilly.for this we should assign a group for the text box in the group field.

Read only

Former Member
0 Likes
1,124

Hi Dhamodharan babu,

In Screen Painter put the textbox and double click on that u will get the ATTRIBUTES window for that text box , in this window in the bottom u will get 3 tabs like DICT , PROGRAM, DISPLAY .

click on PROGRAM in this go to INPUT OPTION in this selct the option as notpossible the it will not allow u to edit the value.

Then if u want to change it when u press the BUTTON .

for this BUTTON Write PAI logic as

case ok_code.

when 'BUTTON'.

SCREEN-INPUT = 0.

ENDCASE.

Read only

Former Member
0 Likes
1,124

Hi,

The properties have the following meaning:-

1) Visiable:- It is visiable.i.e you can see the text box on the screen

during output/input.

2) Invisiable:- It is presnt on the screen but it is not viviable to the end user.

3) Possible:- It is used to enter / modify values in text box by the end user.

4) Not Possible :- It is not possible to enter any value/data in the text box.

In this it is only for output purpose.

Reward Points if helpful.....

Regards

Jitendra