Usually this would be done by either exposing some public properties on a form class that you set from code in one form, then you call the new forms .Show() method. Or you could create a method on the new form that accepts the parameters you need and calls its own .Show() method.
Try here for the System.Windows.Form class:
http://msdn.microsoft.com/library/en...mberstopic.asp
(Please note, I'm primarily a www developer too so I'm no WinForms expert.)
-
Peter