move on a specific Panel
Emanuele Croci
Dear all,
how can I open a form and activate a specific Panel?
I try with
f.PaneLevel = 1
but it doesn't work
Please, can someone help me?
Try
customize.B1Connector.GetB1Connector().Application.ActivateMenuItem("1762")
Dim f As SAPbouiCOM.Form = customize.B1Connector.GetB1Connector().Application.Forms.ActiveForm
f.PaneLevel = 1
' ....
' ...
Catch ex As Exception
customize.Messaging.StatusBar.WriteError("Error: " + ex.ToString())
End Try
Paolo Manfrin
Try with Item.Click()
Emanuele Croci
I solved in this way:
Dim ItemFolder As SAPBouiCom.Folder = f.Items.Item("50").Specific
ItemFolder.Select()
....
Best regards
Emanuele
0
Please sign in to leave a comment.
Comments
0 comments