Hi Everyone,
I am programming an ordering site in VB.Net and ASP.Net.
I start with the main ordering form and the idea is that the user will select a subject from the drop down list and then click a button to retrieve all modules associated with that subject in a second form (smaller than the main order form).
I have created the second form (frm2) and added content to it.
In the main form inside the method which represents the button being clicked, I have coded the following:
Dim frm As New frm2()
frm.show()
I then get an error that show has not been declared and so I create a method stub for it.
I run the program and when I click on the button I get the following error:
'method or operation is not implemented.'
This points to the following line in the 2nd form:
Sub show()
Throw New NotImplementedException
End Sub
Does anybody know what I need to put inside this method to make my second form load when the button is clicked?
Any help would be much appreciated.
Thanks,
Dan