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
D

ddecoy

@ddecoy
About
Posts
77
Topics
17
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • System.IO Project for beginners
    D ddecoy

    System.IO.Directory.Move(@"C:\olddir", @"C:\newdir");

    System.IO.Directory.Delete(@"C:\olddir",false);

    1. ?? 4)

    var cleanDir = (@"C:\olddir").Replace('unwantedChar',"");
    System.IO.Directory.Move(@"C:\olddir",cleanDir);

    C#

  • shame to my tester or me?
    D ddecoy

    Watch out everybody the discussion police is here..

    The Weird and The Wonderful

  • shame to my tester or me?
    D ddecoy

    In dutch it is different. 62 you say " sixty two" but in dutch you say "twee en zestig" = "two and sixty" we also use the metric system :D

    The Weird and The Wonderful

  • shame to my tester or me?
    D ddecoy

    the most logic date time format for me is dd-mm-YYYY.

    The Weird and The Wonderful

  • About Compound File
    D ddecoy

    http://en.wikipedia.org/wiki/Compound_File_Binary_Format[^]

    C#

  • Integrate Window Application With Google Map
    D ddecoy

    https://developers.google.com/maps/documentation/javascript/reference#Marker[^] You can customize these markers with an image you made..

    C#

  • Regarding heat maps
    D ddecoy

    http://help.arcgis.com/en/webapi/silverlight/[^] this opensource api is really good for showing stuff on the worldmap.

    C#

  • No more newsletter.
    D ddecoy

    The best part of the fix are the sarcastic oneliners :D

    Site Bugs / Suggestions

  • No more newsletter.
    D ddecoy

    I have changed my logon email. But now I don't recieve my daily newsletter anymore not on any of my emails. What did I do wrong ? I need my daily newsletter :) Regards, Steven

    Site Bugs / Suggestions

  • Best Things to say if Caught Sleeping At Your Office Desk...
    D ddecoy

    "I was doing some configurations in the cloud" ...

    The Lounge

  • VS2010 is now uninstalled.
    D ddecoy

    I'm sure that I'm having more crashes with vs2010 then with vs2008. Also my colleges have that impression, I guess I was to soon to upgrade. Especially with wpf, I got one error and the error list got 200 errors that have nothing to do with it and only way to get rid of them is to do a rebuild. Also now my unit test don't work anymore (check three posts above). Guess they have to make some serious service packs...

    Visual Studio

  • TeamFoundation and unit tests
    D ddecoy

    Visual studio crashes every time when I run a unit test with the exception: Exception details: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.TeamFoundation.Client, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. After restarting: the test results pane has the same error. and when I want to open team explorer I get the error: Microsoft.TeamFoundation.Client.ServiceHostPackage ,Microsoft.TeamFoundation.TeamExplorer, package did not load correctly. .. After a system reboot I can access team explorer again until I run a unit test and bam, vs crashes .. :(( Can i reinstall the team foundation assembly again, or do I have to do a complete VS reinstall? btw. I did a google search and didn't encounter anyone with this same error.

    Visual Studio

  • Which Antivirus?
    D ddecoy

    Yes same here. NOD32 :thumbsup::thumbsup:

    The Lounge

  • How can I get the name of the object from Reflection ?
    D ddecoy

    And to get the value for ID and Name :

    Fi.GetValue(demo);

    C#

  • How can I get the name of the object from Reflection ?
    D ddecoy

    And what about this:

    Demo demo = new Demo();
    demo.ID = 1;
    demo.Name = "Demo";
    foreach ( Fi in demo.GetType.GetFields(BindingFlags.Public | BindingFlags.Instance)) {
    Console.WriteLine("--" + Fi.Name);
    }

    gives you "ID" and "Name".

    C#

  • Get 'Friend' members thru reflection?
    D ddecoy

    Is it possible to get friend members thru reflection? I tried :

    MyForm.GetType.GetFields()
    MyForm.GetType.GetFields(BindingFlags.NonPublic)
    MyForm.GetType.GetFields(BindingFlags.NonPublic & BindingFlags.GetField)
    MyForm.GetType.GetFields(BindingFlags.NonPublic & BindingFlags.GetField & BindingFlags.Instance)

    None succesful.

    Visual Basic

  • How to make a specific tree node unclickable in vb.net 2005
    D ddecoy

    If you write the hide method yourself. Not with the 2.0 Treeview object...

    Visual Basic

  • How to make a specific tree node unclickable in vb.net 2005
    D ddecoy

    Clearing all child nodes makes it unclickable, you could remove the child nodes from the node you want to disable and set the backgroundColor property to gray. When you enable the node again you can set the childnodes again and remove the gray color. But this is probably not the best solution....

    modified on Friday, August 13, 2010 8:39 AM

    Visual Basic

  • IIF strange behaviour
    D ddecoy

    I thougth IIF was something special, like if the condition is true ,the false part is never reached. But it's nothing more than this:

    Public Function IIF(ByVal condition As Boolean, ByVal truepart As Object, ByVal falsepart As Object) As Object
    If condition Then
    Return truepart
    Else
    Return falsepart
    End If
    End Function

    Visual Basic

  • IIF strange behaviour
    D ddecoy

    So why can I compile this then? In c# you can't...

    Visual Basic
  • Login

  • Don't have an account? Register

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