hlove4u 0 Newbie Poster

Can someone with LATE BINDING idea help me out in my VB.NET Project. Im working on an MDI (multople Doc Interface) project with some toolstrip buttons on my parent form (my menu form) from where I need to call some public procedures (like DELETEREC, UPDATEREC and so on) on childforms as they are being activated.

This is what I have done that don't seem to work. it works well in my VB6 projects.

In my project module i have this

public frm as system.windows.form().form

Im my childforms i have this on actvated events
frm= New name_of_the_childform

while in my parent form with toolstrip buttons

on mouse_click event
frm.DELETEREC

and it's flaging an error there
DELETEREC is not a member of System.Windows.Forms().Form

and ofcourse frm being a late binding type may not have all the Public Method on it. pls, is there any one with a better idea or get-around, I will highly appreciate it
Thanks