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

puri keemti

@puri keemti
About
Posts
24
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • When we have to use abstract and when we have to use interface ?
    P puri keemti

    Interface is lightweight than Abstract.... **Abstract** When you don't clear about the future expansion of the framework... For creating multiple version application.. For creating products... For putting common behavior so that drived classes can use it without writing code again & again... **Interface** For defining rules and business policies... To enforce something.... to overcome the problem of multiple inhetitence

    C# question

  • What is the difference between static,readonly and constant ?
    P puri keemti

    Static : - Which shared the value with multiple instance Readonly :- once define.. you can change the value through constructor only at the time of creating instance.. Constant :- once define; you can't change it,,

    C# question

  • what is the diffrennce between String & string
    P puri keemti

    String comes from the .NET class System.String and string (lower case) is a C# alias for System.String.

    C# question

  • problem when connect to sql server
    P puri keemti

    (1) Check either SQL Login is enabled or not? (2) Use the Instance name instead of (local) and check the enabled protocols for the same.

    C# database help java sql-server sysadmin

  • How to Debug a DLL written in VC 6.0 in ASP.NET ( MSVS 2008 ) application?
    P puri keemti

    i hav did the same 7 years ago... don't knw the exact tool options....

    .NET (Core and Framework) csharp c++ asp-net visual-studio com

  • What code is this?
    P puri keemti

    Binary Serialization file....

    IT & Infrastructure question help

  • How to Debug a DLL written in VC 6.0 in ASP.NET ( MSVS 2008 ) application?
    P puri keemti

    Run Asp.net application with visual studio 6.0 for VC++ dll Debugging.

    .NET (Core and Framework) csharp c++ asp-net visual-studio com

  • Validation Rule In SQL Server 2005
    P puri keemti

    Many ways to do validation in database (1) Constraints (2) SP (3) Triggers

    Database database sql-server design sysadmin tutorial

  • How i can write query return the douplicate record with deffrint IDs ?! [modified]
    P puri keemti

    Use CTE feature of SQL server 2005..... Example:

    ;WITH SalesCTE(Product, SaleDate, SalePrice, Ranking)

    AS

    (

    SELECT

    Product, SaleDate, SalePrice,

    Ranking = DENSE_RANK() OVER(PARTITION BY Product, SaleDate, SalePrice ORDER BY NEWID() ASC)

    FROM SalesHistory

    )

    DELETE FROM SalesCTE

    WHERE Ranking > 1

    Database database sales question

  • Design a system to Transform source Files to target file.
    P puri keemti

    Create run time stage table depending upon the format of targetting file.....

    Design and Architecture design question performance career

  • Financial Software Designs
    P puri keemti

    Need to define the scope of the problem... which part you are looking for....

    Design and Architecture

  • Windows Service
    P puri keemti

    There is no need of reinstalling of window service there...... But Question regarding business components... depending upon the type of assembly... if it is deployed in GAC... there is not need to recompile the window service... else need to recompile the service....

    Design and Architecture question business beta-testing code-review

  • Document Management Syatem
    P puri keemti

    Should includes (1) Business workflow (Approval system) (2) Access Level (Permission/Role) (3) Parsing of image documents (4) Versioning control (5) download and upload of documents

    Design and Architecture csharp database sql-server sysadmin beta-testing

  • database connection problem
    P puri keemti

    Problem is with connection string. User name and password credentials are missing there....

    C# csharp database help sql-server sysadmin

  • Looking for ideas on how to release memory right before a generation 3 garbage collection [modified]
    P puri keemti

    Kindly change the question and state the correct problem there......

    C# visual-studio question csharp dotnet com

  • Looking for ideas on how to release memory right before a generation 3 garbage collection [modified]
    P puri keemti

    Pls. refers once purpose of Dispose pattern and supressfinalize method of GC.

    C# visual-studio question csharp dotnet com

  • How to access fields and values from an XML Database
    P puri keemti

    It will create table under dataset having three rows (1) Id (2) Freq (3) Mode You can access values easily by using

    ds.Tables[0].Rows[0][0] // It will return 1
    ds.Tables[0].Rows[0][1] // 151955000

    so on......

    C# csharp database winforms xml help

  • Hold the parent session when calling a showModalDialog child
    P puri keemti

    Modal dialogues can't refer to their parent using opener. You need to pass a reference to the parent in the second parameter to showModalDialog.

    .NET (Core and Framework) question csharp

  • Problem with List<>
    P puri keemti

    You need to initialize the list of the struct "sGamePortItem" before assigning the object.

    .NET (Core and Framework) help csharp dotnet data-structures question

  • object from treeview help needed
    P puri keemti

    Store the selected node into Treenode. After that you can get all properties of node through object of treenode.

    C# question help
  • Login

  • Don't have an account? Register

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