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
A

Anthony_Yio

@Anthony_Yio
About
Posts
549
Topics
54
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Declaring too many local variable in a function would affect the performance?
    A Anthony_Yio

    Depends on what is it doing in the constructor codes of the data type. Primitive data type should be harmless or at least not noticeable. If you running out of memory, it would also slow down your program because of resort to virtual memory. (It will slow or crash even for whatever you do I think anyway)

    Sonork 100.41263:Anthony_Yio

    C / C++ / MFC performance question

  • vc++6.0 call Web Service(written by Vc++.net--> ATL)????
    A Anthony_Yio

    You could probably try to write yourself a simple SOAP client using WinSock or probably could try to use WinInet to do it. How about to search for another SOAP SDK? (which most probably not free like this one http://www.sqldata.com/soapclient/usingSoap.htm[^]) Sonork 100.41263:Anthony_Yio

    C / C++ / MFC c++ tutorial csharp wcf xml

  • vc++6.0 call Web Service(written by Vc++.net--> ATL)????
    A Anthony_Yio

    It is still using SOAP,in fact I believe web service (regardless of Java or any other platform) are using SOAP protocol as foundation which you can't escape from it. Anyway, you can try this http://www.codeproject.com/webservices/SoapClient\_CPP.asp Sonork 100.41263:Anthony_Yio

    C / C++ / MFC c++ tutorial csharp wcf xml

  • Debugging...
    A Anthony_Yio

    Get the Debugging Applications - Ms Press by John Robin. The book does show on how to develop one simple debugger with some sample codes. Sonork 100.41263:Anthony_Yio

    C / C++ / MFC c++ debugging performance help tutorial

  • Accesing Outlook function from VC++
    A Anthony_Yio

    Use OOM or CDO through VC++. Check http://www.outlookcode.com/ Sonork 100.41263:Anthony_Yio

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

  • CString::FormatMessage STL equivalent ?
    A Anthony_Yio

    In case you can't wait for the reply from PJ Arends. Try this http://www.codeproject.com/vcpp/stl/ostringstream.asp (by Christian Graus) Sonork 100.41263:Anthony_Yio

    C / C++ / MFC c++ com question

  • Can STL vector cross DLL boundaries?
    A Anthony_Yio

    Try to do vector:reserve in *.exe before any push_back in *.dll to ensure all memory allocation activities are done in the executable. Sonork 100.41263:Anthony_Yio

    C / C++ / MFC help c++ graphics performance question

  • how to configure log4net for class library project
    A Anthony_Yio

    I am not sure would it help cause I was using it for Winform .NET. Anyway, here is the link. http://anthony-yio.blogspot.com/2005_01_01_anthony-yio_archive.html[^] Sonork 100.41263:Anthony_Yio -- modified at 6:27 Tuesday 13th December, 2005

    C# tutorial

  • Windows 2000 - _vsnwprintf - strsafe.lib
    A Anthony_Yio

    I think it is in MSVCRT.DLL Sonork 100.41263:Anthony_Yio

    C / C++ / MFC help question

  • How to Access Web Service
    A Anthony_Yio

    I guess you can start here http://www.codeproject.com/webservices/[^] Sonork 100.41263:Anthony_Yio

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

  • namespaces
    A Anthony_Yio

    May be you could try forward declaration. like namespace Mammal { namespace Cat{ Class Siamese;} } then, the actual dog namespace then, the actual cat namespace. Sonork 100.41263:Anthony_Yio

    C / C++ / MFC help question

  • Capturing KeyUp and Setting Value ...
    A Anthony_Yio

    That is because the KeyValue return int. [C++] public: __property int get_KeyValue(); Sonork 100.41263:Anthony_Yio

    C / C++ / MFC help csharp c++ com tools

  • AfxBeginThread() ???
    A Anthony_Yio

    Your MyThreadProc need to be static. And you only need to call like AfxBeginThread(MyThreadProc,(LPVOID)this,0); E.g CWinThread* pThread = AfxBeginThread (ThreadFunc, lpVoid, THREAD_PRIORITY_NORMAL, 0, CREATE_SUSPENDED); ASSERT (NULL != pThread); pThread->m_bAutoDelete = FALSE; pThread->ResumeThread (); By the way, make sure you protect the variables that you are accessing in the 'this ' in the thread by using those synchronization classes like CMutex, Interlock functions and etc. Sonork 100.41263:Anthony_Yio

    C / C++ / MFC help question

  • How to copy a File to another place using C++
    A Anthony_Yio

    You can call Win32 API CopyFile( "C:\\abc.mdf", // name of an existing file "D:\\abc.mdf", // name of new file FALSE // operation if file exists ); Sonork 100.41263:Anthony_Yio

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

  • How Can I call another application from my program?
    A Anthony_Yio

    A nice intro article by Nish on ShellExec and CreateProcess. http://www.codeproject.com/system/newbiespawn.asp[^] Sonork 100.41263:Anthony_Yio

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

  • managers who shouldn't be managers
    A Anthony_Yio

    Did you inform what you think? I suppose that would make a difference. Sonork 100.41263:Anthony_Yio

    The Lounge help sysadmin question

  • to locate the previous instance of an application
    A Anthony_Yio

    http://www.codeproject.com/threads/singleinstancemfc.asp[^] http://www.codeproject.com/threads/singleinstance.asp[^] http://www.codeproject.com/cpp/csingleinst.asp[^] and lot more. Sonork 100.41263:Anthony_Yio

    C / C++ / MFC help question

  • thread's local storage, where is it ?
    A Anthony_Yio

    There are few good articles for this topic avail in here (codeproject). They are http://www.codeproject.com/threads/tls.asp[^] http://www.codeproject.com/threads/threaddata.asp[^] http://www.codeproject.com/threads/csharedstruct.asp[^] Sonork 100.41263:Anthony_Yio

    C / C++ / MFC data-structures tutorial question

  • LDAP
    A Anthony_Yio

    Does ASDI require Ms Exchange? I need something that only have dependencies to Windows(9x, NT) and no more. thanks. Sonork 100.41263:Anthony_Yio

    C / C++ / MFC c++ question

  • call back
    A Anthony_Yio

    Check this URL http://www.codeproject.com/cpp/callbacks.asp[^] Sonork 100.41263:Anthony_Yio

    C / C++ / MFC question json
  • Login

  • Don't have an account? Register

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