using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using CoreFS.CA06;using Pur.Entity; using Pur.Entity; namespace Pur.Pop_upWindow { public partial class FrmPop_GetBalance : FrmPmsBase { public string balclass; public FrmPop_GetBalance() { InitializeComponent(); } public FrmPop_GetBalance(OpeBase ob,String bal) { this.balclass = bal; this.ob = ob; InitializeComponent(); } private void FrmPop_GetBalance_Load(object sender, EventArgs e) { } private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e) { switch (e.Tool.Key) { case "querybal": // ButtonTool // Place code here break; case "submitbal": // ButtonTool // Place code here break; case "closebal": // ButtonTool // Place code here break; } } } }