This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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, "", ""); |
NewerOlder