StrataFrame Forum

Question about project wide namespaces....

http://forum.strataframe.net/Topic5810.aspx

By StarkMike - 1/15/2007

I saw Microfour.StrataFrame.Messaging in the project wide namespaces listbox but I didnt see Microfour.StrataFrame.Messaging.MessageForm in there. Any idea why?
By StrataFrame Team - 1/15/2007

The project-wide namespaces only shows the actual namespaces.  Since MessageForm is a class, you have to import it explicitly within the code file.  Only VB allows you to import class names, all of the other languages only allow you to import namespaces, so you would import MicroFour.StrataFrame.Messaging and then call MessageForm.ShowMessageByKey().
By StarkMike - 1/15/2007

Thats what I suspected. Thanks for the clarification. ;-)