Navigate to Feature Form (ifswin) / Open Window using iURL / Navigate to Quick Report via RMB

  • 15 October 2021
  • 0 replies
  • 113 views

Userlevel 1
Badge +2

Way 1

private void menuFrmMethods_menuTest_Execute(object sender, FndCommandExecuteEventArgs e)

{
// ifswin:Ifs.Application.QuickReporting.QuickReportDetail?action=get&key1=773426

iURL.Clear();

iURL.SetProtocol("ifswin");

iURL.SetProgId("Ifs.Application.QuickReporting.QuickReportDetail");

iURL.iParameters.SetAttribute("action", "get");

iURL.iParameters.SetAttribute("key1", "773426");

iURL.Go();

}

Way 2

public override void New()
{
Ifs.Fnd.Core.FndUrlAddress url = new Ifs.Fnd.Core.FndUrlAddress("ifswin:Ifs.Application.QuickReporting.QuickReportDetail?action=new");
this.NavigationService.Navigate(url, false, true);
}

 

Cheers!


0 replies

Be the first to reply!

Reply