cancel
Showing results for 
Search instead for 
Did you mean: 

UserFields whit edit Text

Former Member
0 Kudos

I have a form, that has a SAPbouiCOM.EditText.

I want to bind the SAPbouiCOM.EditText whit a userfield.

How???

Sample code,please.

thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Sorry, I know the reply... but how do hide I the user field in the right??

Thanks.

AlexGrebennikov
Active Contributor
0 Kudos

Hi Santiago!

What do youe meen saying 'to hide the user field'?

If you meen 'to set the user field invisible' then try the following code:

// set focus to trash-field
frm.Items.Item("edTrash").Click(SAPbouiCOM.BoCellClickType.ct_Regular);
// visible = false
frm.Items.Item("Item").Visible = false;

Answers (0)