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
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
Hi, Vista can be 64bit too :) MS's code for getting system version: http://msdn2.microsoft.com/en-us/library/ms724429.aspx[^]
----------- Mila
Hi, I'm not sure but check this: http://www.codeproject.com/staticctrl/hyperlinkscroller.asp[^] http://www.codeproject.com/staticctrl/CTextScroller.asp[^]
----------- Mila
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
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
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
Hi, Every thread will have individual handle and ID. Besides everything depends on way how you will want closing your threads.
----------- Mila
Hi, Connection is disconnected because socket (address and port) is not valid any longer.
----------- Mila
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
Hi, hm ... check if all pointers are initialized
----------- Mila
Hi, This can help you: http://msdn2.microsoft.com/en-us/library/ms670342.aspx[^]
----------- Mila
Hi, Did you include Windows.h header ?
----------- Mila
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
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
Hi, what error ?
----------- Mila
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
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
Hi, You trying to be too fast ;-) if ( x1.CompareNoCase( s1 ) || x1.CompareNoCase( s2 ) ) { ... }
----------- Mila
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