User 1800 INFORMATION - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T16:20:42Zhttp://stackoverflow.com/feeds/user/3146http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/146795/how-to-read-config-file-entries-from-an-ini-file0How to read config file entries from an INI file1800 INFORMATION2008-09-28T21:35:25Z2009-11-23T18:49:42Z
<p>I can't use the <code>Get*Profile</code> functions because I'm using an older version of the windows CE platform SDK which doesn't have those. It doesn't have to be too general.</p>
<pre><code>[section]
name = some string
</code></pre>
<p>I just need to open the file, check for the existence of "section", and the the value associated with "name". Standard C++ preferred.</p>
http://stackoverflow.com/questions/110641/how-do-you-code-the-hello-world-program-in-your-favourite-language/110660#1106603Answer by 1800 INFORMATION for How do you code the "Hello World!" program in your favourite language?1800 INFORMATION2008-09-21T09:50:57Z2009-11-23T07:20:40Z<p><a href="http://www.gnu.org/software/hello/" rel="nofollow">GNU Hello</a>:</p>
<blockquote>
<p>The GNU Hello program produces a
familiar, friendly greeting.</p>
<p>Yes, this is another implementation of
the classic program that prints
"Hello, world!" when you run it.
Unlike the elementary version often
seen, GNU Hello processes its argument
list to modify its behavior, supports
greetings in many languages, and so
on. Of course, the primary purpose of
this program is to demonstrate how to
write other programs that do these
things; it serves as a model for all
of the GNU coding standards and other
recommended practices.</p>
</blockquote>
<p>If you're in Debian, it's even <a href="http://packages.debian.org/hello" rel="nofollow">nicely packaged</a> (slightly tongue in cheek):</p>
<blockquote>
<p>The classic greeting, and a good example</p>
<p>The GNU hello program produces a familiar, friendly greeting. It allows non-programmers to use a classic computer science tool which would otherwise be unavailable to them.</p>
<p>Seriously, though: this is an example of how to do a Debian package. It is the Debian version of the GNU Project's `hello world' program (which is itself an example for the GNU Project).</p>
</blockquote>
http://stackoverflow.com/questions/206998/what-does-const-class-mean5What does "const class" mean?1800 INFORMATION2008-10-16T00:23:11Z2009-11-14T11:36:16Z
<p>After some find and replace refactoring I ended up with this gem:</p>
<pre><code>const class A
{
};
</code></pre>
<p>What does "const class" mean? It seems to compile ok.</p>
http://stackoverflow.com/questions/172942/implementation-of-isupporterrorinfo-what-does-it-mean1Implementation of ISupportErrorInfo - what does it mean?1800 INFORMATION2008-10-06T01:04:01Z2009-11-03T18:06:49Z
<p>What does the <code>ISupportErrorInfo</code> interface mean? I'm at a bit of a loss to understand it. From MSDN:</p>
<blockquote>
<p>This interface ensures that error
information can be propagated up the
call chain correctly. Automation
objects that use the error handling
interfaces must implement
ISupportErrorInfo.</p>
<p>This method indicates whether or not
an interface supports the IErrorInfo
interface.</p>
</blockquote>
<pre><code>HRESULT InterfaceSupportsErrorInfo(
REFIID riid
);
</code></pre>
<p>What does it mean to return S_OK in <code>InterfaceSupportsErrorInfo</code>? Should you return S_OK for all interfaces? Just some?</p>
http://stackoverflow.com/questions/1593090/new-data-breakpoint-disabled-in-visual-studio-2008-mixed-project/1593116#15931161Answer by 1800 INFORMATION for New Data Breakpoint disabled in Visual Studio 2008 mixed project1800 INFORMATION2009-10-20T08:09:48Z2009-10-20T08:09:48Z<p>I think that setting data breakpoints is only available if you are debugging in native mode. It is not available in managed mode, or mixed mode debugging.</p>
http://stackoverflow.com/questions/1575682/cant-seem-to-discard-changes-in-git/1575725#15757251Answer by 1800 INFORMATION for Can't seem to discard changes in Git1800 INFORMATION2009-10-15T23:47:27Z2009-10-16T00:57:28Z<p>What changes does <code>git diff</code> show on the file? On windows, I've seen issues with line-endings causing issues like this. In that case, look at what settings you have for <code>git config core.autocrlf</code> and <code>git config core.safecrlf</code>. There is some <a href="http://kernel.org/pub/software/scm/git/docs/git-config.html" rel="nofollow">documentation for these settings here</a>.</p>
<p>I would say, if you are using <code>git svn</code> for integration with subversion, then do make sure <code>autocrlf</code> is turned off. From what I can tell it is just broken in this configuration and it makes most of the tools think files have been changed, when you have done a <code>checkout</code> to revert any changes.</p>
<p>If you are seeing a problem where you do <code>git checkout</code>, and then <code>git status</code> shows the file is still modified, and <code>git diff</code> shows the file is modified on every line in the file, then this is the problem you are seeing.</p>
<blockquote>
<p>core.autocrlf</p>
<p>If true, makes git convert CRLF at the end of lines in text files to LF
when reading from the filesystem, and
convert in reverse when writing to the
filesystem. The variable can be set to
input, in which case the conversion
happens only while reading from the
filesystem but files are written out
with LF at the end of lines.
Currently, which paths to consider
"text" (i.e. be subjected to the
autocrlf mechanism) is decided purely
based on the contents.</p>
<p>core.safecrlf</p>
<p>If true, makes git check if converting CRLF as controlled by
core.autocrlf is reversible. Git will
verify if a command modifies a file in
the work tree either directly or
indirectly. For example, committing a
file followed by checking out the same
file should yield the original file in
the work tree. If this is not the case
for the current setting of
core.autocrlf, git will reject the
file. The variable can be set to
"warn", in which case git will only
warn about an irreversible conversion
but continue the operation.
...</p>
</blockquote>
http://stackoverflow.com/questions/1575698/stdstring-and-format-string/1575709#15757091Answer by 1800 INFORMATION for std::string and format string1800 INFORMATION2009-10-15T23:43:33Z2009-10-15T23:43:33Z<p>You want to use the <code>setprecision</code> function:</p>
<pre><code>int main()
{
std::cout<<std::setprecision(9)<<to_string<long>(3.1415926535897931, std::dec)<<std::endl;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1563989/using-subversion-how-can-you-tell-if-all-the-files-in-a-particular-hard-drive-fo/1563993#15639935Answer by 1800 INFORMATION for Using Subversion, how can you tell if all the files in a particular hard-drive folder have been checked-in and comitted to the repsitory?1800 INFORMATION2009-10-14T02:44:07Z2009-10-14T02:44:07Z<p>Are you using Tortoise? Use "Check for Modifications" or "Commit" and in the dialog that comes up, make sure that "Show unversioned files" is checked.</p>
http://stackoverflow.com/questions/1553502/convert-24bit-rgb-to-argb16/1553524#15535240Answer by 1800 INFORMATION for convert 24bit RGB to ARGB161800 INFORMATION2009-10-12T09:16:29Z2009-10-12T09:16:29Z<p>It looks to me like you probably want to mask off the bits you don't need from r, g and b. Maybe something like this:</p>
<pre><code>#define ARGB16(a, r, g, b) ( ((a) << 15) | (r>>3)|((g>>3)<<5)|((b>>3)<<10))
</code></pre>
<p>Edit: whoops, I think the answer by Michael Buddingh is probably right - you'll want to shift off, this gets you the most significant bits.</p>
http://stackoverflow.com/questions/1553043/i-found-this-reboot-vista-vbs-script-can-you-help-with-it/1553055#15530550Answer by 1800 INFORMATION for I found this Reboot Vista.vbs script. Can you help with it ?1800 INFORMATION2009-10-12T06:40:39Z2009-10-12T06:40:39Z<p>Maybe you are getting an error which is preventing the display of the message box? This line you have at the start of the script will cause it to ignore all errors:</p>
<pre><code>On Error Resume Next
</code></pre>
<p>You should simply delete this line, then run it again and see what is happening.</p>
http://stackoverflow.com/questions/1542281/slow-exporting-from-access-to-excel/1542308#15423080Answer by 1800 INFORMATION for slow exporting from access to excel1800 INFORMATION2009-10-09T07:23:08Z2009-10-09T07:23:08Z<p>I don't know but I would look at how many files you are ending up having open in Excel all at the same time. Do you close the files once you have finished writing to them? Maybe it is keeping them open, so by the time the 150'th worksheet is open it could be struggling for memory usage. Also, I would say, try stepping through the code in a debugger, and see which bit is slow (or getting slower over time) - this will help to narrow down the cause of the problem.</p>
http://stackoverflow.com/questions/1542235/is-this-thread-safe/1542262#15422620Answer by 1800 INFORMATION for Is this thread-safe?1800 INFORMATION2009-10-09T07:12:51Z2009-10-09T07:12:51Z<p>If I can channel clippy for a minute: "It looks like you're trying to implement the Singleton Pattern". Please see <a href="http://www.yoda.arachsys.com/csharp/singleton.html" rel="nofollow">Jon Skeet's canonical article on the subject</a>.</p>
http://stackoverflow.com/questions/1542200/is-using-constcast-for-read-only-access-to-a-const-object-allowed/1542223#15422230Answer by 1800 INFORMATION for Is using const_cast for read-only access to a const object allowed?1800 INFORMATION2009-10-09T07:02:26Z2009-10-09T07:02:26Z<p>Using <code>const_cast</code> on an object which is initially defined as <code>const</code> is UB, therefore the undefined behaviour comes about immediately at the point you call <code>const_cast</code>.</p>
http://stackoverflow.com/questions/1540590/how-to-speed-up-like-operation-in-sql-postgres-preferably/1540619#15406190Answer by 1800 INFORMATION for How to speed up LIKE operation in SQL (Postgres preferably)1800 INFORMATION2009-10-08T21:30:05Z2009-10-08T21:30:05Z<p>Use some kind of "full text" search index, for example PostGres looks like it has some <a href="http://www.postgresql.org/docs/8.3/static/textsearch.html" rel="nofollow">support built in here</a>.</p>
http://stackoverflow.com/questions/1540538/are-net-applications-naturally-memory-intensive/1540570#15405702Answer by 1800 INFORMATION for Are .NET Applications naturally memory intensive?1800 INFORMATION2009-10-08T21:22:32Z2009-10-08T21:22:32Z<p>The .Net runtime has a certain large overhead - we've found that even simple applications will tend to use much more memory that similar applications written in C++. Fortunately this overhead is quickly disipated in the noise as the size of the overall code increases. The second factor is that of garbage collection, the garbage collector runs "whenever", so by comparison to C++, memory allocations are not typically freed right away, but rather when it feels the requirement to do so.</p>
http://stackoverflow.com/questions/89791/how-to-stop-the-visual-studio-debugger-starting-my-process-in-a-job-object4How to stop the Visual Studio debugger starting my process in a job object?1800 INFORMATION2008-09-18T03:38:39Z2009-10-08T09:00:28Z
<p>When I start my process from Visual Studio, it is always created inside a job object. I would like to know how to turn this behaviour off. Any ideas?</p>
<p>I expect that it is created in a job object to be debugged. I want to place my program in a different job object.</p>
<p>It's not the hosting process. I'm talking about a <a href="http://msdn.microsoft.com/en-us/library/ms684161%28VS.85%29.aspx" rel="nofollow">Job Object</a>. This is an unmanaged C++ application.</p>
http://stackoverflow.com/questions/1528503/absolute-com-confusion-c-interop-with-early-binding/1528528#15285283Answer by 1800 INFORMATION for Absolute COM Confusion - C# interop with early-binding1800 INFORMATION2009-10-06T22:57:45Z2009-10-07T21:09:12Z<p>You need to either allow your interface to be marshalled (i.e., by marking it as not "local" in the .idl file so that it ends up in the type library, and in the proxy/stub), or aggregate the free-threaded marshaller if you go that way.</p>
<p>To aggregate the FTM, I did something like this:</p>
<pre><code>#define DECLARE_FTM() \
protected: CComPtr<IUnknown> _m_Marshal; \
DECLARE_GET_CONTROLLING_UNKNOWN() \
public: HRESULT FinalConstruct() \
{ return CoCreateFreeThreadedMarshaler(GetControllingUnknown(),&_m_Marshal); }
#define COM_INTERFACE_ENTRY_FTM() COM_INTERFACE_ENTRY_AGGREGATE(IID_IMarshal,_m_Marshal.p)
</code></pre>
<p>Then, in your COM map:</p>
<pre><code>BEGIN_COM_MAP(Blah)
COM_INTERFACE_ENTRY(IBlah)
COM_INTERFACE_ENTRY_FTM()
END_COM_MAP()
DECLARE_FTM()
</code></pre>
<p>I note that you aren't using ATL and the like - you would need to modify this so that your QueryInterface implementation returns the FTM pointer when IMarshal is queried for.</p>
<p>Note that aggregating the FTM is not something that can really be done lightly - it makes a number of unsafe assumptions that are not always valid. For instance, your class cannot make use of any interfaces which are not themselves free-threaded.</p>
<p>The other alternative is basically as @[Franci Penov] said, you need to ensure that your interface is able to be marshalled. The way I understand it, there is a standard marshaller which is able to marshal any interface in the type library, or you (that is the midl compiler does it more or less automatically) can make a proxy/stub dll (or merge the code for the proxy/stub into your own dll) which is able to marshal it for you.</p>
<p>This article <a href="http://msdn.microsoft.com/en-us/library/ms688707%28VS.85%29.aspx" rel="nofollow">here describes the process of building and registering the proxy/stub</a> in more detail.</p>
http://stackoverflow.com/questions/1530170/what-errors-exceptions-trigger-windows-error-reporting/1530222#15302222Answer by 1800 INFORMATION for What errors / exceptions trigger Windows Error Reporting?1800 INFORMATION2009-10-07T08:13:42Z2009-10-07T08:13:42Z<p>It covers exceptions that are not handled by the application - if an exception propagates outside of the main entry point of the app, then WER will step in. This covers things like AVs, divide by zero, invalid handle access and other out of band or "chip" exceptions. Sometimes your code can attempt to handle those things, but if memory is corrupted too badly or what have you, then your code will die.</p>
http://stackoverflow.com/questions/1529909/what-are-mmc-extension-snap-ins/1529973#15299730Answer by 1800 INFORMATION for What are MMC extension snap-ins?1800 INFORMATION2009-10-07T07:00:44Z2009-10-07T07:00:44Z<p>Did you read <a href="http://msdn.microsoft.com/en-us/library/aa815508%28VS.85%29.aspx" rel="nofollow">this</a>?</p>
<blockquote>
<p>Extension snap-ins extend the
functionality of other snap-ins, but
they are not directly added to a
console like stand-alone snap-ins.
Extension snap-ins can add context
menu items, property pages, toolbar
buttons, taskpad tasks, and items to
the namespace of the extended snap-in
(also called the primary snap-in).</p>
<p>Primary snap-ins can themselves extend
the functionality of other snap-ins.
That is, the same snap-in code base
can create a primary snap-in instance
and an extension snap-in instance.</p>
<p>An extension snap-in is loaded only
when the snap-in it extends is loaded
and the feature it extends is used.
For example, when the user displays a
context menu in a stand-alone snap-in,
MMC builds the context menu, prompts
the stand-alone snap-in to add its
items, and then prompts the extension
snap-in to add its items. After all
snap-ins have added their items, MMC
displays the context menu and then
forwards the menu click to the snap-in
that owns the item.</p>
<p>An extension snap-in can extend only
the node types that a stand-alone
snap-in indicates as being extendable.
The extension snap-in declares itself
as a subordinate to the extendable
node types, and then for each
occurrence of those node types in the
console, the console automatically
adds the related snap-in extensions
below it.</p>
<p>It is important to understand that a
node type can represent a scope item,
a standard list view result item, or a
virtual list
view result item added by the primary
snap-in. Consult the documentation for
the primary snap-in to determine what
the node type represents and the
format of its exported data.</p>
</blockquote>
http://stackoverflow.com/questions/1529942/explicit-linking-dll-and-program-hangs/1529960#15299603Answer by 1800 INFORMATION for Explicit Linking DLL and Program Hangs1800 INFORMATION2009-10-07T06:57:53Z2009-10-07T06:57:53Z<p>I'd say you probably cannot safely call FreeLibrary like that - you will be unloading the code you want to have call you. You should probably ensure not to free the dll until after you are finished getting notifications.</p>
http://stackoverflow.com/questions/47262/storing-windows-passwords/47263#472634Answer by 1800 INFORMATION for Storing Windows passwords.1800 INFORMATION2008-09-06T05:15:23Z2009-10-06T06:14:40Z<p>The answer is here:</p>
<p><a href="http://stackoverflow.com/questions/40853/how-to-store-passwords-in-winforms-application#40867">http://stackoverflow.com/questions/40853/how-to-store-passwords-in-winforms-application#40867</a></p>
http://stackoverflow.com/questions/1522853/creating-your-own-hresult/1522878#15228784Answer by 1800 INFORMATION for Creating your own HRESULT?1800 INFORMATION2009-10-05T23:16:48Z2009-10-05T23:16:48Z<p>Yes of course. Typically you create a <a href="http://msdn.microsoft.com/en-us/library/dd996906%28VS.85%29.aspx" rel="nofollow">.mc file</a> and include that in your project. Instruct the <a href="http://msdn.microsoft.com/en-us/library/aa385638%28VS.85%29.aspx" rel="nofollow">mc compiler</a> to build it - this creates a header file and a .rc file. The HRESULTS are defined in the header file. You include the .rc file in your project as normal for the resource compiler to compile - this puts the message definitions into your final module. Then you can use the normal <a href="http://msdn.microsoft.com/en-us/library/ms679351%28VS.85%29.aspx" rel="nofollow">FormatMessage</a> functions to format the messages using the HRESULTS and generate error info and the other stuff.</p>
<p>I have this as the command line for one of my .mc files:</p>
<pre><code>mc -h "../include" -r "../include" "..\include\errors.mc"
</code></pre>
<p>This creates errors.rc and errors.h in the include directory. Then I did:</p>
<pre><code>#include "errors.rc"
</code></pre>
<p>in my main .rc file for the project.</p>
<p>The .mc file looks a bit like this:</p>
<pre><code>LanguageNames=(English=0x409:MSG00409)
MessageId=0x1
SymbolicName=SOME_CATEGORY
Language=English
Some Category
.
MessageID=
Severity=Error
SymbolicName=ERROR_INVALID_PROP_INDEX
Language=English
Invalid property index %1
.
</code></pre>
<p>with lots of error numbers defined.</p>
http://stackoverflow.com/questions/1522107/how-can-i-communicate-between-two-c-mfc-plugins/1522123#15221231Answer by 1800 INFORMATION for How can I communicate between two C++ MFC plugins?1800 INFORMATION2009-10-05T20:09:51Z2009-10-05T20:09:51Z<p>Take a look at this article here, it shows <a href="http://msdn.microsoft.com/en-us/library/aa365574%28VS.85%29.aspx" rel="nofollow">the available IPC mechanisms in windows</a>. I might try COM, Mailslots, Pipes or Shared Memory (file mapping) in your case, in addition to windows messages which you already mentioned.</p>
http://stackoverflow.com/questions/1518555/casting-to-one-class-and-calling-function-from-sibling-class/1518584#15185841Answer by 1800 INFORMATION for Casting to one class and calling function from sibling class?1800 INFORMATION2009-10-05T07:03:06Z2009-10-05T07:03:06Z<p>You basically answered your own question here:</p>
<blockquote>
<p><strong>Cast</strong>ing to one class and calling
function from sibling class?</p>
<p>This works as I want, but I have to
say it looks rather dodgy. Is it
defined behavior? If not, is there a
legal way to <strong>dynamic</strong>ally resolve this?</p>
</blockquote>
<p>In short:</p>
<pre><code>if (DerivedOne* one=dynamic_cast<DerivedOne*>(BasePtr))
one->functionA();
else if (DerivedTwo* two=dynamic_cast<DerivedTwo*>(BasePtr))
two->functionA();
</code></pre>
<p>But yeah, like vava said, don't do that.</p>
http://stackoverflow.com/questions/1518534/multiple-output-operators/1518544#15185440Answer by 1800 INFORMATION for Multiple output operators?1800 INFORMATION2009-10-05T06:47:00Z2009-10-05T06:47:00Z<p>Sure why not? You would have to create an <code>ostream</code> derived class which implements writing to the database, much the same as <code>ofstream</code> writes to a file. The devil is in the details.</p>
http://stackoverflow.com/questions/1508082/how-is-a-securestring-marshalled-to-unmanaged-code/1508107#15081073Answer by 1800 INFORMATION for How is a securestring marshalled to unmanaged code?1800 INFORMATION2009-10-02T07:13:27Z2009-10-02T07:13:27Z<p>It looks as though you can use the helper functions in the <code>InteropServices</code> namespace to assist you with this:</p>
<blockquote>
<p>Note that SecureString has no members
that inspect, compare, or convert the
value of a SecureString. The absence
of such members helps protect the
value of the instance from accidental
or malicious exposure. Use appropriate
members of the
System.Runtime.InteropServices..::.Marshal
class, such as the SecureStringToBSTR
method, to manipulate the value of a
SecureString object.</p>
</blockquote>
<p>You can use <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.securestringtobstr.aspx" rel="nofollow">SecureStringToBSTR</a> to convert the string to a <code>BSTR</code>, then pass it to an appropriate function for use.</p>
http://stackoverflow.com/questions/1508081/namespaces-with-external-linkage/1508097#15080971Answer by 1800 INFORMATION for Namespaces with external linkage1800 INFORMATION2009-10-02T07:09:52Z2009-10-02T07:09:52Z<p>This has nothing really to do with namespaces, and all to do with the linkage, external or otherwise of the symbol <code>i</code> in your various examples. By default, global variables have <code>extern</code> linkage, while global <code>const</code> symbols have <code>static</code> linkage - this explains why it works when you make <code>i</code> const. To resolve your problem, one way is to <em>declare</em> <code>i</code> with extern linkage in the header file, then <em>define</em> it in only one of the implementation files, as shown below:</p>
<p>header:</p>
<pre><code>extern int i;
</code></pre>
<p>a.c:</p>
<pre><code>int i:
</code></pre>
<p>main.c:</p>
<pre><code>int main()
{
i = 1; // or whatever
}
</code></pre>
<p>Note that I have removed the namespace for clarity - the end result is the same.</p>
http://stackoverflow.com/questions/1507463/how-to-deal-with-this-git-error/1507479#15074792Answer by 1800 INFORMATION for How to deal with this git error1800 INFORMATION2009-10-02T02:20:21Z2009-10-02T02:20:21Z<p>It sound like a corruption of some kind. Did you try <code>git fsck</code>?</p>
http://stackoverflow.com/questions/1507026/how-can-i-use-just-one-boost-library-file/1507055#15070552Answer by 1800 INFORMATION for How can I use just one boost library/file?1800 INFORMATION2009-10-01T23:36:00Z2009-10-01T23:36:00Z<p>Most of boost is distributed as "header only" libraries - meaning you do not need to "build" any kind thing to use that library. Random is one of those, so it is possible to just include the correct header files and you will be away laughing. I would say it is best to get the whole boost source somewhere, and reference that since the different parts tend to have some dependencies on each other.</p>
http://stackoverflow.com/questions/1502629/function-declarations-and-an-unresolved-external/1502641#15026411Answer by 1800 INFORMATION for Function declarations and an unresolved external1800 INFORMATION2009-10-01T08:33:24Z2009-10-01T08:33:24Z<p>You can pass a flag to the compiler (/P, I think) that causes it to output the complete preprocessed output that is passed to the compiler - you can then open this (huge) file, and search through it and the information you need will be in there, somewhere.</p>
http://stackoverflow.com/questions/1575682/cant-seem-to-discard-changes-in-git/1575725#1575725Comment by 1800 INFORMATION on Can't seem to discard changes in Git1800 INFORMATION2009-10-16T00:58:19Z2009-10-16T00:58:19ZI would say, leave them both off IF you are using git svn. I added some more detail.http://stackoverflow.com/questions/1574308/hidden-features-of-x86-assembly-languageComment by 1800 INFORMATION on Hidden features of x86 assembly language?1800 INFORMATION2009-10-15T18:53:47Z2009-10-15T18:53:47ZThere is no one "assembly language" - it depends on the assembler, and the target platformhttp://stackoverflow.com/questions/1542200/is-using-constcast-for-read-only-access-to-a-const-object-allowed/1542223#1542223Comment by 1800 INFORMATION on Is using const_cast for read-only access to a const object allowed?1800 INFORMATION2009-10-09T07:31:04Z2009-10-09T07:31:04ZOh right, sorry I got some conflicting advice on the interwebshttp://stackoverflow.com/questions/1540030/code-golf-beehiveComment by 1800 INFORMATION on Code Golf: Beehive1800 INFORMATION2009-10-08T20:02:01Z2009-10-08T20:02:01ZI'm waiting for the first 250 line C# answer - those are always funny in a "golf" questionhttp://stackoverflow.com/questions/1528503/absolute-com-confusion-c-interop-with-early-binding/1528528#1528528Comment by 1800 INFORMATION on Absolute COM Confusion - C# interop with early-binding1800 INFORMATION2009-10-08T01:30:01Z2009-10-08T01:30:01ZThe declaration for "non-local" is basically to not specify "local" for the interface, which you didn't do, so don't worry about thathttp://stackoverflow.com/questions/1528503/absolute-com-confusion-c-interop-with-early-binding/1528528#1528528Comment by 1800 INFORMATION on Absolute COM Confusion - C# interop with early-binding1800 INFORMATION2009-10-07T21:07:41Z2009-10-07T21:07:41ZI think you need to make sure your proxy/stub dll is properly registered. If you are using ATL, and you create the project using the wizard, it can create one for you, or "merge" the proxy/stub into your project. I'm a bit hazy on the exact details of how to do it in the absense of ATL - this article might help you though: <a href="http://msdn.microsoft.com/en-us/library/ms688707%28VS.85%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1529909/what-are-mmc-extension-snap-ins/1529973#1529973Comment by 1800 INFORMATION on What are MMC extension snap-ins?1800 INFORMATION2009-10-07T07:25:13Z2009-10-07T07:25:13ZI think probably the extent of my answer was the "did you read this" bit - hope you figure it out though. From the looks of things, an primary snapin is the kind you normally add - it is the kind you "add" to mmc manually, while an extension snapin works automagically by adding new features to other snapins.http://stackoverflow.com/questions/1528503/absolute-com-confusion-c-interop-with-early-binding/1528528#1528528Comment by 1800 INFORMATION on Absolute COM Confusion - C# interop with early-binding1800 INFORMATION2009-10-07T06:55:57Z2009-10-07T06:55:57ZThere is no doubt about that - you will need to ensure that all accesses are protectedhttp://stackoverflow.com/questions/1528503/absolute-com-confusion-c-interop-with-early-binding/1528528#1528528Comment by 1800 INFORMATION on Absolute COM Confusion - C# interop with early-binding1800 INFORMATION2009-10-06T23:57:56Z2009-10-06T23:57:56ZI've added some more detailhttp://stackoverflow.com/questions/1528469/checking-a-string-for-correct-characters-in-c/1528498#1528498Comment by 1800 INFORMATION on checking a string for correct characters in c1800 INFORMATION2009-10-06T22:53:53Z2009-10-06T22:53:53ZI fixed up the code (I think), but it is a bit messy. It sure looks like strspn is probably besthttp://stackoverflow.com/questions/1528469/checking-a-string-for-correct-characters-in-c/1528491#1528491Comment by 1800 INFORMATION on checking a string for correct characters in c1800 INFORMATION2009-10-06T22:51:13Z2009-10-06T22:51:13Z@Jacob - it only returns NULL if none of the characters are in the set, you want to figure out if any of the characters are not in the sethttp://stackoverflow.com/questions/1528469/checking-a-string-for-correct-characters-in-c/1528491#1528491Comment by 1800 INFORMATION on checking a string for correct characters in c1800 INFORMATION2009-10-06T22:50:19Z2009-10-06T22:50:19ZI would say not - you would have a long list of exclusions, performance is likely to be worsehttp://stackoverflow.com/questions/1528469/checking-a-string-for-correct-characters-in-c/1528494#1528494Comment by 1800 INFORMATION on checking a string for correct characters in c1800 INFORMATION2009-10-06T22:48:56Z2009-10-06T22:48:56ZThat can't possibly be right. For one thing you have a compiler error. On the second, it is answering the opposite question - you want to see if any characters in the string are not in the listed sethttp://stackoverflow.com/questions/1528419/templates-and-headers-question/1528437#1528437Comment by 1800 INFORMATION on Templates and headers question1800 INFORMATION2009-10-06T22:46:29Z2009-10-06T22:46:29ZHere's the world's tiniest violin: #=={=}http://stackoverflow.com/questions/1522994/store-an-int-in-a-char-array/1523015#1523015Comment by 1800 INFORMATION on Store an int in a char array?1800 INFORMATION2009-10-06T00:21:26Z2009-10-06T00:21:26ZThat's true, I guess, but unions are not the only way to solve this problem, and there are solutions that do not invoke UB so it is probably best to favour those.