GetPrivateProfileString Oddity - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:56:09Z http://stackoverflow.com/feeds/question/124786 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/124786/getprivateprofilestring-oddity 1 GetPrivateProfileString Oddity claco 2008-09-24T00:49:16Z 2008-11-21T12:54:34Z <p>I was just tinkering around with calling GetPrivateProfileString and GetPrivateProfileSection in kernel32 from .NET and came across something odd I don't understand.</p> <p>Let's start with this encantation:</p> <pre><code> Private Declare Unicode Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringW" ( _ ByVal lpApplicationName As String, _ ByVal lpKeyName As String, _ ByVal lpDefault As String, _ ByVal lpReturnedString() As Char, _ ByVal nSize As Int32, _ ByVal lpFileName As String) As Int32 </code></pre> <p>If I pass an lpApplicationName (section), no lpKeyName and no lpDefault, I should get all of the keys for that section, and indeed I do: 50% of the time.</p> <p>If the ini file has the lpApplicationName starting on the first line, the buffer returns nothing. If lpApplicationName stats on the second line in the file, it returns the expected values.</p> <p>At first I though it was a matter of using the W version and Unicode in the Declare, but changing those seems to have no effect.</p> <p>What am I missing?</p> http://stackoverflow.com/questions/124786/getprivateprofilestring-oddity/124823#124823 3 Answer by Rob Walker for GetPrivateProfileString Oddity Rob Walker 2008-09-24T01:00:17Z 2008-09-24T01:00:17Z <p>Check to see if the file you are opening has a <a href="http://en.wikipedia.org/wiki/Byte-order_mark" rel="nofollow">byte order mark</a> (a few bytes marking the type of text encoding).</p> <p>These Windows API calls don't seem to grok byte order marks and is causes them to miss the first section (hence everything works fine if there is a blank line).</p> http://stackoverflow.com/questions/124786/getprivateprofilestring-oddity/124838#124838 0 Answer by claco for GetPrivateProfileString Oddity claco 2008-09-24T01:06:43Z 2008-09-24T01:06:43Z <p>Good call. Editing the ini file in VS.NET is of course (Duh) adding a utf-8 BOM. Grrr. Opening it in notepad and doing a SaveAs ASCII yields the expected results.</p> <p>So obvious. So obtuse. Another hour down the crapper. :-)</p> <p>Thanks! -=Chris</p>