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

Search:

Type: Posts; User: Doron Moraz

Page 1 of 9 1 2 3 4

Search: Search took 0.06 seconds.

  1. Re: C++ , MFC and create folders in Outlook

    Hi qwerty,

    Did you try calling CreateFolder() on the IMAPIFolder interface?



    Check out the following example as it may help you work out how it all works:...
  2. Replies
    3
    Views
    5,442

    Re: How convert bytes to ASCII?

    Hi proxy,

    I think that you are getting confused.

    The utility you've mentioned was designed to decode various date/time values found embedded within binary and other file types.
    That is the...
  3. Replies
    5
    Views
    4,397

    Re: Reading Jpeg pixels and change it

    Consider using the CImg Library which is a small, open source, C++ toolkit for image processing.

    http://cimg.sourceforge.net/

    Best regards,

    Doron Moraz
  4. Re: Program crashing when reading text from files

    In addition, you should ALWAYS check that a pointer is not NULL before using it.
    Your getOtherCharacters() function can return NULL which will cause your program to crash when you attempt to write...
  5. Replies
    4
    Views
    1,450

    Re: Programing for the LAN - Help

    Hi Iraq,

    Yes



    Take a look at:
    http://en.wikipedia.org/wiki/Winsock
    http://en.wikipedia.org/wiki/Transmission_Control_Protocol
    http://msdn.microsoft.com/en-us/library/ms738545(VS.85).aspx
  6. Re: Making a Packet Sniffer that Modifies Incomming Packets

    You can use an existing library like Winpcap (http://www.winpcap.org/),
    or API's like LSP (http://en.wikipedia.org/wiki/Layered_Service_Provider) /
    NDIS...
  7. Replies
    4
    Views
    1,751

    Re: send() return value

    Hi stratoforce,

    Take a look at:
    http://msdn.microsoft.com/en-us/library/ms740481(VS.85).aspx


    Reagrds
    Doron Moraz
  8. Replies
    4
    Views
    1,751

    Re: send() return value

    The right sequence of closing a TCP connection without loosing data is:

    Call shutdown() (how parameter = 1) when you finish sending the data.
    Call closesocket() after recv() returns 0.


    ...
  9. Replies
    2
    Views
    1,461

    Re: How to pass user domain to rtsp server.

    Hi sulabh.

    Try,
    http://www.softgridguru.com/


    Good luck
    Doron Moraz
  10. Replies
    3
    Views
    1,691

    Re: https file download

    Hi sulabh,



    URLDownloadToFile(NULL, _T("https://server.com"), _T("c:\\file.dat"), 0, NULL );




    Regards
  11. Replies
    5
    Views
    1,277

    Re: Security issue for SOAP protocol

    To determine whether SSL is configured correctly, try using an https URL such as the following:
    https://myserver.com


    Regards
    Doron Moraz
  12. Thread: No idea

    by Doron Moraz
    Replies
    3
    Views
    1,230

    Re: No idea

    Hi Raislin,

    Take a look at:
    http://en.wikipedia.org/wiki/Berkeley_sockets


    Good luck
    Doron
  13. Replies
    5
    Views
    1,277

    Re: Security issue for SOAP protocol

    You won't get it if you didn't pay for it 8)
  14. Replies
    1
    Views
    4,574

    Re: Accessing Online Folders

    Use can use URLDownloadToFile
    http://msdn.microsoft.com/en-us/library/ms775123(VS.85).aspx


    Regards
    Doron Moraz
  15. Replies
    5
    Views
    1,277

    Re: Security issue for SOAP protocol

    Yes, Use SSL.


    Regards
    Doron Moraz
  16. Replies
    3
    Views
    1,958

    Re: limit home network bandwidth per node

    Hi Dcyuri,

    The link doesn't work so I don't know what your initial request was.
    I can only assume that you would like to intercept and manipulate packets, and if that's the case why hook if you...
  17. Re: C++ assignment for the gurus only . Solve this if u can .

    lol, good one....
  18. Re: C++ assignment for the gurus only . Solve this if u can .

    Try



    int main()
    {
    int a=5, b=2;

    printf("%d\n",a*b);
    printf("%d\n",a+b);
  19. Re: new operator overload and singleton instantiation

    Consider Loki's singleton:
    http://loki-lib.cvs.sourceforge.net/loki-lib/loki/include/loki/Singleton.h?view=markup

    The class template policies can generate many different types of singletons,...
  20. Re: Can't kill my process to rebuild the app

    It actually does.
    Find->Handle or DLL substring
  21. Re: Can't kill my process to rebuild the app

    Ooops: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx


    Regardless to the process killing, ProcessXP will allow you to see who is using program.exe....


    Reagrds
    Doron
  22. Re: Can't kill my process to rebuild the app

    Hi Lindley,

    Try using SystemInternal process explorer (now part of Microsoft)
    http://technet.microsoft.com/en-us/sysinternals/bb896653.asp

    With ProcessXP when you zoom in on a particular...
  23. Replies
    1
    Views
    4,417

    Re: WinInet Question

    Hi klambiguit,

    You need to replace:


    HINTERNET hOpen;
    HINTERNET hConnect;
    HINTERNET hRequest;
    LPCWSTR ax = (LPCWSTR)"/index.php";
    LPCWSTR bx = (LPCWSTR)"";
  24. Re: Send Request to Web Service and get Statuscode

    After you create an instance of CInternetSession, call CInternetSession::GetHttpConnection() to establish HTTP connection and get a pointer to a CHttpConnection object that can manage the connection...
  25. Replies
    3
    Views
    14,453

    Re: GetLastError() in a MessageBox()?

    GetLastError() return the calling thread's last-error code.
    Error codes are 32-bit values so to display the error code you will have to construct a string representation of the error code, something...
Results 1 to 25 of 223
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured