Ejemplo n.º 1
0
 public ModifyForm(Modify hook, MethodDefinition method, Modify.InstructionData inst) : this(hook, method)
 {
     Instruction = inst;
     InsertBeforeButton.Visible = false;
     InsertAfterButton.Visible = false;
     SaveButton.Visible = true;
 }
Ejemplo n.º 2
0
 private void InsertAfterButton_Click(object sender, EventArgs e)
 {
     Instruction = new Modify.InstructionData();
     if (!UpdateInstruction()) return;
     Index = 1;
     DialogResult = DialogResult.OK;
 }