Archive for the 'C#' Category

Adding flash to a c# form

Posted by Joel on January 3rd, 2008 filed in C#, Development, Flash

In Visual Studio 2005 when I tried to load the latest flash player (9.0.115) onto a form I got:

After doing some searching I found this:

Drop the control inside your form and observe the error message happenig (ugh!)
Then go to AppFolder\Obj\Debug and delete the interop file that was created or even delete the entire contents (will [...]

Read More..>>

C# Inheritance in Interfaces and Abstract Classes

Posted by Joel on July 30th, 2007 filed in C#, Development

As you probably already know C# doesn’t support multiple inheritance like other languages such as C++. However, in some instances it is nice to fake a multiple inheritance tree. For example at work I am writing a library that allows me to draw bitmaps or create PDFs interchangeably. I have an interfaces for each type [...]

Read More..>>