Exemple #1
0
        private void tsbStringBoundProperties_Click(object sender, EventArgs e)
        {
            frmBound frm = new frmBound((Bound)lstStringBounds.SelectedItem);

            if (frm.ShowDialog() == DialogResult.OK)
            {
                _hasChanges = true;
                LoadForm();
            }
        }
Exemple #2
0
        // Toolbar
        private void tsbPointerTableAdd_Click(object sender, EventArgs e)
        {
            Bound    bound = new Bound();
            frmBound frm   = new frmBound(bound);

            if (frm.ShowDialog() == DialogResult.OK)
            {
                _kup.PointerTables.Add(bound);
                _hasChanges = true;
                LoadForm();
            }
        }
Exemple #3
0
        private void tsbStringBoundAdd_Click(object sender, EventArgs e)
        {
            Bound bound = new Bound();

            bound.Dumpable = true;
            frmBound frm = new frmBound(bound);

            if (frm.ShowDialog() == DialogResult.OK)
            {
                _kup.StringBounds.Add(bound);
                _hasChanges = true;
                LoadForm();
            }
        }