Ejemplo n.º 1
0
        /// <summary>
        /// Open new vehicle information form
        /// </summary>
        private void vehicleInformationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form form = new VehicleInformationForm(_bindingSource);

            form.ShowDialog();
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Method called when the vehicle info selection on the main menu is clicked. Creates an instance of a
        /// vehicle information form.
        /// </summary>
        private void MnuVehicleSalesQuoteVehicleInfo_Click(object sender, EventArgs e)
        {
            VehicleInformationForm vehicleInfoForm = new VehicleInformationForm(bindVehicleSelector);

            vehicleInfoForm.ShowDialog();
        }
Ejemplo n.º 3
0
        private void mnuVehicleInformation_Click(object sender, EventArgs e)
        {
            VehicleInformationForm vehicleInformationForm = new VehicleInformationForm(bindingSourceVehicles);

            vehicleInformationForm.ShowDialog();
        }