Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
W

WillemM

@WillemM
About
Posts
1.5k
Topics
133
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • P is not equal to NP
    W WillemM

    Come again? To pee or not to pee? If you gotta go, you gotta go...

    WM. My blog

    The Lounge php css com help question

  • Things about Eastern European driving holidays...
    W WillemM

    Bah, did they move it again? I told them not to, but they wouldn't listen. Aside from that note, I think it's more to the right than england, so you could say it's part of eastern europe.

    WM. My blog

    The Lounge com question

  • So in SCRUM...?
    W WillemM

    The SCRUM meetings I had so far never lasted longer than about 15 minutes with 10 people. This is already a rather large team to do SCRUM with, but you should be able to keep the amount of time down a bit. The way we manage time during a standup is to move large issues to a separate offline discussion of which a summary is reported in the next standup meeting. Otherwise things tend to get hasty and counter-productive. People want to move and get on with their work ;)

    WM. My blog

    The Lounge business help question

  • Build exe dynamically
    W WillemM

    You can execute the following command to use your specific #define variable. For example:

    msbuild /t:Rebuild /p:Configuration=Release /p:DefineConstants=YourDefineStatement YourSolution.sln

    This will rebuild the specified solution. It will result in a release build with the YourDefineStatement specified as preprocessor define statement.

    WM. My blog

    C# help tutorial question learning

  • Why I love Michelle
    W WillemM

    Abhinav S wrote:

    A Design pattern used to restrict the instantiation of a class to one object.

    Sometimes code is shockingly similar to life itself. Now where did I put that VBA macro to bend the matrix back into shape?

    WM. My blog

    The Lounge

  • Panel array [modified]
    W WillemM

    You can add panels dynamically to a form by doing something similar to the following: Form parentForm; // Set this to the form you want the panels added to

    foreach(var drawing in Drawings)
    {
    MyCustomPanel myPanel = new MyCustomPanel();
    myPanel.Drawing = drawing;

    // Set the location and size to the values you need

    parentForm.Controls.Add(myPanel);
    }

    The trick here is to create a custom control derived from panel that will paint the drawing you assign to it. Here's a basic skeleton to get you on the way

    public class MyCustomPanel: Panel
    {
    public Drawing Drawing { get; set; }

    protected override void OnPaint(object sender,PaintEventArgs e)
    {
    // Draw the image here using e.Graphics
    }
    }

    WM. My blog

    C# graphics data-structures question

  • load assemble with xml
    W WillemM

    Sadly this can get quite complex. There's a project here on the site that implemented something similar. The best option is to search for MyXaml. It's an opensource XAML parser that contains code to do this. I hope this helps.

    WM. My blog

    C# question xml help announcement

  • Is this true?
    W WillemM

    Gotta love the smell of a good scam in the morning. On second thought, I'd rather have baked eggs and a cup of coffee.

    WM. My blog

    The Lounge html com question

  • Windows XP - What a relief!
    W WillemM

    So it was astala Vista and back to a windows with eXPerience?

    WM. My blog

    The Lounge com question

  • How Do You Use Source Control?
    W WillemM

    The reason for choosing option 1 is pretty simple in my opinion. Merging can be quite a harsh job, since the changesets for whole new features can get very big. And it becomes even harder when working with multiple branches. I've used option 2, but it was a complete nightmare!

    WM. My blog

    The Lounge announcement com collaboration question

  • Damn, damn, damn, today's my copyright exam.
    W WillemM

    Good luck with that :D

    WM. My blog

    The Lounge help question learning

  • They keep going and going and going...
    W WillemM

    And that without service stations and gas stations ;P

    WM. My blog

    The Lounge com

  • Its official [modified]
    W WillemM

    Dude you just made me waste 30 minutes of my time!! But love the game!

    WM. My blog

    The Lounge php com game-dev tools question

  • Three vowels together
    W WillemM

    It almost looks like a random hit on the keyboard, although it is kinda hard to achieve the combination you used ;P

    WM. My blog

    The Lounge com

  • Lounge is quiet today
    W WillemM

    I'm going away for long weekend with my parents, brother and sister. Haven't seen them in a while, so this should be fun. I really don't want to talk about coding right now. It simply sucks at the moment.

    WM. My blog

    The Lounge question

  • Ouch, my eyes!
    W WillemM

    Ah that thing that is gathering dust in the corner. Well, I have to agree on that. CNN is shouty and you are distracted big time by all the tickers and so called "breaking news"

    WM. My blog

    The Lounge graphics design question announcement

  • Ouch, my eyes!
    W WillemM

    It must be my monitor settings, because the homepage of CNN doesn't look all that bright and distractive to me. Then again I only checked the homepage and didn't bother to browse any further.

    WM. My blog

    The Lounge graphics design question announcement

  • This is the reason why people need heavy machines to develop software
    W WillemM

    I've seen the slow typing behavior in the past. But that was with version 1.0 and I was hoping they improved that :)

    WM. My blog

    The Lounge performance csharp asp-net visual-studio com

  • This is the reason why people need heavy machines to develop software
    W WillemM

    Heh, I'm just as lazy as the next developer. It should make me more productive, at least thats what they are saying. That statement holds true when you look at the nice refactoring tricks they have. Otherwise sometimes, change, compile, fix, compile, fix, etc is the only way to get a component refactored. Other than that, I think I could work just fine without it and deliver the same quality.

    WM. My blog

    The Lounge performance csharp asp-net visual-studio com

  • Does Anyone Need A Copy Of...
    W WillemM

    Already have them in a box. MSDN licenses are way cool!

    WM. My blog

    The Lounge c++ hardware json question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups