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
S

Sivaraman Dhamodharan

@Sivaraman Dhamodharan
About
Posts
61
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to solve- when windows forms application exe run from program files then it getting very slow
    S Sivaraman Dhamodharan

    Make sure C:\Drive has More than 1 GB disc Space. Sometimes this will slow down the performance.

    Programming Article

    C# winforms help tutorial

  • how to solve- when windows forms application exe run from program files then it getting very slow
    S Sivaraman Dhamodharan

    What kind of answer will you get when the question is "My Web browser is slow to watch a movie.., Please help me out". To get answer, be specific with your question. What kind of form exe it is? What it does? Why or how you say it is slow? etc

    Programming Article

    C# winforms help tutorial

  • how can i connect to microsoft access database
    S Sivaraman Dhamodharan

    The website below has information on how do you connect to different database. I hope it will be useful: http://www.connectionstrings.com/[^]

    Programming Article

    C# csharp database question announcement

  • How to use WM_PASTE ?
    S Sivaraman Dhamodharan

    WM_PASTE is the message sent to the Window in which Paste operation takes place. Refer: Link[^]

    Programming Article

    C# question algorithms help tutorial

  • c#
    S Sivaraman Dhamodharan

    C++, Java, C# - All good Oops based programming languages. Are looking for something specific on C#? You will get only funny replies when you post such a generic questions...

    Programming Article

    C# csharp oop question

  • PDF area selection
    S Sivaraman Dhamodharan

    The Active-X control below has the rich functionality that you are asking: http://www.visagesoft.com/products/pdfviewerx/[^]

    Programming Article

    C# csharp question

  • CAsyncSocket questions
    S Sivaraman Dhamodharan

    Provide the code snippet of Client that make connect request and code snippet that listens on a port xyz. With that people can help you.

    Programming Article

    C / C++ / MFC c++ help tutorial question

  • CEdit control
    S Sivaraman Dhamodharan

    Look for implementing Custom DDV (Google for Custom DDV in MFC) (Like Dynamic Data Exchange(DDX), it is Dynamic Data Validation)

    Programming Article

    C / C++ / MFC tutorial

  • login authentication
    S Sivaraman Dhamodharan

    Set your Login Page as the startup form and display that Modal dialog. When the authentication succeeds, continue with the application.

    Programming Article

    C# csharp visual-studio security question

  • Access structure variable value using string representing variable's name in C++.
    S Sivaraman Dhamodharan

    Answer is apart. Why you want to do it Like that?

    Programming Article

    C / C++ / MFC c++ design help

  • About strings in c language
    S Sivaraman Dhamodharan

    "assign strings in C" A Question for you. Does C language support Object Oriented Concepts?

    Programming Article

    C / C++ / MFC tutorial question

  • crystal report problem remove one row
    S Sivaraman Dhamodharan

    Post it in a different forum with report sections screen shot to get the answer. People will look for C# questions here.

    Programming Article

    C# help question

  • CView::OnDraw - related question
    S Sivaraman Dhamodharan

    On CView::OnDraw,I added the code like this Really?

    Programming Article

    C / C++ / MFC question c++

  • Reading a comma delimited file to array
    S Sivaraman Dhamodharan

    Try this: k=fgetc(fp); if(k==',') break; Hope that will work.

    Programming Article

    C / C++ / MFC help data-structures regex question announcement

  • Debugging Dll
    S Sivaraman Dhamodharan
    1. Write a exe program that uses your COM. 2) Launch the exe. 3) Open your COM Project is Visual Studio 4) Attach the already running exe with the Project. 5) Keep the break points and start debugging it.

    Programming Article

    C / C++ / MFC com debugging tutorial

  • convert parameter from 'MSTR' to 'char*'
    S Sivaraman Dhamodharan

    OK. You have a problem

    Programming Article

    C / C++ / MFC help

  • how to designe my text of dialog box?
    S Sivaraman Dhamodharan

    The link given by Richard MacCutchan has the examples (as a link).

    Programming Article

    C / C++ / MFC design help tutorial question

  • c++ implementation of a linked list.
    S Sivaraman Dhamodharan

    void main()
    {
    Node* head;
    head.addNode(10);
    }

    Create the object in the heap first. You just declared a variable stating "I will hold address of Node object in a variable head". But, where does that object? When there is no object head-> will not work. Head.addNode() also wont work as the object is not in stack. Correction:

    void main()
    {
    Node* head = new Node();
    head->addNode(10);
    }

    Object will be created in heap. or

    void main()
    {
    Node head;
    head.addNode(10);
    }

    Object will allocated on stack

    Programming Article

    C / C++ / MFC c++ data-structures help

  • fingerprint recognition
    S Sivaraman Dhamodharan

    Search for digitalPersona in google. They are one of the leader in finger print recognition. You can purchase the devices and also you can get their SDK that make your life easy. The SDK process has two important steps. 1) Registration: Forming single Registration template by taking the same finger input for at-least 4 times (This will be stored in the database as binary object. Kind of gray scale image formed from the registration templates). The template should be registered for a user of the application 2) Verification: Takes the finger input of the user, walk through the registration template in the in database (Actually you should read the template one by one and ask the sdk that verification succeeded) and a match occurs, you know who the user is.. Note: The finger prints are unique, if a match occurs between verification and already registered template, then you know who the user is.

    Programming Article

    C# tutorial csharp database mysql help

  • AutoComplete Like Visual Studio??
    S Sivaraman Dhamodharan

    I don't know that it is possible like you specified (D******T***). But it is possible doing auto complete for Da******. Refer this Link[^]

    Programming Article

    C# visual-studio csharp tutorial 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