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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
I

IamJunk

@IamJunk
About
Posts
7
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • VS 2005 beta 2
    I IamJunk

    Totally agree with what you said. What ever people say about Microsoft, but .Net 2.0 ROCKS!!!


    Regards, Sidhu IF YOU DON'T HAVE ANYTHING TO SAY, WELCOME TO THE CLUB Dotnet @ Work Where Dotnet works... My Blog

    C# database sql-server visual-studio sysadmin beta-testing

  • Application design (XML)
    I IamJunk

    You can try some thing like this... ComboBox Manufacture Manufacture Manufactures 1 1 1 Select/Enter a manufacturer TextBox Part Number Part_Number 1 2 2 Enter part number All Records select * from main This gives more flexibility, in that you can associate one or more reports to a single form/database... Hope this helps!!!


    Regards, Sidhu IF YOU DON'T HAVE ANYTHING TO SAY, WELCOME TO THE CLUB Dotnet @ Work Where Dotnet works... My Blog

    C# question database com design xml

  • small problem
    I IamJunk

    Instead you can rely on more popular regular expressions. try this... //add this to the using section at the top of the class using System.Text.RegularExpressions; string original = "hisnoutoThatismesnoutoYeah"; Regex reg = new Regex("snouto"); //"snouto" or what ever string[] splitStrings = reg.Split(original); Using Regular Expressions is comparatively faster that any other operations directly on strings Hope this helps!!!


    Regards, Sidhu IF YOU DON'T HAVE ANYTHING TO SAY, WELCOME TO THE CLUB Dotnet @ Work Where Dotnet works... My Blog

    C# help question data-structures json

  • Writting to a ListBox from another class
    I IamJunk

    The problem I can see with your code is... When you are trying to add elements to the listbox, you are creating a new instance of your form object. this will never point to the current form being displayed. So even if you call add(), it will add to the listbox on the form which is never displayed. Instead, you have to get the reference to the existing form and then call add method. Hope this helps!!!


    Regards, Sidhu IF YOU DON'T HAVE ANYTHING TO SAY, WELCOME TO THE CLUB Dotnet @ Work Where Dotnet works... My Blog

    C# question graphics announcement

  • Best way to store user pref's
    I IamJunk

    try using a Database. Hopefully thats the widely used approach (if not file IO) Hope this helps!!!


    Regards, Sidhu IF YOU DON'T HAVE ANYTHING TO SAY, WELCOME TO THE CLUB Dotnet @ Work Where Dotnet works... My Blog

    C# windows-admin question

  • How do i create a savestate?
    I IamJunk

    Have you heard of something called "Serialization". This saves the state of the objects. For more info check Code Project ;) Hope this helps


    Regards, Sidhu IF YOU DON'T HAVE ANYTHING TO SAY, WELCOME TO THE CLUB Dotnet @ Work Where Dotnet works... My Blog

    C# com game-dev tutorial question

  • Passing special characters in a string
    I IamJunk

    try this... methodName("QTextPrint(\"TestMessage\")"); I Hope this should work. If not give this a shot string param = "QTextPrint({0}TextMessage{1})"; param = string.Format(param, "\"", "\""); Hope this helps


    Regards, Sidhu IF YOU DON'T HAVE ANYTHING TO SAY, WELCOME TO THE CLUB Dotnet @ Work Where Dotnet works... My Blog

    C#
  • Login

  • Don't have an account? Register

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