Need Help Load a DLL file before Intializing Form

  • Thread starter Thread starter webstuff
  • Start date Start date
(e-mail address removed) wrote in
That part works fine. However, I want to use this enum on a form in
IntializeComponents(). Currently it does not reconize the enum since
its running IntializeComponents() before it loads the dll file that
contains the enum.

I dont think your analysis is correct. What error are you getting?


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Empower ASP.NET with IntraWeb
http://www.atozed.com/IntraWeb/
 
The warning I get when Visual Studio first comes up is "The variable
'FirstName' is either undeclared or was never assigned." with FirstName
being one of the members of the of the enum. However you can still run
the code and it will work fine, it is just at design time when Visual
Studio first loads.
 
Back
Top