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

san123pune

@san123pune
About
Posts
11
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Cannot connect to FTP Server.
    S san123pune

    I think you should put 21 instead of INTERNET_INVALID_PORT_NUMBER :-D

    C / C++ / MFC com sysadmin

  • BSTR supports Unicode
    S san123pune

    Hi , Is BSTR support UNICODE? I have a component method that takes BSTR as argument. That component is build with UNICODE support. In that method, I have written this code.
    TCHAR tChar[255]; _stprintf(tChar,_T("%s"),(LPCTSTR)bstrName); // then print
    Is it correct way ? Thanks in advance

    C / C++ / MFC question

  • File pointer & File descriptor
    S san123pune

    Thank you toxcct

    C / C++ / MFC question

  • File pointer & File descriptor
    S san123pune

    What is difference between File pointer and File Descriptor?

    C / C++ / MFC question

  • ASCII vs UNICODE
    S san123pune

    Sorry Buddy :(

    C / C++ / MFC visual-studio

  • Win32 equivalent of CPtrList
    S san123pune

    U can use STL It is better to use vector or list with void * as container But it will not support for Cobject functionality

    C / C++ / MFC c++

  • ASCII vs UNICODE
    S san123pune

    I think u shd not use char * as it is not supported to UNICODE Either use CString or TCHAR Only this much I know :(

    C / C++ / MFC visual-studio

  • How to convert CString to char*.
    S san123pune

    CString str = "this is a test"; char* pchar = new char[str.GetLength() + 1]; //then .... strcpy(pchar, str.GetBuffer()); str.ReleaseBuffer(); It will copy the content from string to char *

    C / C++ / MFC debugging tutorial

  • How to authenticate SMTP Server
    S san123pune

    I think u use AUTH command incorrectly. AUTH cmd has parameter of Authentication type e.g CRAM-MD5 which is supported by server Following example will clarify this : [C : Client S: Server] C: EHLO jgm.example.com S: 250-smtp.example.com S: 250 AUTH CRAM-MD5 DIGEST-MD5 C: AUTH FOOBAR S: 504 Unrecognized authentication type. C: AUTH CRAM-MD5 S: 334 PENCeUxFREJoU0NnbmhNWitOMjNGNndAZWx3b29kLmlubm9zb2Z0LmNvbT4= C: ZnJlZCA5ZTk1YWVlMDljNDBhZjJiODRhMGMyYjNiYmFlNzg2ZQ== S: 235 Authentication successful. Hope this will useful to u ...

    C / C++ / MFC question sysadmin security tutorial

  • Failed to remove/rename the file using remvoe()/rename()
    S san123pune

    I think first u hav to chk for access rights ..... if access rights r fine then try this... char oldFile[512]; instead of char *oldFile Hope this will help u ...:)

    C / C++ / MFC xml help question

  • How to connect to SFTP Server
    S san123pune

    Hi, I wann to connect to SFTP server using MFC :doh:. How can I do that :(? Thank you Sandeep

    C / C++ / MFC question c++ sysadmin tutorial
  • Login

  • Don't have an account? Register

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