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
M

Mila025

@Mila025
About
Posts
128
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • MySQL connection
    M Mila025

    Hi, Apache uses php and in php configuration file is a whole section about MySQL and entry mysql.default_port. If you'd like to change that port you can modify my.cnf file (MySQL configuration file).

    ----------- Mila

    IT & Infrastructure csharp php apache mysql sysadmin

  • platform id for windows vista
    M Mila025

    Hi, Vista can be 64bit too :) MS's code for getting system version: http://msdn2.microsoft.com/en-us/library/ms724429.aspx[^]

    ----------- Mila

    Windows API question

  • How to run banner on any dialog basesd form in vc++
    M Mila025

    Hi, I'm not sure but check this: http://www.codeproject.com/staticctrl/hyperlinkscroller.asp[^] http://www.codeproject.com/staticctrl/CTextScroller.asp[^]

    ----------- Mila

    C / C++ / MFC c++ tutorial

  • Details about MCP and dumps.
    M Mila025

    Hi, When I took exam was: - find a company which has rights to organize exams (usually an training/course center) - contact with them and set a date for your exam - next probably you will have to fill a form (form their webpage) and send it back to them. In my case I had to pay a fee for exam the same day when I took it. There was one-person room with desk and computer with exam's application. You get in without mobiles, books, bags or bagpacks - you will get piece of papier and pen. You've got 135 minutes for 50 questions (I can mix up a bit). Result is displayed when you finish your exam. http://www.microsoft.com/learning/mcp/mcp/default.mspx[^]

    ----------- Mila

    IT & Infrastructure mcp help

  • ending single thread
    M Mila025

    when you create thread e.g. HANDLE hHandle = CreateThead( ... ); CreateThead function returns handle to the only that one thread. Besides the last param of CreateThead returns ID of the thread.

    ----------- Mila

    C / C++ / MFC design help

  • socket program help
    M Mila025

    Hi, Telnet clients doesn't connect just like that - for telnet connection is special protocol - helping documents: Telnet protocol: RFC 318 Telnet protocol specification: RFC 854 Telnet options specifications: RFC 855.

    ----------- Mila

    C / C++ / MFC sysadmin linux help

  • ending single thread
    M Mila025

    Hi, Every thread will have individual handle and ID. Besides everything depends on way how you will want closing your threads.

    ----------- Mila

    C / C++ / MFC design help

  • Socket connection
    M Mila025

    Hi, Connection is disconnected because socket (address and port) is not valid any longer.

    ----------- Mila

    C / C++ / MFC sysadmin question

  • How to creat short dos paths for long dos paths
    M Mila025

    Hi, Your path should be enclosed in quotation marks: "C:\Program Files\Common Files\Microsoft Shared\web server extensions\60\BIN\STSADM.EXE" stsadm -o upgrade -forceupgrade -url http://amarjeet-yqt4x9:8080/ unles you prefer that notation ;-) : C:\PROGRA~1\COMMON~1\MICROS~1\WEBSER~1\60\BIN\STSADM.EXE stsadm -o upgrade -forceupgrade -url http://amarjeet-yqt4x9:8080/

    ----------- Mila

    C / C++ / MFC help tutorial

  • Release mode problem ?
    M Mila025

    Hi, hm ... check if all pointers are initialized

    ----------- Mila

    C / C++ / MFC help question debugging announcement

  • vc++/MFC
    M Mila025

    Hi, This can help you: http://msdn2.microsoft.com/en-us/library/ms670342.aspx[^]

    ----------- Mila

    C / C++ / MFC c++

  • smtp server authentication
    M Mila025

    Hi, If I remember well when you trying to connect with authenticated server you should use EHLO keyword instead HELO. Perhaps this helps you: rfc2554[^]

    ----------- Mila

    C / C++ / MFC c++ sysadmin cloud security tutorial

  • Adding File names to list box.
    M Mila025

    Hi, Did you include Windows.h header ?

    ----------- Mila

    C / C++ / MFC help question

  • Application Error
    M Mila025

    Hi, Did you check it in second folder ? VS2005 has different folder structure - one Debug/Release foder is in solution folder and the second in project. And the thread which you reffered ... you wrote that you solved the problem. You wrote that problem occurs sometimes - perhaps some pointers are not valid or incorect initialized - try to detect which function or which line causes crashes (you can e.g. create an log file)

    ----------- Mila

    C / C++ / MFC help question

  • Deleting an item from list box using API
    M Mila025

    Hi, To get selected item you should use LB_GETCURSEL (LB_GETCOUNT returns number of items). Besides if you want to use LB_DELETESTRING you need first retrieve what text is at selected item - LB_GETTEXT.

    ----------- Mila

    C / C++ / MFC json help question

  • How to Domodal progress dialog
    M Mila025

    Hi, what error ?

    ----------- Mila

    C / C++ / MFC help tutorial

  • how to retrieve the IP address of a system?
    M Mila025

    Hi, gethostbyname ... has been deprecated ;-) use: int getaddrinfo( const char* nodename, const char* servname, const struct addrinfo* hints, struct addrinfo** res ); addrinfo host; LPADDRINFO res; ... host.ai_flags = AI_CANONNAME; host.ai_protocol = IPPROTO_TCP; host.ai_family = PF_INET; host.ai_socktype = SOCK_STREAM; getaddrinfo( strMachineName, NULL, &host, &res ); ...

    ----------- Mila

    C / C++ / MFC help tutorial question

  • How to compare string..
    M Mila025

    Hi, hm... interesting - and what type are x1 and mytext->contents -> is it CString too ? (I'm thinking about e.g. you use VS2005 where default is UNICODE defined and you try to compare default CString with char *) Besides you can check what exactly return particular comparing functions (if equal should returns NULL)

    ----------- Mila

    C / C++ / MFC question tutorial

  • How to compare string..
    M Mila025

    Hi, You trying to be too fast ;-) if ( x1.CompareNoCase( s1 ) || x1.CompareNoCase( s2 ) ) { ... }

    ----------- Mila

    C / C++ / MFC question tutorial

  • detecting the FTP connection break down.
    M Mila025

    Hi, No, pinging does tell you nothing because e.g. server can disconnect your session in any reason but its own will still working. Add callback function to your code and check events CInternetSession::OnStatusCallback.

    ----------- Mila

    C / C++ / MFC question sysadmin
  • Login

  • Don't have an account? Register

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