User Windows programmer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T12:03:50Zhttp://stackoverflow.com/feeds/user/23705http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1911378#19113780Answer by Windows programmer for What's your most controversial programming opinion?Windows programmer2009-12-16T00:03:20Z2009-12-16T00:03:20Z<p>80% of bugs are introduced in the design stage.
<br>
The other 80% are introduced in the coding stage.</p>
<p>(This opinion was inspired by reading Dima Malenko's answer. "Development is 80% about the design and 20% about coding", yes. "This will produce code with near zero bugs", no.)</p>
http://stackoverflow.com/questions/1852334/algorithm-that-generates-unique-serial-number-for-each-english-word/1904988#19049880Answer by Windows programmer for Algorithm that Generates Unique Serial Number for Each English WordWindows programmer2009-12-15T03:28:48Z2009-12-15T03:28:48Z<p>I wonder if an answer is even possible.</p>
<p>Are color and colour the same word? Do they get one serial number or two?</p>
<p>Are polish and Polish the same word?</p>
<p>Are watch (noun) and watch (verb) the same word?</p>
<p>Are multiply (verb) and multiply (adverb) the same word?</p>
<p>Analysis (singular noun) and analyses (plural noun) are not the same word. Are analyse (plural verb) and analyze (plural verb) the same word? Are analyses (singular verb) and analyzes (singular verb) the same word? Are analyses (singular verb) and analyses (plural noun) the same word?</p>
<p>Are wont and won't the same word?</p>
<p>Are Beijing and Peking the same word? Or maybe they aren't English, since Londres and Frankreich aren't English, but then what is the English word for the capital of the Middle Country?</p>
http://stackoverflow.com/questions/1886418/default-installation-path-of-windows-2003-server-c-windows-or-c-winnt/1886476#18864760Answer by Windows programmer for Default installation path of Windows 2003 server: C:\WINDOWS or C:\WINNTWindows programmer2009-12-11T07:48:31Z2009-12-11T07:48:31Z<p>"What is the default installation folder for Windows 2003 server?"</p>
<p>The default folder name is WINDOWS, but the user can input whatever name they like. There is no default partition so the drive letter could be anything in the range C to Z.</p>
<p>"In case if NT based OS use C:\WINNT as default, then why Windows XP (which is NT based) and even the Windows 2003 server at my office installed at C:\WINDOWS by default?"</p>
<p>The drive letter had no default in NT either so it might be D:\WINNT or Z:\WINNT or whatever, depending on which drives had which partitions and which partition the person was installing NT into.</p>
<p>As for why the default folder name changed, you'd really have to ask Microsoft, but here's my guess. Windows 2000 was supposed to unify the old NT series and old Windows 1/2/3/95/98 series, so there was no longer a need to distinguish the NT series, and they just defaulted the name to WINDOWS. My guess is that this plan assumed ME wasn't going to happen.</p>
<p>Anyway, in NT too, the person could type a different folder name if they didn't want the default folder name.</p>
http://stackoverflow.com/questions/1844733/is-this-c-function-written-in-poor-form/1844782#18447823Answer by Windows programmer for Is this C function written in poor form?Windows programmer2009-12-04T04:06:54Z2009-12-04T04:06:54Z<p>Is it poor form to convert to floating, call fmod, and convert to integer, instead of just using the % operator? I would say yes. There are more readable ways to slow down a program to meet some timing requirement, for example sleeping in a for loop. No matter what compiler or what tweaking of assembly code or whatever else, this is a highly obfuscated way to control the execution speed of your program, and I call it poor form.</p>
<p>If perfect assembly code means that it works right but it's even slower than the conversions to floating point and back, then use integers and sleep in a for loop.</p>
<p>As for the imperfect assembly code, what's the problem? "at the expense of being able reference the addresses of all my byte arrays"? It looks like type char* is working in your code, so it seems that you can address all your byte arrays the way the C standard says you can. What's the problem?</p>
http://stackoverflow.com/questions/1787497/how-to-print-out-encoded-asian-charactersgb2312-on-command-prompt/1787784#17877840Answer by Windows programmer for How to print out encoded Asian characters(gb2312) on command prompt?Windows programmer2009-11-24T04:27:57Z2009-11-24T04:27:57Z<p>If you open the cmd window yourself, type the following command before running test.py:
mode con cp select=936</p>
<p>If your Python program starts by some other means, you'll have to make it open its console window with the correct code page.</p>
http://stackoverflow.com/questions/1712642/how-to-determine-storage-type-ssd-drive-or-hhd-mechanical-drive-using-c-langu/1712859#17128590Answer by Windows programmer for How to determine storage type (SSD drive or HHD .mechanical drive), using C languageWindows programmer2009-11-11T03:40:16Z2009-11-11T03:40:16Z<p>This guess is a long shot but I can't find anything better. In the device's identification structure, see if it supports acoustic management. Old disk drives didn't, but maybe most modern disk drives do. Obviously SSDs don't need acoustic management but let's hope they'll say they don't, instead of pretending to be disk drives.</p>
http://stackoverflow.com/questions/1699437/javascript-fails-in-firefox-but-works-fine-in-ie/1699445#16994450Answer by Windows programmer for javascript fails in firefox but works fine in IEWindows programmer2009-11-09T06:52:52Z2009-11-09T06:52:52Z<p>Add a call to Alert in your function to see if your function is even getting called.</p>
http://stackoverflow.com/questions/1658805/fortran-how-do-i-read-the-first-character-from-each-line-of-a-text-file/1659146#16591461Answer by Windows programmer for Fortran: How do I read the first character from each line of a text file?Windows programmer2009-11-02T02:13:26Z2009-11-02T02:13:26Z<p>I wonder why the open statement succeeds when file 7 hasn't been closed. I think you need an endfile statement and/or a rewind statement in between writing and reading.</p>
<p>Paul Tomblin posted what you have to do after you solve your problem in getting reads to work in the first place.</p>
http://stackoverflow.com/questions/1658695/solid-foundation-in-programming-for-windows-internals/1658711#16587113Answer by Windows programmer for Solid Foundation in programming for windows (Internals)Windows programmer2009-11-01T23:06:46Z2009-11-01T23:06:46Z<p>Your list is excellent.</p>
http://stackoverflow.com/questions/1658549/what-font-and-size-is-used-in-windows-7-file-explorer-tree/1658674#16586741Answer by Windows programmer for What font and size is used in Windows 7 File Explorer TreeWindows programmer2009-11-01T22:54:51Z2009-11-01T22:54:51Z<p>P/Invoke to SystemParametersInfo with SPI_GETICONTITLELOGFONT.</p>
<p>It depends on the language version of Windows. If you look at Robert Harvey's answer, you'll see a character that can't be displayed by Segoe UI.</p>
http://stackoverflow.com/questions/1641308/remote-debugging-fail-no-suitable-logon-session/1641849#16418490Answer by Windows programmer for Remote Debugging Fail - No suitable logon sessionWindows programmer2009-10-29T06:01:21Z2009-10-29T06:01:21Z<p>Maybe the deployment PC needs a firewall setting to allow control by the development PC?</p>
http://stackoverflow.com/questions/1553185/running-on-windows-ce-6-and-windows-xp/1628825#16288250Answer by Windows programmer for Running on Windows CE 6 'and' Windows XPWindows programmer2009-10-27T04:46:09Z2009-10-27T04:46:09Z<p>The last time I used Windows CE there was a version for x86. With careful coding you can detect if you're running under Windows CE or "real" Windows, and execute appropriate code for one or the other.</p>
<p>The .Net answer is kind of cheating. Half of the compilation is from your programming language to IL and doesn't need recompilation (if you're careful). Half of the compilation is JITting and always needs recompilation.</p>
http://stackoverflow.com/questions/1622974/receiving-order-of-socket/1622993#16229930Answer by Windows programmer for Receiving order of socketWindows programmer2009-10-26T03:55:53Z2009-10-26T03:55:53Z<p>While the MessageBoxA function is executing, it pumps messages to your window. Whether or not your thread was expecting them, MessageBoxA dispatched them to you.</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1485626#148562612Answer by Windows programmer for What is your best programmer joke?Windows programmer2009-09-28T06:03:34Z2009-09-28T06:03:34Z<p>There are 10 kinds of people on Stack Overflow.<br>
1. People who didn't read the duplicates of this joke.<br>
10. People who read one duplicate of this joke.<br>
10. People who read two duplicates of this joke.<br>
10. People who read three duplicates of this joke.<br>
10. People who read four duplicates of this joke.<br>
...<br>
11. People who have all the bases covered.</p>
http://stackoverflow.com/questions/1475577/createprocessasuser-error-1314/1475646#14756460Answer by Windows programmer for CreateProcessAsUser error 1314Windows programmer2009-09-25T05:57:23Z2009-09-25T05:57:23Z<p>Your code adds the SE_TCB_NAME privilege to your token.</p>
<p>MSDN says "Typically, the process that calls the CreateProcessAsUser function must have the SE_ASSIGNPRIMARYTOKEN_NAME and SE_INCREASE_QUOTA_NAME privileges."</p>
http://stackoverflow.com/questions/1475186/asp-net-label-orientation-for-east-asian-text/1475334#14753341Answer by Windows programmer for ASP .NET Label orientation for East Asian TextWindows programmer2009-09-25T03:48:00Z2009-09-25T03:48:00Z<p>layout-flow : vertical-ideographic</p>
http://stackoverflow.com/questions/1429063/why-does-windows-application-is-requiring-net-3-5-framework/1430231#14302310Answer by Windows programmer for Why does Windows application is requiring .Net 3.5 frameworkWindows programmer2009-09-15T23:57:57Z2009-09-15T23:57:57Z<p>If you're using Visual Studio to build your setup project, open the setup project's properties and look through the settings. One setting says which .Net version will be demanded by the installer package. You have to set that; it doesn't inherit from known properties of your other projects.</p>
http://stackoverflow.com/questions/1424934/question-about-cfile-seek/1425031#14250311Answer by Windows programmer for Question About CFile Seek.Windows programmer2009-09-15T03:47:50Z2009-09-15T03:47:50Z<p>I think MSDN misstated the matter slightly. When you call Seek the file pointer is adjusted, but the actual file on the disk doesn't change yet. If you call Write after that, then the actual file will become a sparse file (on NTFS) or a longer file (on FAT), with the expected length.</p>
<p>There don't seem to be any definite rules.</p>
http://stackoverflow.com/questions/688760/how-to-create-a-utf-8-string-literal-in-visual-c-2008/1424943#14249430Answer by Windows programmer for How to create a UTF-8 string literal in Visual C++ 2008Windows programmer2009-09-15T03:15:51Z2009-09-15T03:15:51Z<p>Maybe try an experiment:</p>
<pre><code>#pragma setlocale(".UTF-8")
</code></pre>
<p>or:</p>
<pre><code>#pragma setlocale("english_england.UTF-8")
</code></pre>
http://stackoverflow.com/questions/1398008/how-to-add-a-shortcut-to-the-exe-file-in-the-setup-project/1398035#13980351Answer by Windows programmer for How to add a shortcut to the exe file in the setup project?Windows programmer2009-09-09T07:18:52Z2009-09-09T07:18:52Z<p><a href="http://msdn.microsoft.com/en-us/library/sat42980.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/sat42980.aspx</a></p>
http://stackoverflow.com/questions/1309909/japanese-cobol-code-on-ibm-mainframe-in-shift-jis-represented-after-transfer-to/1310053#13100530Answer by Windows programmer for Japanese COBOL code on IBM mainframe in Shift-JIS; represented after transfer to a PC how?Windows programmer2009-08-21T04:11:18Z2009-08-21T04:11:18Z<p>Source code is a text file. How is the text file copied? Is the mainframe running Linux with a Samba server? An FTP server? A web server? nfs?</p>
<p>What is the client running? Windows explorer? An FTP command? A web browser? nfs?</p>
http://stackoverflow.com/questions/1309432/selected-item-in-my-clistctrl-shows-ellipsis-despite-having-plenty-of-room/1310039#13100390Answer by Windows programmer for Selected item in my CListCtrl shows ellipsis, despite having plenty of room!Windows programmer2009-08-21T04:05:14Z2009-08-21T04:05:14Z<p>MSDN doesn't seem to say if SetColumnWidth forces the contents to be redrawn automatically.</p>
http://stackoverflow.com/questions/1061224/windows-invariant-culture-puzzle/1061324#10613240Answer by Windows programmer for Windows Invariant Culture PuzzleWindows programmer2009-06-30T01:14:02Z2009-06-30T01:14:02Z<p>"However, I don't really have any idea what kind of mappings the invariant culture does, other than the fact that its what windows uses for comparing file names."</p>
<p>I didn't think Windows used the invariant culture when comparing file names. For example if my culture is English then I can name two separate files turkish and TURKİSH, but if someone's culture is Turkish then I hope Windows won't let them do that.</p>
http://stackoverflow.com/questions/1056391/why-is-string-contains-returning-false/1056476#10564760Answer by Windows programmer for Why is string.contains() returning false?Windows programmer2009-06-29T03:41:12Z2009-06-29T03:41:12Z<p>What's evaluating to false, your test variable or part of the display in statusLabel.text? Are you sure the display isn't something like this:</p>
<pre><code>The value of test: false
The value of test: false
The value of test: false
The value of test: false
The value of test: true
The value of test: false
</code></pre>
<p>and maybe you're only looking at the first line of that string?</p>
http://stackoverflow.com/questions/1046876/when-is-the-planned-date-for-c0x-to-be-released-into-the-wild/1047064#10470640Answer by Windows programmer for When is the planned date for C++0x to be released into the wild?Windows programmer2009-06-26T02:22:52Z2009-06-26T02:22:52Z<p>Around 200A or 200B. If you remember the Y2K problem, these are years 199K and 199L ... oops wait, K and L aren't hex digits. Boom!</p>
http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/1036494#10364941Answer by Windows programmer for What was your first computer game that got you interested in computers?Windows programmer2009-06-24T05:13:59Z2009-06-24T05:13:59Z<p>Tic Tac Toe. The user's moves were input by flipping switches on the front panel. There weren't enough switches so cell numbers from 0 to 8 had to be encoded in binary (4 switches for 4 bits). Then a printout on the typewriter showed both the user's move and the computer's next move.</p>
<p>Adventure came a loooong time later. Dungeon came after that.</p>
http://stackoverflow.com/questions/997175/how-can-i-take-a-screenshot-and-save-it-as-jpeg-on-windows/999210#9992100Answer by Windows programmer for How can I take a screenshot and save it as JPEG on Windows?Windows programmer2009-06-16T01:12:55Z2009-06-16T01:12:55Z<p>libjpeg is free, open source, coded in C. You can copy their code into yours.</p>
<p><a href="http://sourceforge.net/project/showfiles.php?group%5Fid=159521" rel="nofollow">http://sourceforge.net/project/showfiles.php?group_id=159521</a></p>
http://stackoverflow.com/questions/984866/why-use-c/984874#9848749Answer by Windows programmer for Why use C?Windows programmer2009-06-12T03:51:09Z2009-06-12T03:51:09Z<p>"why we are using C language for writing drivers and OS codes.?"</p>
<p>So that programmers won't have to learn new syntax of each new assembly language for each new kind of machine.</p>
<p>"Is there any drivers written in any other languages?"</p>
<p>Historically, assembly languages. I don't remember if PL/S or BLISS could be used for drivers. Maybe B. In modern times, a few brave people use C++ but they have to be very careful. C++ can be used a bit more easily in user mode drivers in some situations.</p>
http://stackoverflow.com/questions/984235/odd-warning-c4127-conditional-expression-is-constant-under-vs2005/984830#9848303Answer by Windows programmer for odd "warning C4127: conditional expression is constant" under VS2005Windows programmer2009-06-12T03:24:45Z2009-06-12T03:44:50Z<p>There's a piece of code at the top of LightZ.cpp that goes like this:</p>
<pre><code>#define for if (false) {} else for
</code></pre>
<p>That means your actual statement is:</p>
<pre><code>#define for if (false) {} else for ( int i = 0; i <= MAX_BITS; ++i )
</code></pre>
<p>which is why you're getting the constant expression error (it's the <code>false</code>, not the <code>i <= MAX_BITS</code> as I thought).</p>
<p>Simply comment out or delete that line from the file (I can't actually figure out why they would do that).</p>
http://stackoverflow.com/questions/976568/char-array-to-lpctstr-conversion-in-c/984859#9848590Answer by Windows programmer for char array to LPCTSTR conversion in cWindows programmer2009-06-12T03:41:58Z2009-06-12T03:41:58Z<p>"Does anyone know how to convert a char array to a LPCSTR in c?"</p>
<p>You don't have to do anything at all. It automatically converts to that type (except in initializers and sizeof).</p>
<p>"CreateFile(portName..."</p>
<p>Perhaps you should tell us the error message that VC++ gives you at compile time?</p>
<p>Perhaps you should also tell us what error message VC++ gave you when Adam Rosenfield's whcar_t version didn't work for you?</p>
http://stackoverflow.com/questions/1717212/facebook-platform-error-object-cannot-be-likedComment by Windows programmer on Facebook Platform error: "Object cannot be liked"Windows programmer2009-12-15T03:36:14Z2009-12-15T03:36:14ZIf the object is Facebook then I agree that the object cannot be liked.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1904382#1904382Comment by Windows programmer on What's your most controversial programming opinion?Windows programmer2009-12-15T00:28:25Z2009-12-15T00:28:25ZYour programming opinion doesn't look very controversial to me. In fact I can't even see what your programming opinion is.http://stackoverflow.com/questions/1904321/can-12-1-be-represented-exactly-as-a-floating-point-number/1904387#1904387Comment by Windows programmer on Can 12.1 be represented exactly as a floating point number?Windows programmer2009-12-15T00:25:19Z2009-12-15T00:25:19ZP.S. That is, it was implemented in hardware around 50 years ago, though it was also implemented in software before and after that.http://stackoverflow.com/questions/1904321/can-12-1-be-represented-exactly-as-a-floating-point-number/1904387#1904387Comment by Windows programmer on Can 12.1 be represented exactly as a floating point number?Windows programmer2009-12-15T00:24:21Z2009-12-15T00:24:21Z'"floating point binary coded decimal" (which, to the best of my knowledge, has never been implemented)' -- oops, you need to read your history. It was implemented around 50 years ago.http://stackoverflow.com/questions/1883647/why-has-ctrlf-find-in-vs2010-stopped-automatically-searching-for-the-currently/1886488#1886488Comment by Windows programmer on Why has Ctrl+F (Find) in VS2010 stopped automatically searching for the currently selected text?Windows programmer2009-12-11T07:53:20Z2009-12-11T07:53:20ZThat used to be enabled by default.http://stackoverflow.com/questions/1844733/is-this-c-function-written-in-poor-form/1844782#1844782Comment by Windows programmer on Is this C function written in poor form?Windows programmer2009-12-04T05:49:54Z2009-12-04T05:49:54ZWell, with this kind of code, and then adding that you're new to C, it looked like you were coming from an assembly language background not like you were coming from a C# and Java background. If you could read the assembly language output of your compilers then ... well, your C# and Java background are irrelevant, you understand how the machine works, and I can't really figure out why you're having trouble.http://stackoverflow.com/questions/1844733/is-this-c-function-written-in-poor-formComment by Windows programmer on Is this C function written in poor form?Windows programmer2009-12-04T04:31:18Z2009-12-04T04:31:18ZCase statements that contain executable data instead of C statements? I could imagine case statements that contain __asm {} directives but that's different from what you're saying. In C in order to jump to executable data I think you would need to abuse a function pointer. Maybe you'd be better off really coding this function in assembly.http://stackoverflow.com/questions/1844733/is-this-c-function-written-in-poor-form/1844782#1844782Comment by Windows programmer on Is this C function written in poor form?Windows programmer2009-12-04T04:26:10Z2009-12-04T04:26:10ZThe questions that you asked were a bit different from asking if you should use C. If you're new to C then this isn't the best way for you to start out. If you need to program your machine with a timing loop and the functionality that you're doing here, maybe you should do it in assembly. If you need C code then ask a colleague to write a C function and explain it to you. This will have nothing to do with choosing compilers though.http://stackoverflow.com/questions/1844733/is-this-c-function-written-in-poor-formComment by Windows programmer on Is this C function written in poor form?Windows programmer2009-12-04T04:08:16Z2009-12-04T04:08:16ZIn his trivial one-digit case, return values are in the range 48 to 57, whether char is signed or not.http://stackoverflow.com/questions/1788383/is-there-an-api-for-time-zones-based-on-ip-address/1788428#1788428Comment by Windows programmer on Is there an API for time zones based on IP address?Windows programmer2009-11-25T00:19:00Z2009-11-25T00:19:00ZThat'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.http://stackoverflow.com/questions/58640/great-programming-quotes/1734360#1734360Comment by Windows programmer on Great programming quotesWindows programmer2009-11-24T07:48:18Z2009-11-24T07:48:18Z"If all you have is a hammer, everything looks like a thumb"http://stackoverflow.com/questions/58640/great-programming-quotes/1781006#1781006Comment by Windows programmer on Great programming quotesWindows programmer2009-11-24T07:38:59Z2009-11-24T07:38:59ZActually "It depends" is the answer to MOST good software engineering questions. As for whether it's the answer to your question, well, it depends.http://stackoverflow.com/questions/58640/great-programming-quotes/1781119#1781119Comment by Windows programmer on Great programming quotesWindows programmer2009-11-24T07:37:31Z2009-11-24T07:37:31ZYour CTO wasn't born yet when that fact was first observed.http://stackoverflow.com/questions/1788383/is-there-an-api-for-time-zones-based-on-ip-address/1788428#1788428Comment by Windows programmer on Is there an API for time zones based on IP address?Windows programmer2009-11-24T07:33:10Z2009-11-24T07:33:10ZIt'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.http://stackoverflow.com/questions/1787643/is-this-a-standard-c-code/1787671#1787671Comment by Windows programmer on Is this a standard C++ code?Windows programmer2009-11-24T04:31:58Z2009-11-24T04:31:58ZThe 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.