on 2008 Feb 11 7:54 AM
Hi All,
I am trying to create User Fields on system form using SDK samples. My Code seems to be correct. But I am not getting text fields on system form when I am running programme. please help me.
Thanks & Regards,
Siva
Hi Siva,
Assign pane value with reference field value.
oNewItem.FromPane = oItem.FromPane;
I think it will help you.
Regards,
Sravan Kumar Pothu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Thanks for your attention.
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If your object doesn`t seems to be on form, check the frompane and topane values or if you are adding the object to proper form.
Example fot static text:
oOrderForm = SBO_Application.Forms.GetFormByTypeAndCount(pVal.FormType, pVal.FormTypeCount)
oNewItem = oOrderForm.Items.Add("info", SAPbouiCOM.BoFormItemTypes.it_STATIC)
oNewItem.Top = 290
oNewItem.Left = 500
oNewItem.FromPane = 19
oNewItem.ToPane = 19
oStatic = oNewItem.Specific
oStatic.Caption = "info"
Petr
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
102 | |
8 | |
6 | |
6 | |
5 | |
5 | |
5 | |
4 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.