This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.PublishInfoMessage("Message Text", Ice.Common.BusinessObjectMessageType.Information, Ice.Bpm.InfoMessageDisplayMode.Individual, "", ""); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Add this code to InitializeCustomCode() event | |
//Change Treeview Root Note text | |
EpiTreeViewPanel tvp = (EpiTreeViewPanel)(oTrans.EpiBaseForm.GetType().InvokeMember("epiTreeViewPanel1", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.GetField | System.Reflection.BindingFlags.NonPublic, null, oTrans.EpiBaseForm, null)); | |
tvp.RootNodeText = "Your Root Node Text"; | |
//Change Treeview Panel Title | |
Infragistics.Win.UltraWinDock.DockableWindow dockWindow = (Infragistics.Win.UltraWinDock.DockableWindow) tvp.Parent; | |
Infragistics.Win.UltraWinDock.DockableControlPane dockPane = (Infragistics.Win.UltraWinDock.DockableControlPane) dockWindow.Pane; | |
dockPane.Text = "Your Treeview Panel Title Text"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
baseToolbarsManager.Tools["EpiAddNewnewParent"].SharedProps.Caption = "Your Parent New Menu Item Name" ; | |
baseToolbarsManager.Tools["EpiAddNewnewChild"].SharedProps.Caption = "Your Child New Menu Item Name" ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Example | |
foreach(var ttPart_iterator in (from ttPart_Row in ttPart where String.Compare(ttPart_Row.RowMod, "A", true)==0 select ttPart_Row)) | |
{ | |
string partNum = ttPart_iterator.PartNum; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void CallUserCodesAdapterGetListMethod() | |
{ | |
// Declare and Initialize EpiDataView Variables | |
// Declare and create an instance of the Adapter. | |
UserCodesAdapter adapterUserCodes = new UserCodesAdapter(this.oTrans); | |
adapterUserCodes.BOConnect(); | |
// Build where clause for search. | |
string whereClause = "CodeID = \'1\'"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EpiUltraCombo cboTypeCode = (EpiUltraCombo)csm.GetNativeControlReference("5875b95a-4b6a-4e4c-b8c8-22ee5330ed40"); | |
cboTypeCode.Enabled = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add a reference to "Ice.Contracts.Bo.DynamicQuery" | |
public struct BaqParam | |
{ | |
public BaqParam(string paramName, string paramType, string paramValue) | |
{ | |
this.ParamName = paramName; | |
this.ParamType = paramType; | |
this.ParamValue = paramValue; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JobEntryAdapter adapterJobEntry = new JobEntryAdapter(this.oTrans); | |
adapterJobEntry.BOConnect(); | |
DataSet dsJobDetails = adapterJobEntry.GetData(jobNum); | |
DataRow dr = adapterJobEntry.JobEntryData.JobHead.Rows[0]; | |
dr.BeginEdit(); | |
dr["FieldName_c"] = newValue; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Reflection; | |
public class Script | |
{ | |
Infragistics.Win.UltraWinDock.UltraDockManager dock; | |
public void InitializeCustomCode() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EpiDataView edvViewName = ((EpiDataView)(this.oTrans.EpiDataViews["ViewName"])); |
OlderNewer