CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Jun 2003
    Location
    Malacca, Malaysia
    Posts
    6

    Cool Integration SDK with VC++ in MFC

    How to integrate SDK with VC++ in MFC ??? i don't have ideal how and where to perform this......

  2. #2
    Join Date
    May 2003
    Location
    Pakistan
    Posts
    223

    Re: Integration SDK with VC++ in MFC

    Quote Originally Posted by Danny Gan
    How to integrate SDK with VC++ in MFC ??? i don't have ideal how and where to perform this......
    Well which SDK r u trying to integrate and in which IDE i mean VS6.0 or VS.NET,
    but anyways SDK normally comes up with three kinds of files LIB , .H and help files.

    To configure this SDK u will have to set the these header and lib files path

    in VS 6.0 one can set these path like this

    1.For configuring additional header files go to Tool-->Option-->Directories-->Include Files

    2.For configuring additional lib files go to Tool-->Option-->Directories-->library files.

    hope it will help
    Unmanaged in a .NET world

  3. #3
    Join Date
    Mar 2003
    Location
    India {Mumbai};
    Posts
    3,871

    Re: Integration SDK with VC++ in MFC

    Quote Originally Posted by Danny Gan
    How to integrate SDK with VC++ in MFC ??? i don't have ideal how and where to perform this......
    Did you mean to use and link with core WinAPIs? If yes, you need not to do anything...
    If no, please clarify your problem.
    My latest article: Explicating the new C++ standard (C++0x)

    Do rate the posts you find useful.

  4. #4
    Join Date
    Jun 2003
    Location
    Malacca, Malaysia
    Posts
    6

    Re: Integration SDK with VC++ in MFC

    Quote Originally Posted by atif_ilm
    Well which SDK r u trying to integrate and in which IDE i mean VS6.0 or VS.NET,
    but anyways SDK normally comes up with three kinds of files LIB , .H and help files.

    To configure this SDK u will have to set the these header and lib files path

    in VS 6.0 one can set these path like this

    1.For configuring additional header files go to Tool-->Option-->Directories-->Include Files

    2.For configuring additional lib files go to Tool-->Option-->Directories-->library files.

    hope it will help

    What is the different between VC6.0 and VC.Net?

    almost same right? i prefer use VC6.0.

  5. #5
    Join Date
    May 2003
    Location
    Pakistan
    Posts
    223

    Re: Integration SDK with VC++ in MFC

    Quote Originally Posted by Danny Gan
    What is the different between VC6.0 and VC.Net?

    almost same right? i prefer use VC6.0.

    IDE(Integrated Development Environment) , VS6.0 and VS.NET are two VC++ compiler versions from microsoft, 6.0 is the older than .NET but still widely used by developers community.

    I was asking about the compiler versions so that i could guide u according to that compiler environment.

    But if u r already using VS6.0(Visual Studio 6.0)then i hope that above given settings will allow u to use any SDK.
    Unmanaged in a .NET world

  6. #6
    Join Date
    Jun 2003
    Location
    Malacca, Malaysia
    Posts
    6

    Re: Integration SDK with VC++ in MFC

    Quote Originally Posted by atif_ilm
    IDE(Integrated Development Environment) , VS6.0 and VS.NET are two VC++ compiler versions from microsoft, 6.0 is the older than .NET but still widely used by developers community.

    I was asking about the compiler versions so that i could guide u according to that compiler environment.

    But if u r already using VS6.0(Visual Studio 6.0)then i hope that above given settings will allow u to use any SDK.
    ==========================================================

    Basically my program is when user make finger print which check by SDK fingerprint.
    if match fingerprint ACCEPT and record Details (customize program) such as Name, ID,
    date, timein, timeout save as txt file format. Else REJECT the request.

  7. #7
    Join Date
    May 2003
    Location
    Pakistan
    Posts
    223

    Re: Integration SDK with VC++ in MFC

    Quote Originally Posted by Danny Gan
    ==========================================================

    Basically my program is when user make finger print which check by SDK fingerprint.
    if match fingerprint ACCEPT and record Details (customize program) such as Name, ID,
    date, timein, timeout save as txt file format. Else REJECT the request.

    Did ure problem solve with above given configurations
    Unmanaged in a .NET world

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured