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.
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
| User | Count |
|---|---|
| 13 | |
| 13 | |
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.