User Alex Shnayder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T00:29:44Z http://stackoverflow.com/feeds/user/26042 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1840420/how-to-find-the-ip-address-of-client-connected-to-server/1840443#1840443 1 Answer by Alex Shnayder for How to find the IP Address of Client connected to Server? Alex Shnayder 2009-12-03T15:05:18Z 2009-12-03T15:05:18Z <p>I think you might be looking for the <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/net/Socket.html#getInetAddress%28%29" rel="nofollow">getInetAddress</a> method of the <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/net/Socket.html" rel="nofollow">Socket</a> object.</p> http://stackoverflow.com/questions/1231089/xbap-gracefully-handle-lack-of-permissions/1456508#1456508 0 Answer by Alex Shnayder for xbap gracefully handle lack of permissions Alex Shnayder 2009-09-21T19:56:52Z 2009-09-21T19:56:52Z <p>You can manually edit the app.manifest file to request lower minimum permissions for your application, and then (in theory) you testing code will not always fail when you ask for the file permission, but as intended will fail only when user has not granted your code the required permissions.</p> http://stackoverflow.com/questions/1321728/getting-filesize-from-openfiledialog/1321785#1321785 1 Answer by Alex Shnayder for Getting filesize from OpenFileDialog? Alex Shnayder 2009-08-24T11:14:20Z 2009-08-24T11:14:20Z <p>You can't directly get it from the OpenFieldDialog.</p> <p>You need to take the file path and consturct a new FileInfo object from it like this:</p> <pre><code>var fileInfo = new FileInfo(path); </code></pre> <p>And from the FileInto you can get the size of the file like this</p> <pre><code>fileInfo.Length </code></pre> <p>For more info look at this <a href="http://msdn.microsoft.com/en-us/library/system.io.fileinfo.length.aspx" rel="nofollow">msdn</a> page.</p> http://stackoverflow.com/questions/1321668/find-how-many-sunday-from-2-given-dates/1321719#1321719 0 Answer by Alex Shnayder for find how many sunday from 2 given dates? Alex Shnayder 2009-08-24T11:00:57Z 2009-08-24T11:00:57Z <p>You can calculate how many weeks are in between these two dates, there should be some date manipulation library in PHP, and then the number of Sundays will be the number of weeks, you still will need to see if first date is a Sunday or not, and last date is a sunday or not to deal with the edges of the date range.</p> <p>Some examples can be seen <a href="http://www.addedbytes.com/php/php-datediff-function/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1318025/how-to-declate-a-wide-char-constant-in-an-idl 0 How to declate a wide char constant in an IDL Alex Shnayder 2009-08-23T07:58:56Z 2009-08-23T08:23:08Z <p>We are migrating our C++ COM application to be unicode, and as part of this migration we want to migrate the constant strings in our IDL to unicode as well.</p> <p>The problem is that at the moment, we still compile it both in ANSI and in UNICODE, which means that we can't use the L"String" construct to declare wide charts.</p> <p>At the moment, our string constant defined like this:</p> <p>const LPSTR STRING_CONST_NAME = "STRING VALUE";</p> <p>And we want to define it like this:</p> <p>const LP**T**STR STRING_CONST_NAME = "STRING VALUE";</p> <p>If it were regular code we would just add the _T("STRING VALUE") macro which would have converted it to L"STRING VALUE" when compiling in unicode</p> <p>But from what I can see we can't use it in the IDL because _T is a pure C++ construct.</p> <p>Is our approach even correct ? May be we should define it like this no matter what:</p> <p>const LP**T**STR STRING_CONST_NAME = <strong>L</strong>"STRING VALUE";</p> http://stackoverflow.com/questions/983588/approaches-to-table-partitioning-in-sql-server/983654#983654 0 Answer by Alex Shnayder for Approaches to table partitioning in SQL Server Alex Shnayder 2009-06-11T21:02:15Z 2009-06-11T21:02:15Z <p>If you have no other choice you can partition by key module the number of partition tables. Lets say that you want to partition to 10 tables. You will define tables:<br> Case00<br> Case01<br> ...<br> Case09<br></p> <p>And partition you data by UniqueIdentifier or PrimaryKey module 10 and place each record in the corresponding table (Depending on your unique UniqueIdentifier you might need to start manual allocation of ids).</p> <p>When performing a query, you will need to run same query on all tables, and use UNION to merge the result set into a single query result.</p> <p>It's not as good as partitioning the tables based on some logical separation which corresponds to the expected query, but it's better then hitting the size limit of a table.</p> http://stackoverflow.com/questions/983554/how-easy-is-it-to-move-from-one-field-within-cs-to-another-once-working-in-the-in/983620#983620 0 Answer by Alex Shnayder for How easy is it to move from one field within CS to another once working in the industry? Alex Shnayder 2009-06-11T20:55:00Z 2009-06-11T20:55:00Z <p>As always it depends on your skills, the better you are, no matter at what field of CS the easier it will be for you to move from one field to another.</p> <p>And learning about the field you interested in before hand, wont hurt it for sure.</p> <p>Be good, be smart, learn, and all doors will open for you.</p> http://stackoverflow.com/questions/907901/style-question-about-existing-piece-of-code-c-c/907923#907923 1 Answer by Alex Shnayder for Style question about existing piece of code (C/C++) Alex Shnayder 2009-05-25T20:13:24Z 2009-05-25T20:13:24Z <p>I agree. But you can't look at it as a "mere reason", it's actually a pretty good reason, because it reduces the over all complexity of the code. Making it shorter and easier to read and understand.</p> http://stackoverflow.com/questions/781381/how-to-name-pure-virtual-protected-property 0 How to name pure virtual protected property Alex Shnayder 2009-04-23T11:53:05Z 2009-04-23T14:25:37Z <p><strong>foreword:</strong></p> <p>I have a component, lets call it IView. This component is implemented by BaseView class which holds most of it's functionality. We are using the template pattern to delegate logic to inheretting classes.</p> <p><strong>The problem:</strong></p> <p>We have a property named IView.Visible, that indicates if the component should or should not be visible. This property is <strong>not virtual</strong> since it involves some logic in our BaseView. </p> <p>We have created a virtual protected method <strong>IsVisible</strong> which is invoked from BaseView.Visible to decide the final value of IView.Visible.</p> <p>We feel that this property name, IsVisible, is not descriptive and clear enough to the implementor of the derived class.</p> <p>It's been suggested to rename it to ShouldBeVisible, but we still fill that there is a better name.</p> <p>What do you think ? Do you have a better name ? Is there a good naming convention that covers this topic of template methods ? </p> <p><hr /></p> <p><strong>Update:</strong> Just to clarify a point, the Visible and IsVisible properties don't have side effect on the component, The Visible property uses the value from IsVisible to decide if the value of Visible should be true, but it is not the only consideration and couple other of the internal states of the component to give the final verdict. </p> http://stackoverflow.com/questions/389763/how-to-install-coderush-xpress-on-vs2005 3 How to install CodeRush Xpress on VS2005 Alex Shnayder 2008-12-23T19:00:05Z 2009-04-16T11:34:38Z <p>I know that <a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/CodeRushX/" rel="nofollow">CodeRush Xpress</a> is intended to be used on VS 2008 and not on VS 2005.<br> But since I can't migrate to VS2008 yet, I want to install it on VS2005 and don't care it's not supposed to work.<br></p> <p>My base assumption is that it can be done, this is based on the fact that the rest of the free re factoring products from DevExpress do work on VS 2005.</p> http://stackoverflow.com/questions/389763/how-to-install-coderush-xpress-on-vs2005/586303#586303 4 Answer by Alex Shnayder for How to install CodeRush Xpress on VS2005 Alex Shnayder 2009-02-25T14:58:10Z 2009-02-25T14:58:10Z <p>It is possible, and here what you need to do it.</p> <p>Make sure VS is closed.<br> Install <a href="http://devexpress.com/Products/Visual%5FStudio%5FAdd-in/RefactorCPP/" rel="nofollow">RefactorCpp</a>.<br> Install <a href="http://www.devexpress.com/Products/Visual%5FStudio%5FAdd-in/CodeRushX/" rel="nofollow">CodeRush Xpress</a>.<br> Apply this registry patch: <br></p> <pre><code>Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Developer Express] [HKEY_LOCAL_MACHINE\SOFTWARE\Developer Express\CodeRush for VS\3.2] "HideMenu"=dword:00000000 "LoadDXPlugInsOnly"=dword:00000000 "StatusTextEnabled"=dword:00000001 </code></pre> <p>Open VS.<br> Enable "DevExpress Tools" add-in in visual studio, Tools -> Add-in manager. Check the enable and startup checkboxes.</p> <p>And now you are the proud user of CodeRush Xpress on VS 2005.</p> <p>P.S. This works for me on:<br> Microsoft Visual Studio 2005 Version 8.0.50727.762 (SP.050727-7600)</p> http://stackoverflow.com/questions/569606/how-can-i-make-service-apps-with-visual-c-express/569647#569647 0 Answer by Alex Shnayder for How can I make service apps with Visual c# Express? Alex Shnayder 2009-02-20T13:57:30Z 2009-02-20T13:57:30Z <p>According to <a href="http://msdn.microsoft.com/en-us/library/d56de412(VS.80).aspx" rel="nofollow">this</a> MSDN article you don't have the project template for a service. But I'm pretty sure that if you know what the template does for you, you can create and compile a service.</p> http://stackoverflow.com/questions/567142/public-inheritance-and-tlb-files/567264#567264 2 Answer by Alex Shnayder for public inheritance and tlb files Alex Shnayder 2009-02-19T21:31:58Z 2009-02-19T21:47:08Z <p>I'm assuming here, that the two assemblies communicate one with the other via COM, if that is indeed the case then you are correct, there is no IS-A relationship in COM in regard to CLASS inheritance, only in regard to Interface inheritance. </p> <p>If you were to define an interface IBase and IDerived which derives from IBase, then you would be able to cast IDerived to IBase on the same object which implements both.</p> http://stackoverflow.com/questions/469357/html-text-input-allow-only-numeric-input/469415#469415 0 Answer by Alex Shnayder for HTML Text Input allow only Numeric input Alex Shnayder 2009-01-22T14:55:09Z 2009-01-22T14:55:09Z <p>You can attach to the key down event and then filter keys according to what you need, for example:</p> <blockquote> <p>input id="FIELD_ID" name="FIELD_ID" onkeypress="return validateNUM(event,this);" type="text"</p> </blockquote> <p>And the actual javascript handler would be:</p> <pre><code> function validateNUM(e,field) { var key = getKeyEvent(e) if (specialKey(key)) return true; if ((key &gt;= 48 &amp;&amp; key &lt;= 57) || (key == 46)){ if (key != 46) return true; else{ if (field.value.search(/\./) == -1 &amp;&amp; field.value.length &gt; 0) return true; else return false; } } function getKeyEvent(e){ var keynum var keychar var numcheck if(window.event) // IE keynum = e.keyCode else if(e.which) // Netscape/Firefox/Opera keynum = e.which return keynum; } </code></pre> http://stackoverflow.com/questions/430001/xml-diff-and-merge/430053#430053 0 Answer by Alex Shnayder for XML Diff and Merge Alex Shnayder 2009-01-09T22:48:00Z 2009-01-09T22:48:00Z <p>I think you should not fixate on xml comparison, but look at text comparison as a whole.</p> <p>Just store a text diff of the 2 xmls, you can use the <a href="http://en.wikipedia.org/wiki/Patch_(Unix)" rel="nofollow">patch</a> format, which you can apply later to reconstruct the original file.</p> http://stackoverflow.com/questions/429615/merge-cells-in-ms-access/429634#429634 1 Answer by Alex Shnayder for merge cells in ms-access Alex Shnayder 2009-01-09T20:38:47Z 2009-01-09T20:38:47Z <p>Not by using the datagrid view of access.</p> <p>You can achive this by constracting a form with a sub form, such that the main form will display the location and date, and the sub form, the list of invitees</p> http://stackoverflow.com/questions/429594/best-way-to-automate-adding-text-to-an-image-and-formatting-for-printing/429620#429620 0 Answer by Alex Shnayder for Best Way to Automate Adding Text to an Image and formatting for Printing? Alex Shnayder 2009-01-09T20:35:55Z 2009-01-09T20:35:55Z <p>You can use Microsoft Word automation to generate a word file with the correct text and image, and then just print it. This would be one of the simpler solutions, you can implement the entire thing as a word macro (VBA).</p> <p>A more complex solution would be to use VB6 or .net to print the text and the image into the form and then print the form.</p> <p>You can write a script that will generate an html page with the image and the text, and then print out the html using a browser.</p> http://stackoverflow.com/questions/429281/disconnected-architecture-with-net/429358#429358 0 Answer by Alex Shnayder for Disconnected Architecture With .NET Alex Shnayder 2009-01-09T19:28:02Z 2009-01-09T19:28:02Z <p>You can do all your processing off line, and use some thing like <a href="http://msdn.microsoft.com/en-us/sync/default.aspx" rel="nofollow">Microsoft Sync Framework</a> to sync the data between the client and the server.</p> <p>Assuming both server and client are .net, you can use same code base to do the data validation both on the server and the client. This way you will have a single code base that will serve both server and client.</p> <p>You can use frameworks like <a href="http://www.lhotka.net/cslanet/" rel="nofollow">CSLA.NET</a> to simplify this validation process.</p> http://stackoverflow.com/questions/429225/capture-output-from-unrelated-process/429310#429310 1 Answer by Alex Shnayder for Capture output from unrelated process Alex Shnayder 2009-01-09T19:13:45Z 2009-01-09T19:13:45Z <p>You can redirect the stdout / stderr (standary out put / error stream) of a process if you are the one starting it. For an example take a look at <a href="http://channel9.msdn.com/forums/Coffeehouse/250664-C-Execute-External-App-and-capture-output/" rel="nofollow">this</a>.</p> <p>Capturing the output stream of a process which was not started by you, well, that is whole different matter. I'm not sure it can be done.</p> <p>But if you have control over the source code of both apps, there are other ways to communicate, like pipes / remoting / WCF, and so on...</p> http://stackoverflow.com/questions/427966/vb6-ado-connection-pooling/429232#429232 0 Answer by Alex Shnayder for VB6 ADO Connection Pooling Alex Shnayder 2009-01-09T18:48:49Z 2009-01-09T18:48:49Z <p>See if <a href="http://support.microsoft.com/default.aspx/kb/237844" rel="nofollow">this article</a> sheds any light on the subject</p> http://stackoverflow.com/questions/425020/sql-distinct-by-id-and-latest-by-date/425041#425041 1 Answer by Alex Shnayder for SQL Distinct by ID and Latest By Date Alex Shnayder 2009-01-08T17:01:42Z 2009-01-08T17:01:42Z <p>In general it should go some thing like</p> <pre><code>SELECT ID,DATE_FIELD,FIELD1,FIELD2 FROM TBL1 AS A WHERE DATE_FIELD &gt;= ALL ( SELECT DATE_FIELD FROM TBL1 AS B WHERE A.ID = B.ID ) </code></pre> http://stackoverflow.com/questions/411497/why-do-we-teach-assembly-language-programming/411741#411741 -4 Answer by Alex Shnayder for Why do we teach assembly language programming? Alex Shnayder 2009-01-04T21:48:12Z 2009-01-04T21:48:12Z <p>I think I know why they do it. Once while in class, been thought assembly, scratching my head, trying to figure out where I went wrong, or what bad deed did I do that brought me to this class, I noticed a green on my professors face.</p> <p>It was his way to get back at us.</p> <p>In other words, I don't think that it really, does any good to any one to study assembly. If you have to work with it, you can learn it in a week, and if you don't well, just be happy, that you don't.</p> http://stackoverflow.com/questions/341831/simple-html-layout-engine-to-convert-html-to-an-image/341867#341867 0 Answer by Alex Shnayder for Simple HTML layout engine to convert HTML to an image Alex Shnayder 2008-12-04T20:05:41Z 2008-12-04T20:05:41Z <p>You cn use the <a href="http://sourceforge.net/projects/pdfcreator/" rel="nofollow">PDFCreator</a> application. This application allows printing to many formats including images of all kind. It includes an ActiveX / com server which allows you to automate the process fairly easily. You can convert pretty much any thing you can print. One draw back of this method is that since it uses the printing frame work for conversion you can convert only one document at a time, so I don't know if it will good enough for a website.</p> http://stackoverflow.com/questions/333812/using-java-how-can-i-get-a-list-of-all-local-users-on-a-windows-machine 0 Using Java, How can I get a list of all local users on a windows machine Alex Shnayder 2008-12-02T12:29:39Z 2008-12-03T06:14:50Z <p>How can I list all the local users configured on a windows machine (Win2000+) using java.<br> I would prefer doing this with ought using any java 2 com bridges, or any other third party library if possible.<br> Preferable some native method to Java. </p> http://stackoverflow.com/questions/333812/using-java-how-can-i-get-a-list-of-all-local-users-on-a-windows-machine/334079#334079 0 Answer by Alex Shnayder for Using Java, How can I get a list of all local users on a windows machine Alex Shnayder 2008-12-02T14:22:05Z 2008-12-03T06:14:50Z <p>There is a simpler solution for what I needed.<br> This implementation will use the "<a href="http://support.microsoft.com/kb/251394" rel="nofollow">net use</a>" command to get the list of all users on a machine. This command has some formatting which in my case I don't care about, I only care if my user is in the list or not. If some one needs the actual user list, he can parse the output format of "net use" to extract the list without the junk headers and footers generated by "net use"</p> <pre><code>private boolean isUserPresent() { //Load user list ProcessBuilder processBuilder = new ProcessBuilder("net","user"); processBuilder.redirectErrorStream(true); String output = runProcessAndReturnOutput(processBuilder); //Check if user is in list //We assume the output to be a list of users with the net user //Remove long space sequences output = output.replaceAll("\\s+", " ").toLowerCase(); //Locate user name in resulting list String[] tokens = output.split(" "); Arrays.sort(tokens); if (Arrays.binarySearch(tokens, "SomeUserName".toLowerCase()) &gt;= 0){ //We found the user name return true; } return false; } </code></pre> <p><br> The method runProcessAndReturnOutput runs the process, collects the stdout and stderr of the process and returns it to the caller.</p> http://stackoverflow.com/questions/259569/net-text-editor-that-accepts-html-and-input-output-with-spellchecking/270261#270261 0 Answer by Alex Shnayder for .NET text editor that accepts HTML and input/output with spellchecking Alex Shnayder 2008-11-06T21:00:44Z 2008-11-06T21:00:44Z <p>I'm in same boat as you are.</p> <p>Using a managed wrapper around the MSHTML com control (dont remember which one, there are a few, for instance there is this <a href="http://postxing.net:8080/PostXING/tags/v1.1/PostXING.HtmlComponent/Html/HtmlControl.cs" rel="nofollow">one</a>). From what I understand our company has examined a few of this kind of controls and at the moment we have decided to stick with MSHTML.</p> <p>We also needed a spell checker, we are using <a href="http://www.keyoti.com/products/rapidspell/dotnet/" rel="nofollow">RapidSpell</a>. But there are plenty open source / free spell checkers.</p> <p>We are pulling the plain text out of MSHTML and allowing the spell checker to process it. hen collect the list of he invalid words and their fixes and inject it back into the html stream.</p> <p>It's not that much work, about a week to glue it all together.</p> <p>About using the RTF control, we have examined this possibility as well, and decided not to go with it because we had lots of pain in the past with HTML > RTF > HTML.</p> <p>One advantage the MSHTML control has over the other 3rd party controls is that it supports copy and paste into the control from most of the applications, you can copy from word or some other formatted text, and the pasted text will keep the formatting, some thing that is not supported by most of the other controls.</p> http://stackoverflow.com/questions/270029/is-it-considered-bad-design-to-do-lengthy-operations-in-a-constructor/270123#270123 0 Answer by Alex Shnayder for Is it considered bad design to do lengthy operations in a constructor? Alex Shnayder 2008-11-06T20:28:18Z 2008-11-06T20:28:18Z <p>If you are working with C#, you could use extension methods to create a method for comparing 2 directories that you would attach to the build in DirectoryClass, so it would look some thing like:</p> <pre><code>Directory dir1 = new Directory("C:\....."); Directory dir2 = new Directory("D:\....."); DirectoryCompare c = dir1.CompareTo(dir2); </code></pre> <p>This would be much clearer implementation. More on extension methods <a href="http://www.developer.com/net/csharp/article.php/3592216" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/269932/string-to-char-marshaling/269961#269961 0 Answer by Alex Shnayder for string to char* marshaling Alex Shnayder 2008-11-06T19:30:21Z 2008-11-06T19:30:21Z <p>The problem is that StringToHGlobalAnsi creates a new unmanged memory and does not copy into the memory you intended to use which you assigned into strErrorMessage.<br> To resolve this you should do some thing like:</p> <pre><code>void EndPointsMappingWrapper::GetLastError(char** strErrorMessage) { *strErrorMessage = (char*) Marshal::StringToHGlobalAnsi(_managedObject-&gt;GetLastError()).ToPointer(); } </code></pre> <p>And the usage should look like:</p> <pre><code>char* err; GetLastError(&amp;err); //and here you need to free the error string memory </code></pre> <p>for more information check out this <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.stringtohglobalansi.aspx" rel="nofollow">msdn article</a></p> http://stackoverflow.com/questions/266497/mshtml-how-can-you-clear-the-undo-redo-buffer-of-mshtml 0 MSHTML: How can you clear the undo / redo buffer of MSHTML Alex Shnayder 2008-11-05T20:21:47Z 2008-11-06T15:25:18Z <p>I'm using a C# wrapper control similar to the WebBrowser control that contains the COM / unmanaged MSHTML control. I'm using this control in the edit mode which allows the user of the application to edit a a HTML document in a WYSIWYG manner.</p> <p>This control manages it's own undo / redo stack.</p> <p>How can I reset / clear it so that user will not be able to redo / undo changes to the content of the document, but only be able to edit it ?</p> http://stackoverflow.com/questions/266497/mshtml-how-can-you-clear-the-undo-redo-buffer-of-mshtml/269100#269100 1 Answer by Alex Shnayder for MSHTML: How can you clear the undo / redo buffer of MSHTML Alex Shnayder 2008-11-06T15:25:18Z 2008-11-06T15:25:18Z <p>To clear the undo stack of MSHTML control you can use undo manager service.<br> When enabling and disabling the undo service, the undo stack is cleared. To extract the undo manager out of the Document object of MSHTML you need to use the IServiceProvider.</p> <p>The solution to this is some thing like:</p> <pre><code> //Extract undo manager if (m_undoManager == null) { IServiceProvider serviceProvider = Document as IServiceProvider; Guid undoManagerGuid = typeof(IOleUndoManager).GUID; Guid undoManagerGuid2 = typeof(IOleUndoManager).GUID; IntPtr undoManagerPtr = ComSupport.NullIntPtr; int hr = serviceProvider.QueryService(ref undoManagerGuid2, ref undoManagerGuid, out undoManagerPtr); if ((hr == HRESULT.S_OK) &amp;&amp; (undoManagerPtr != ComSupport.NullIntPtr)) { m_undoManager = (IOleUndoManager)Marshal.GetObjectForIUnknown(undoManagerPtr); Marshal.Release(undoManagerPtr); } } //And to clear the stack m_undoManager.Enable(true); Application.DoEvents(); </code></pre> <p>More detailed implementation and more information can be seen at:<br></p> <p><a href="http://postxing.net:8080/PostXING/tags/v1.1/PostXING.HtmlComponent/Html/" rel="nofollow">http://postxing.net:8080/PostXING/tags/v1.1/PostXING.HtmlComponent/Html/</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/ms678623(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms678623(VS.85).aspx</a></p> http://stackoverflow.com/questions/1321640/free-library-that-make-handling-of-string-and-common-data-structures-not-a-quest Comment by Alex Shnayder on free library that make handling of string and common data structures (Not a Question) Alex Shnayder 2009-08-24T10:49:42Z 2009-08-24T10:49:42Z Fraze it as a question, and add the library as one of the answers, if it's good it will people will vote on it, and will probably add the libraries they are using to level the plain field. http://stackoverflow.com/questions/1318025/how-to-declate-a-wide-char-constant-in-an-idl/1318062#1318062 Comment by Alex Shnayder on How to declate a wide char constant in an IDL Alex Shnayder 2009-08-23T09:03:45Z 2009-08-23T09:03:45Z We are defining them as consts because we are consuming them later in other places in our API. Many of our API methods accept these strings as parameters, and it's easier to define them once in the COM api and consume them later in all it's clients. I will check your point about defining them as BSTR, that might have been our mistake from the start. http://stackoverflow.com/questions/781381/how-to-name-pure-virtual-protected-property/781400#781400 Comment by Alex Shnayder on How to name pure virtual protected property Alex Shnayder 2009-04-23T15:02:01Z 2009-04-23T15:02:01Z The inheriting class is to implement the IsVisible property, which is not public, but protected. The question is about the IsVisible, and it's relation to Visible. http://stackoverflow.com/questions/389763/how-to-install-coderush-xpress-on-vs2005/597929#597929 Comment by Alex Shnayder on How to install CodeRush Xpress on VS2005 Alex Shnayder 2009-03-02T12:44:16Z 2009-03-02T12:44:16Z Why would you event want to use CodeRush Xpress if you have Refactore Pro ? http://stackoverflow.com/questions/389763/how-to-install-coderush-xpress-on-vs2005/597929#597929 Comment by Alex Shnayder on How to install CodeRush Xpress on VS2005 Alex Shnayder 2009-03-02T12:42:47Z 2009-03-02T12:42:47Z The problem was not installing on top of Refactore Pro, but installing at all the free add on, as far as I know refactore pro is not free, but yes this will work as well and you won't need the registry patch, but you will need to pay for it (with real money) :) http://stackoverflow.com/questions/567142/public-inheritance-and-tlb-files/567264#567264 Comment by Alex Shnayder on public inheritance and tlb files Alex Shnayder 2009-02-20T12:30:21Z 2009-02-20T12:30:21Z Yes it would. Since in COM there there are only interfaces, it does not matter what is the object inheritance tree, as long as your objects implement those interfaces that you need. http://stackoverflow.com/questions/464474/check-if-a-sql-table-exists Comment by Alex Shnayder on Check if a SQL table exists. Alex Shnayder 2009-01-21T09:01:02Z 2009-01-21T09:01:02Z A better way would be to use &quot;SELECT 1 FROM <code>tbl</code> WHERE 1=0&quot; This way it wont be as resource consuming. http://stackoverflow.com/questions/431579/swing-components-inside-html Comment by Alex Shnayder on Swing components inside HTML Alex Shnayder 2009-01-10T19:50:31Z 2009-01-10T19:50:31Z Don't quite get what you are trying to do, you want to have a java application, which will have a component that displays HTML, and in that HTML, you want to embed swing ? Does not compute. http://stackoverflow.com/questions/429362/how-to-find-out-whether-my-net-application-was-launched-using-a-shortcut Comment by Alex Shnayder on How to find out whether my .Net application was launched using a shortcut? Alex Shnayder 2009-01-09T19:32:54Z 2009-01-09T19:32:54Z What is application reference file ? http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-official-faq/119591#119591 Comment by Alex Shnayder on How Does Stackoverflow Work? (The Official FAQ) Alex Shnayder 2008-11-06T19:15:14Z 2008-11-06T19:15:14Z Why can't one accept an answer to one's question. If there will be no other answers then the question will stay in the unansered status, won't it ? http://stackoverflow.com/questions/181551/how-to-check-in-java-using-jintegra-if-com-object-implements-an-interface/182069#182069 Comment by Alex Shnayder on How to check in Java using JIntegra if COM object implements an interface ? Alex Shnayder 2008-10-08T10:53:28Z 2008-10-08T10:53:28Z No I can't, the generated proxy classes don't follow java conventions. In order to case an object from one interface to another, I need to do some thing like &lt;br/&gt; ISomeInterface = new ISomeInterfaceProxy(someObject); &lt;br/&gt; But this action fails on method invocation and not on creation.