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
K

karam chandrabose

@karam chandrabose
About
Posts
85
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to start method after another one finishes (Thread)
    K karam chandrabose

    i would recommend u a simplest way... call the animation method asynchronously , inside which u have following code { this.AnimatedControl.start(); while(!bnFinishedFlag) { //do nothing //bnFinished flag is class level var and will be set to true when db //operation finishes } this.AnimatedControl.stop(); //end the async method call.. } hope this helps//..

    C# database help tutorial question

  • Database
    K karam chandrabose

    how to do a google?

    C# csharp database tutorial

  • hi
    K karam chandrabose

    and subject says a lot about the problem v@!@@ SIVAJI - THE BOSS

    C# database help announcement

  • Collation Name
    K karam chandrabose

    [:(] i did the same using sql 200, it is a very very tedious process, would recomment you to re install the DB using proper collation and dump in data, and re run sp's , this is much much better approach,

    Database database question

  • MS SQL Server 2005 - SQL Problem
    K karam chandrabose

    you have to alter your collation settings, the default collation in sql server 2005 is latin1_general_CI_AS CI = case insensitve AS = Accent sensitive you might have to change it in to Case sensitive. do google on "SQL Server Collation" for more details. have fun. cheers

    Database help database sql-server sysadmin question

  • Best book for Design patterns.
    K karam chandrabose

    Hi Folks, can anyone suggest me which is the best book for learning design patterns? i am a intermediete developer in C# , .Net technologies, please guide me.

    Design and Architecture csharp learning design tutorial question

  • Design Guidelines : Polling vs Events
    K karam chandrabose

    Depends actually, polling introduces a latency , which is equal to polling interval. event's on other hand are instantaneous, so it depends whether a latency is accepted or not.

    Design and Architecture csharp dotnet visual-studio design sysadmin

  • Shadowing??
    K karam chandrabose

    Overloading can occur with in the same class too, for eg: //Example for overloading public int addnumbers(int a, int b) { return a+b; } public int addnumbers(int a, int b, int c) { return a+b+c; } Method Hiding can happen only when inheritance comes to picture public class Maths { public Maths() { //.Ctor } public int addnumbers(int a, int b) { return a+b; } } public class TwoMaths : Maths { public TwoMaths() { //.Ctor } // This method hides the base class's method // if you create a object for TwoMaths class, the base class's // addnumber method cannot be called unless until you explicitly //cast TwoMaths' object in to Maths object public int addnumbers(int a, int b) { return a+b; } }

    .NET (Core and Framework) question

  • SQL Server Basic Questions
    K karam chandrabose

    a google is highly recommended

    Database database question sql-server sysadmin

  • How to persist datareader
    K karam chandrabose

    Datareader is always connected, better go for datatable to persist stuff!

    C# csharp database winforms sysadmin performance

  • Int32 type alias problem!
    K karam chandrabose

    hey Judah, thanks from me too! i thought aliasing we can do only for namespaces!!

    C# csharp c++ help tutorial question

  • hi, c# forms
    K karam chandrabose

    Hi, in this scenario, define your entity object as a class, let Form1 have an static object of that class, in form two set the value for the static instance, then when u go back to form1 , do the data binding.. like this.. Form1 { public static CEntity objEntity; someclick() { Form2.showDialog() Datagrid.databind(objEntity) } } CEntity { Public string column1; Public string column2; } Form2 { someevent() { Form1.objEntity.column1 = textbox1.Text; Form1.objEntity.column2 = textbox2.Text; } } Cheers

    C# csharp database help question announcement

  • hi
    K karam chandrabose

    Yes colin

    ASP.NET database oop tutorial

  • hi
    K karam chandrabose

    Get a book on ADO.Net, prefereably OReilly publications

    ASP.NET database oop tutorial

  • method level security in web services
    K karam chandrabose

    Hi Friends, just brief me on method level security in web services.. just two three lines on wat needs to be done.

    ASP.NET wcf security

  • ARCHITECTURAL DIFFERENCE between .net 1.0 and 2.0?
    K karam chandrabose

    I got this question in a tech interview, tell me any one ARCHITECTURAL DIFFERENCE between .net 1.0 and 2.0? can you guys list out a few please??

    .NET (Core and Framework) question csharp career

  • C# Code required
    K karam chandrabose

    u shud use word interop and word application object.

    C# csharp

  • Writing to a Text File
    K karam chandrabose

    wText.Close(); MyStream.Close(); unless u close the writer, buffered things will not be explicitly fwded to the disk.

    C# question csharp graphics help

  • Indexes on views
    K karam chandrabose

    Hi, when we create a non clustered index for a table, an index is maintained in the database, but when we create the same on a view , does it get saved anywhere !! , i am also aware that views are not persisted in the DB, so i am a bit confused in this.

    Database database

  • ReadOnlyCollection still editable?
    K karam chandrabose

    can u pls elaborate your question with some code snippets?

    .NET (Core and Framework) help 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