Windows programmer
|
Registered User
|
|
|
1d |
accepted | How to determine storage type (SSD drive or HHD .mechanical drive), using C language |
|
Nov 25 |
comment |
Is there an API for time zones based on IP address? That's why I worded the comment the way I did. It's a very small percentage of total accesses, but it's still nearly guaranteed to be nonzero. |
|
Nov 24 |
comment |
Great programming quotes "If all you have is a hammer, everything looks like a thumb" |
|
Nov 24 |
comment |
Great programming quotes Actually "It depends" is the answer to MOST good software engineering questions. As for whether it's the answer to your question, well, it depends. |
|
Nov 24 |
comment |
Great programming quotes Your CTO wasn't born yet when that fact was first observed. |
|
Nov 24 |
comment |
Is there an API for time zones based on IP address? It's still going to be a guess. Each time a region changes between standard time and daylight time, you can be sure at least some people in that region are going to be in the middle of a session somewhere. |
|
Nov 24 |
comment |
Is this a standard C++ code? The function exists in both the struct and its base type. myclass::*function references the base type's print method because that's what the assignment statement assigned. If the standard permitted this code then it's obvious what would happen. |
|
Nov 24 |
answered | How to print out encoded Asian characters(gb2312) on command prompt? |
|
Nov 24 |
comment |
Is this a standard C++ code? The quoted rule obviously applies but it's not obvious how to find it. It would be nice if gcc would say what rule it's applying. As for what the standards committee might be thinking, for a minute I thought it might be the vtbl, but that doesn't seem likely because pointers to base classes handle vtbls properly. Weird. |
|
Nov 11 |
accepted | What font and size is used in Windows 7 File Explorer Tree |
|
Nov 11 |
revised |
suppress C++ compiler warning from a specific line edited tags |
|
Nov 11 |
answered | How to determine storage type (SSD drive or HHD .mechanical drive), using C language |
|
Nov 11 |
comment |
How to determine storage type (SSD drive or HHD .mechanical drive), using C language OT but, "i think from vista onwards it would always make the boot drive C" -- no, usually yes but not always, it depends on how you do the install. "dual boot and BOTH windows OSes thought their primary drive was C" -- sure, usually yes but not always. |
|
Nov 9 |
answered | javascript fails in firefox but works fine in IE |
|
Nov 6 |
comment |
#pragma comment(lib, “xxx.lib”) equivalent under Linux? During recent decades it has become popular for programmers to design .h files and .lib files to have some kind of relationship with each other. In such a case it DOES make sense for an .h file to contain a pragma telling the linker to link the corresponding .lib file. Sure gcc doesn't have it, but that doesn't mean it doesn't make sense. |
|
Nov 6 |
comment |
#pragma comment(lib, “xxx.lib”) equivalent under Linux? "correct compilation depends on link order." -- No, as the linked article states, correct LINKING depends on link order. |
|
Nov 6 |
comment |
Strange segmentation fault C++ in _vfprintf_r() "That's right, a Stack Overflow." -- I tried searching to find what was so funny about that, but I got a Stack Overflow. |
|
Nov 4 |
comment |
What font and size is used in Windows 7 File Explorer Tree Your original question asked how to find it out programmatically (C#). If you don't need it programmatically, then just open a Windows Explorer window and open Spy++ and maybe Spy++ will give you enough information to find the font -- for your machine only. Robert Harvey's avatar is a Chinese character which is displayed by Chinese Windows Explorer, using a font that Robert Harvey's answer didn't name, which you might not even have installed. |
|
Nov 4 |
comment |
What font and size is used in Windows 7 File Explorer Tree Maybe I misinterpreted your latest comment. Please ignore my latest comment. The tree view control defaults to using the same font as icon titles, but applications can change it. WinForms applications do default to setting their forms to use different fonts than plain Win32 defaults. Now I guess you're saying that Win 7 File Explorer also tells its tree view to use a different font than plain Win32 defaults. If the user has an Explorer window open you can find the window and get its font, but if the user doesn't have one open, it seems difficult. |
|
Nov 3 |
comment |
What font and size is used in Windows 7 File Explorer Tree Your question asked about Win 7 File Explorer. That is not a demo win forms application. WinForms applications default to different fonts. |
|
Nov 2 |
answered | Fortran: How do I read the first character from each line of a text file? |
|
Nov 2 |
comment |
Solid Foundation in programming for windows (Internals) I wonder why I marked my answer as "community wiki" when no one else did. |
|
Nov 2 |
comment |
Solid Foundation in programming for windows (Internals) "And another book is Windows Internals" -- that might be why it was #2 in the list in the original question. |
|
Nov 1 |
answered | Solid Foundation in programming for windows (Internals) |
|
Nov 1 |
answered | What font and size is used in Windows 7 File Explorer Tree |
|
Oct 29 |
answered | Remote Debugging Fail - No suitable logon session |
|
Oct 27 |
answered | Running on Windows CE 6 ‘and’ Windows XP |
|
Oct 27 |
accepted | Receiving order of socket |
|
Oct 26 |
comment |
Receiving order of socket Each UI thread has a message pump for Windows messages. If you're using raw Win32 APIs then your winmain calls GetMessage, DispatchMessage, etc. and you have your own WndProc. If you're using MFC then part of the MFC library does this for you. Either way, whether you coded it or not, your UI thread has a message pump. MSDN has many pages describing message pumps and it won't fit in a comment like this. |
|
Oct 26 |
answered | Receiving order of socket |
|
Oct 18 |
awarded | ● Necromancer |
|
Oct 13 |
comment |
How to find k nearest neighbors to the median of n distinct numbers in O(n) time? "choose k elements by reading the first k non empty values of the arrays" -- in order to do that, the arrays have to be sorted. Sorting those arrays takes time O(n log n). |
|
Oct 13 |
comment |
What technologies are you using even though they are embarassingly out of date? Sometimes I still have to hit F6 near the beginning of a Windows reinstallation. You get one guess what kind of media it reads drivers from. Without those drivers Windows won't find hard drives to install itself to. |
|
Oct 1 |
awarded | ● Yearling |
|
Sep 30 |
accepted | ASP .NET Label orientation for East Asian Text |
|
Sep 29 |
comment |
C/C++: Force Bit Field Order and Alignment The output of a and b indicates that endianness is still talking about bit orders AND byte orders. |
|
Sep 28 |
comment |
Computer Language puns and jokes It's almost PL/I. You need another semicolon: IF IF = THEN THEN THEN = ELSE; ELSE ELSE = IF; If you're a compiler writer you have to understand that. If you're a programmer (even if you're a compiler writer) you don't write code like that. |
|
Sep 28 |
answered | What is your best programmer joke? |
|
Sep 28 |
comment |
In VIM, is it possible to use the selected text in the substitute clause without retyping it? Now to make my life easier... :s/pls send me teh codez/<ctrl-r>codez/ |
|
Sep 27 |
comment |
What’s your favorite “programmer ignorance” pet peeve? I just checked and you're right. I wasn't trying to put my comment in the wrong place, I hadn't noticed that C++ differed from C on this matter, and my comment was wrong for what it says. Maybe we should publish an article in a scholarly publication. "C considered harmful, for C++ programmers" :^) |
|
Sep 25 |
comment |
CreateProcessAsUser error 1314 It looks like you'd better learn C++ and then return to Windows APIs. |
|
Sep 25 |
comment |
ASP .NET Label orientation for East Asian Text style="...; ...; layout-flow: vertical-ideographic;" |
|
Sep 25 |
answered | CreateProcessAsUser error 1314 |
|
Sep 25 |
comment |
CreateProcessAsUser error 1314 You're lucky that you even know the error number. The correct way to call GetLastError is to call it immediately after calling an API, if the API failed. If you call anything else in between (for example printf) then GetLastError will usually give you a later error instead of the error that you wanted. |
|
Sep 25 |
answered | ASP .NET Label orientation for East Asian Text |
|
Sep 25 |
comment |
What’s your favorite “programmer ignorance” pet peeve? Myth: NULL is always zero, and it's not an address. It's an integer. Reality: NULL is either 0 or (void*) 0, depending on the implementor's choice. (Or any other expression that evaluates to one of these at compile time.) |
|
Sep 16 |
comment |
How to compare two BSTRs or CComBSTRs? Read what MSDN says about the return result. The data type is an HRESULT but the meanings aren't HRESULT meanings. |
|
Sep 15 |
answered | Why does Windows application is requiring .Net 3.5 framework |
|
Sep 15 |
accepted | Question About CFile Seek. |
|
Sep 15 |
answered | Question About CFile Seek. |
