K
kosecki
Hi,
I've problem with button click handler.
In a short brief my program looks like this:
there is form invoice with is base class for invoice_edit form.
invoice form has public button "save" with modifers option set to
public
invoice_edit form has method which handles save.click and do some code
Public Sub save_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles save.Click
there is third form invoice_prod which inherits from invoice_edit and
also handles "save" button with this method declaration:
Public Sub save_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles save.Click
So, when I launch my invoice_prod:
invoice_prod.ShowDialog() and click on "save" button involved with
public sub save_click from form invoice_edit executing.
Please help, how to execute method from invoice_prod form.
I've problem with button click handler.
In a short brief my program looks like this:
there is form invoice with is base class for invoice_edit form.
invoice form has public button "save" with modifers option set to
public
invoice_edit form has method which handles save.click and do some code
Public Sub save_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles save.Click
there is third form invoice_prod which inherits from invoice_edit and
also handles "save" button with this method declaration:
Public Sub save_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles save.Click
So, when I launch my invoice_prod:
invoice_prod.ShowDialog() and click on "save" button involved with
public sub save_click from form invoice_edit executing.
Please help, how to execute method from invoice_prod form.