CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: lok.vikram

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    3,089

    Running Code Metric analysis from command

    I have a sample application called sample.sln

    I want to run the code metrics for my c++ solution from a batch file.

    So anyone can run the batch file to see the result.

    I have enabled the...
  2. Replies
    0
    Views
    3,607

    Wrapper For C Static Library

    I Have is C Static Library for Camera. Now Plan is to develop C#/WPF UI for Windows 8 which will use the C static library to capture video/Audio.

    I came with the idea that there will C++/CLI...
  3. Replies
    13
    Views
    5,319

    Re: SHGetFolderPath': identifier not found

    Sorry! But I didn't lied. I Posted Stdafx content.later today I Checked VC propertise there I found this and updated you.
    Anyway thanks for your help!
  4. Replies
    13
    Views
    5,319

    Re: SHGetFolderPath': identifier not found

    The Issue is resolved the problem. I just changed the Preprocessor setting under Project Properties--> c++->

    Before it was
    _WINDOWS;WINVER=0x0400;DEBUG;_DEBUG;_WIN32_WINNT=0x400;WIN32;UNICODE
    ...
  5. Replies
    13
    Views
    5,319

    Re: SHGetFolderPath': identifier not found

    $(VCInstallDir)include
    $(VCInstallDir)atlmfc\include
    $(WindowsSdkDir)\include
    $(FrameworkSDKDir)include

    In addition to this there is DirectX Include

    I will Go through the link in the...
  6. Replies
    13
    Views
    5,319

    Re: SHGetFolderPath': identifier not found

    Present setting
    WINVER 0x501
    _WIN32_WINNT 0x501

    _WIN32_IE 0x600

    I am using vs 2008,windows 7,IE 8
  7. Replies
    13
    Views
    5,319

    Re: SHGetFolderPath': identifier not found

    Yes I have included "shlobj.h"
  8. Replies
    13
    Views
    5,319

    Re: SHGetFolderPath': identifier not found

    Its Not Helping
  9. Replies
    13
    Views
    5,319

    Re: SHGetFolderPath': identifier not found

    Its Not helping
  10. Replies
    13
    Views
    5,319

    SHGetFolderPath': identifier not found

    I am doing sample using DirectX 9 On Vs 2008/windows7.
    I am getting error.

    1>------ Build started: Project: VideoCapture, Configuration: Debug Unicode Win32 ------
    1>Compiling......
  11. Compilation Error due to InCorrect Direct X Version

    I got the Sample Project for video capture from video Camera. I was trying to compiling it.
    I am Using windows 7 and vs 2008.
    I got following compilation error.
    1>------ Build started: Project:...
  12. Replies
    1
    Views
    4,443

    c/C++ development on Embedded Linux

    I am c++ developer I need to start development on embedded Linux in future.
    I need to know C/C++ development on embedded Linux environment.Is it possible to install embedded Linux on PC to develop...
  13. Replies
    0
    Views
    4,161

    Remote Sound system on windows

    Our requirement is to develop remote sound system which should support all the windows OS starting from WindowsXP Onwards .

    I would like to describe the functionalites more clearly here...
    ...
  14. IO model for client handling multiple socket connection

    I am working on TCP Client Simulator on C++.Here can simulate 1000 client.each client has some status information which server may require.Server can get the status of a particular client by issuing...
  15. Replies
    8
    Views
    22,910

    Re: UDP hole punching P2p

    1. Client 1 And Client 2 both has Public IP and Public Port. Will the public port and private port may differ when they communicating with server ??? For say Client 1 public port 4000 and private...
  16. Replies
    8
    Views
    22,910

    Re: UDP hole punching P2p

    I don know how you are implementing it.Do you have rendvous server or not.it is mandatory for NAt punching.

    client 1
    1. create a listener thread which will listen to a port say 40000.
    2. use...
  17. Replies
    0
    Views
    2,450

    Proxy Punching

    Hi,
    I am working in peer to application.I have implemented UDP/TCP hole punching(c++) and two peer can directly connect to each other with the help rendezvous server and then can transfer data...
  18. Replies
    1
    Views
    2,611

    Re: XMPP/Jabber Client implementation

    check whether server is able receive the message sent from client or not.
    Post the code where ur sending it again.
  19. Replies
    12
    Views
    27,454

    Re: TCP simultaneous open

    Thanks,Richard for reply.I have been following the bryan Ford's article http://www.brynosaurus.com/pub/net/p2pnat/ from past one week.Now I have implemented TCP hole punching successfully.
    One need...
  20. Replies
    12
    Views
    27,454

    Re: TCP simultaneous open

    I am implementing Peer to peer application where each client behave as client as well server.
    I have three socket bind to same address/port.
    1.Listening socket
    2.ServerConnectionSocket (for...
  21. Replies
    12
    Views
    27,454

    Re: TCP simultaneous open

    I am implementing TCP hole punching for that i need to bind two or more socket to same address.
  22. Replies
    12
    Views
    27,454

    Re: TCP simultaneous open

    Thanks for replay.I am trying to bind both socket with same ip and port using setsocktopt. but this not working.
    Tell me am i doing wrong here.how can aceive this
  23. Replies
    12
    Views
    27,454

    TCP simultaneous open

    I am TCP simultaneous open.I have two client application. Each client opens two socket
    1. Listening Socket used in listen ()
    2. Connection Socket used in connect()

    I tried binding these socket...
  24. Replies
    8
    Views
    22,910

    Re: UDP hole punching P2p

    Its Done .............problem was due to NAT mapping .
  25. Replies
    8
    Views
    22,910

    UDP hole punching P2p

    I am working UDP hole punching to have communication between two client inC# without WCF.
    presenlty both my client are behind same NAT i.e in my company's network.
    I am able to get public IP of...
Results 1 to 25 of 53
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured