First  |  Prev |  Next  |  Last
Pages: 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
U++ 1952 released
Website: http://www.ultimatepp.org Download: http://code.google.com/p/upp-mirror/downloads/list U++ is BSD licensed C++ cross-platform rapid application development suite focused on programmers productivity without sacrificing runtime performance. What is new in version 1952: TheIDE: * Improved installatio... 26 Jan 2010 05:26
Set processor core affinity to a thread
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> <blockquote cite="mid:ddacd63d-f5b2-471b-a3f3-843faf56c1f7(a)c34g2000yqn.googlegroups.com" ... 26 Jan 2010 03:17
Stupid question (bear with me): copy file
I am trying to find out what is the prevalent method of copying file, at large. For me, I use drag-and-drop in windows explorer. I am a bit amused when I discover that college graduates in computer studies who know only copy-and-paste. Off my head I say to myself: why clog the RAM with such data ? How do... 2 Feb 2010 15:13
Making TIME_ZONE_INFORMATION find if Daylight savings is active
On 25 jan, 04:43, Jimbo <nill...(a)yahoo.com> wrote: Hello I am trying to use the Win32 function SystemTimeToTzSpecificLocalTime to get the time of a local city. And it works but, if the city is currently using daylight savings then my time comes out 1 hour behind. I have read in MSDN that i can use ... 25 Jan 2010 16:12
gmtime unsafe
Hi, is there any way to convert this to gmtime_s?? // getDateTime (Fri, 10 Oct 2008 14:41:59 GMT) string getDateTime(void) { time_t rawtime; struct tm * timeinfo; time(&rawtime); timeinfo = gmtime(&rawtime); char buffer[30]; strftime(buffer,30,"%a, %d %b %Y %X GMT",timeinfo); return static_cast<st... 26 Jan 2010 12:03
Read an XML file as Unicode Text
Hi, We are trying to read an XML file as text file (in "C"). The problem is when the text is unicode - we get garbage. (for ASCII file it works OK). Here is our "C" code: ---------------------------- FILE *fp; TCHAR buff[1000]; fp = _tfopen(_T("C:\\IniTest\\test.xml"), _T("r, ccs=UNICODE")); ... 25 Jan 2010 11:38
[C++ builder] Problem with TShape
Hello, is possibile avoid the call to invalidate method of TShape? I would want that the follow istruction: MyShape->Brush->Color = clRed; (where MyShape is a TShape) Don't call TShape::Invalidate, because it make MyShape white, also if only for a some milliseconds. ... 25 Jan 2010 05:02
Making TIME_ZONE_INFORMATION find if Daylight savings is active
Hello I am trying to use the Win32 function SystemTimeToTzSpecificLocalTime to get the time of a local city. And it works but, if the city is currently using daylight savings then my time comes out 1 hour behind. I have read in MSDN that i can use this function to take into account daylight savings IF I alter ... 24 Jan 2010 23:37
Windows Message sent when Mouse is no in Client Area OR NCClient area
Hello I am making an application in Win32 that can display the mouse x,y coordinates whereever the mouse is, whether in the client window or outside it. What windows message is sent the Windows Proceedure function when the mouse is outside the client area of an application. I thought it was WM_NCMOUSEMOVE ... 26 Jan 2010 10:55
DefWinProc() doesn't return during window resizing?
I find myself confused about the way Windows handles window resizing. What appears to happen, from my observations, is this: - user grabs edge of window. - event (don't know which one yet) arrives at app. - app calls DispatchMessage() which invokes the app's window proc. - app calls DefWindowProc(). - DefWind... 23 Jan 2010 19:55
First  |  Prev |  Next  |  Last
Pages: 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46