Hello,
Could someone point me in the right direction to change the name of the main panel from UD101 Maintenance to either blank of something else. Here is a screen shot
Thanks
Hello,
Could someone point me in the right direction to change the name of the main panel from UD101 Maintenance to either blank of something else. Here is a screen shot
Thanks
If you want to change the UDxx maintenance it is the text field of mainpanel1.
A consultant showed me how to hide the UD screen. Get the GUID for the mainPanel1 and epiTreeView1 and then do the below on form load. You get a blank screen to start with.
Greg
private void UD04Form_Load(object sender, EventArgs args)
{
Epicor.Mfg.UI.FrameWork.EpiTreeViewPanel TreeViewPanel = (Epicor.Mfg.UI.FrameWork.EpiTreeViewPanel)csm.GetNativeControlReference("d3a4fa73-e037-484e-8c93-1f930be38abf");
Epicor.Mfg.UI.App.UD04Entry.MainPanel MainPanel = (Epicor.Mfg.UI.App.UD04Entry.MainPanel)csm.GetNativeControlReference("1dff11bc-3024-4d17-acfc-b7af287e274b");
TreeViewPanel.Dispose();
MainPanel.Dispose();
}
Thanks Greg,
I started playing with the native control reference just after I sent the original post. Thought I had cracked it, but Updating the Text property of the main panel appears to do nothing
A great way to get a blank form though.