Hi,
I need to add a new option for Dyn GP, this is part of my code:
ParentTagMnuTrx = MenusForVisualStudioTools.Functions.GetTagByName.Invoke(0, "Command_Purchasing", "CL_Purchasing_Setup");
MessageBox.Show("Parent Tag:" + Convert.ToString(ParentTagMnuTrx));
ResId = MenusForVisualStudioTools.Functions.GetFormResId.Invoke(2277, "CPOP_Setup_Maintenance");
MessageBox.Show("Res Id:" + Convert.ToString(ResId));
BellowTagMnuTrx = MenusForVisualStudioTools.Functions.GetTagByName.Invoke(2277, "Command_Purchasing", "CPOP_Setup_Maintenance");
MessageBox.Show("Bellow Tag: " + Convert.ToString(BellowTagMnuTrx));
this.MnuListTrx = MenusForVisualStudioTools.Functions.RegisterWithSecurity.Invoke(ParentTagMnuTrx, "test POP", "test POP", 0, 0, false, false, false, BellowTagMnuTrx, false, false, 2277, ResId);
MessageBox.Show("Menu Id: " + Convert.ToString(MnuListTrx));
Note: 2277 belongs to the product "purchase order enhancements".
I need to put my test option bellow of CPOP_Setup_Maintenance but my variables BellowTagMnuTrx and MnuListTrx results < 0.
Please Help Me!!!!
*This post is locked for comments