So I haven’t seen many new registrations till about a month ago (which makes sense, since I haven’t been posting). Definitely all spam, and thanks to http://www.stopforumspam.com/ quick and easy search of usernames and emails nets that they all belong to spammers…

The user names were pretty fail too. Did have two new users that didn’t show up in there though, good on’ya and welcome!

Go straight to Post

So .NET does some funny things sometimes. Mr. Hanselman has already explained what is going on in a little detail. I added a little something from this bytes.com post.

Seems like it will be the way to go!

string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Person.dll"
AssemblyName an = AssemblyName.GetAssemblyName(filePath);
Assembly dll = Assembly.Load(an);

Type t = dll.GetType("Plugin.Person");
var instance = t.InvokeMember(String.Empty,BindingFlags.CreateInstance, null, null, null);
Person p = (Person)instance;

Go straight to Post

Iz nice… works with multiple monitors to select the main screen.

public MainForm()
{
    InitializeComponent();

    Rectangle r = Screen.PrimaryScreen.WorkingArea;
    StartPosition = FormStartPosition.Manual;
    Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - Width,
        Screen.PrimaryScreen.WorkingArea.Height - Height);
}

Go straight to Post

© 2010 iDevelop Suffusion theme by Sayontan Sinha
WordPress Loves AJAX