cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi experts,

I need help,

I have two problems

the first one is : i have 5 folders into my form but when my form is activate it's one folder which is activate the others are desable.

I must always load my form in screen painter before loading it in SBO menu.

the second is : when i change language i must reload my add-on. Because my add-on status is always "connected" but i can say it in SBO menu.

Regards.

0 Likes
View Entire Topic
Former Member
0 Likes

Hi Noor,

When i restart SAP Business One it's the same problem i get.

Regards.

Edited by: Olivier KPOLO on Apr 1, 2010 2:41 PM

Former Member
0 Likes

Hi,

You need to check the formid property. Put the below code in ItemEvent

If pVal.FormUID = "Your Form ID" And pVal.BeforeAction = False Then

If pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED Then

oForm = oSBOApplication.Forms.ActiveForm

If pVal.ItemUID = "tabRunTime" Then

oForm.PaneLevel = 1

End If

If pVal.ItemUID = "tabResDet" Then

oForm.PaneLevel = 2

End If

If pVal.ItemUID = "tabTstDet" Then

oForm.PaneLevel = 3

End If

End If

End IF

Noor