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 WinUI.BaseForms; using WinUI.DataSets; namespace WinUI.Forms.BackOffice { using WinUI.DataSets; using WinUI.DataAccessLayers; using WinUI.HelperClasses; public partial class frmItemMaintenance : frmButtons { public frmItemMaintenance() { InitializeComponent(); CenterToScreen(); btnOk.Hide(); } private void frmItemMaintenance_Load(object sender, EventArgs e) { // TODO: This line of code loads data into the 'stockLocationData.STOCKLOCATION' table. You can move, or remove it, as needed. // TODO: This line of code loads data into the 'itemData.ITEMMASTER' table. You can move, or remove it, as needed. //comboBoxEditLocation.DataSource = stockLocationData.Tables[0]; //comboBoxEditLocation.DisplayMember = "Location"; //will not suffice
GetComboBoxRows getRows = new GetComboBoxRows(stockLocationData, comboBoxEditLocation,"Location",0); //thought i can do it like this??? } } }
|