Any help would be appreciated.
Visual C# General
Loads first time and doesnot after some change and recompilation, Hmmmm! It may be version issue. Open AssemblyInfo.cs and try to fix the AssemblyVersion attribute by removing * to 0 or some other numner like
[assembly:
AssemblyVersion("1.0.0.0")]Make sure in Subsequent builds your assembly version remains the same.
Do it very first time when you create your control.
I hope this will work.
Note: A class library by defaults use [assembly: AssemblyVersion("1.0.*)] or something like that which means that this will auto increment version whenever a new build is created with some change in code. This may be cause of the problem.
Best Regards,
Rizwan aka RizwanSharp