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
P

Pascal 0

@Pascal 0
About
Posts
17
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How do you name your extension methods class?
    P Pascal 0

    I use FrameworkExtension

    The Lounge graphics question

  • Any Rammstein fans here?
    P Pascal 0

    industrial

    The Lounge c++ csharp com question discussion

  • 7Z Compressed files
    P Pascal 0

    winrar can unzip them I remember doing it once

    The Lounge tutorial question

  • Is the .NET Framework a successful platform?
    P Pascal 0

    myspace is in .net too

    The Lounge csharp dotnet question

  • Suggestions for AntiVirus?
    P Pascal 0

    I use Nod32 too and im really satisfied

    The Lounge question discussion

  • Looking for info on NET20 SP1
    P Pascal 0

    .NET 2.0 SP1 is actually required if you want to use LINQ to SQL on .NET 2.0 because it contains an updated version of System.dll read more details here : http://linqinaction.net/blogs/main/archive/2007/09/05/linq-support-on-net-2.0.aspx[^]

    The Lounge sharepoint com question

  • Do it only once please
    P Pascal 0

    Effectively, and no one changed it

    The Weird and The Wonderful

  • Do it only once please
    P Pascal 0

    Today we had to edit very old code and we ran into this great piece of codefor (int lnIndice = 1; lnIndice <= 1; lnIndice++) { switch (lnIndice) { case 1: // do something here break; } } We found it very funny :-D

    The Weird and The Wonderful

  • Assembly compatibility
    P Pascal 0

    A little bit late but thanks

    C# tutorial question announcement

  • How to raise events while clicking a datalist item or a particular Row??
    P Pascal 0

    http://msdn2.microsoft.com/en-us/library/system.web.ui.webcontrols.basedatalist.selectedindexchanged.aspx[^]

    .NET (Core and Framework) csharp help tutorial question

  • Rpc Server Unavailable in Excel Com Object
    P Pascal 0

    Take a look at this http://www.codeproject.com/office/excel_using_oledb.asp[^]

    C# help database csharp com sysadmin

  • at least he tried
    P Pascal 0

    wikipedia stops at 113 too :) http://en.wikipedia.org/wiki/Prime_number[^]

    The Weird and The Wonderful question

  • List classList = new List();
    P Pascal 0

    Because you were reassigning the properties of the same instance each time. Thats why you got the same object twice in your list because the object is by reference. With the modification, you'll create a new instance of the object on each iteration and each object in your list will be different because they point at their own reference. Hope that help :)

    C# database css data-structures question

  • List classList = new List();
    P Pascal 0

    Creating a new instance of the ActiveTable variable should do the trick into your while loop while (readerTableInfo.Read()) { tableToAnalyze = new AnalyzeTable(); tableToAnalyze.omniwinRoot = omniwinRoot; tableToAnalyze.table = readerTableInfo.GetString(3).Trim(); tableToAnalyze.tableKey = readerTableInfo.GetString(4).Trim(); tableToAnalyze.AnalyzeTable(); tableToAnalyze.verschil = tableToAnalyze.tableRecords - tableToAnalyze.tableUniqueRecords; if (tableToAnalyze.verschil > 0) { tableToAnalyzeList.Add(tableToAnalyze); } }

    C# database css data-structures question

  • building a app.config file in a control (dll)
    P Pascal 0

    http://www.codeproject.com/dotnet/dllappconfig.asp[^]

    C#

  • minimum TimeSpan
    P Pascal 0

    Take a look at http://www.codeproject.com/csharp/highperformancetimercshar.asp[^]

    C#

  • Assembly compatibility
    P Pascal 0

    Hi I'm looking for a way to check the compatibility between two versions of an assembly. I know how to retrieve the version of an assembly but i'm looking for a way to check the compatibility automatically. In exemple : 1.0.0.1 is compatible with 1.0.0.0 but 1.1.0.0 isn't with version 1.0.0.0 Do I have to verify manually or is there already a method in the Framework that does it ?

    C# tutorial question announcement
  • Login

  • Don't have an account? Register

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