User Mil - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T23:18:54Z http://stackoverflow.com/feeds/user/9470 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340138/why-is-visual-studio-not-able-to-open-csproj-files 0 Why is Visual Studio not able to open .csproj files? Mil 2008-12-04T10:25:15Z 2009-10-06T14:26:36Z <p>Hello!</p> <p>I have the odd problem that I am not able to open the properties of my .NET projects in Visual Studio. If I try to open it by clicking on the Properties tree node in the Solution Explorer I get the following message:</p> <blockquote> <p>There is no editor available for '....csproj'. Make sure the application for the file type (.csproj) is installed.</p> </blockquote> <p>If I try to open the project properties by the main menu nothing happens at all.</p> <p>I already tried to reset the Visual Studio settings by command line and a repair installation but nothing helped so far.</p> <p>I use the Visual Studio 2008 in version 9.0.30729.1 SP including the XNA Game Studio 3.0, ReSharper 4.1 and Visual SVN 1.5.1.</p> <p>It is occurring on all my projects and seems to be a local issue because my co-workers do not have this kind of problem.</p> <p>Help is much appreciated!</p> <p>Thanks, Michael</p> http://stackoverflow.com/questions/167498/what-is-less-annoying-no-source-code-documentation-or-bad-code-documentation 4 What is less annoying: no source code documentation or bad code documentation? Mil 2008-10-03T15:44:30Z 2009-08-23T07:02:33Z <p>Hello everybody!</p> <p>Today I had an argument with a colleague about one of his comments as summary of a method. Mostly he is not writing any summaries but in this case he added one and it was a really bad one: It was not described what the method is doing, it assumed what the method maybe is doing. I have to add that this piece of code was not his own, it was legacy code.</p> <p>I told him that in this case he should have never made any commentary, only after really checking what is happening there, because someone who does read his opinion as valid statement will not check by himself and screw up. He could have add "This is an assumption, please check for yourself." but he didn't. Even if no commentary was there it would be better because then the developer has to check for himself.</p> <p>Personally I'm very strict on code documentation. That doesn't mean I comment every line of code but method, class, etc summaries are mandatory and additional lines for difficult code parts are helping too.</p> <p>I have to add that I work in a team of 10 developers where no one writes code only for himself. Spending less time on code documentation means that other developers are spending more time to get the meaning of the code.</p> <p>I'm not even able to say if I like no documentation less than this kind of bad documentation. But at the end I guess I spend more time with not documented than not good documented foreign code. So... I hate both. ;)</p> <p>What do you think? You don't care or do you see these things in your daily work too? What is worse for you: no code documentation or bad code documentation?</p> <p>Thanks!</p> <p>Michael</p> http://stackoverflow.com/questions/157755/browser-helper-objects-bho-in-windows-vista-only-with-admin-rights 3 Browser Helper Objects (BHO) in Windows Vista only with admin rights? Mil 2008-10-01T14:05:39Z 2009-07-14T15:21:31Z <p>For a university project I programmed a Internet Explorer Browser Helper Object to process web document information while browsing. It were running successful on Windows XP with IE6 and IE7.</p> <p>Now I have the issue that under Windows Vista the same BHO needs administrator rights to run. Browser and BHO running if you start the IE as administrator but if you start as normal user it crashes.</p> <p>The BHO is of course registered on the system and activated in the browser.</p> <p>What can I do that a user with non-admin rights can run the registered and activated BHO? Or is maybe something else the reason and I totally miss it?</p> <p>Thank you very much for your help!</p> http://stackoverflow.com/questions/67300/why-doesnt-backcolor-work-for-tabcontrols-in-net 0 Why doesn't BackColor work for TabControls in .NET? Mil 2008-09-15T21:44:05Z 2009-05-01T04:59:52Z <p>If you use the standard tab control in .NET for your tab pages and you try to change the look and feel a little bit then you are able to change the back color of the tab pages but not for the tab control. The property is available, you could set it but it has no effect. If you change the back color of the pages and not of the tab control it looks... uhm quite ugly.</p> <p>I know Microsoft doesn't want it to be set. <a href="http://msdn.microsoft.com/en/library/w4sc610z(VS.80).aspx" rel="nofollow">MSDN</a>: '<i>This property supports the .NET Framework infrastructure and is not intended to be used directly from your code. This member is not meaningful for this control.</i>' A control property just for color which supports the .NET infrastructure? ...hard to believe.</p> <p>I hoped over the years Microsoft would change it but they did not. I created my own TabControl class which overrides the paint method to fix this. But is this really the best solution?</p> <p>What is the reason for not supporting BackColor for this control? What is your solution to fix this? Is there a better solution than overriding the paint method?</p> http://stackoverflow.com/questions/657367/how-to-access-the-user-font-settings-of-the-internet-explorer 0 How to access the user font settings of the Internet Explorer? Mil 2009-03-18T08:31:01Z 2009-03-18T15:37:11Z <p>I would like to access the Internet Explorer user settings for fonts, especially the font family, within a Browser Helper Object written in C#.</p> <p>I have looked into SHDocVw.WebBrowser and IHTMLDocument( to 5) but I don't see what I'm looking for or missing the property.</p> <p>The BHO is for Internet Explorer 7.</p> <p>Thank you very much!</p> <p><strong>Edit</strong>: Richard asks why I need this information: The font-family you can adjust in the IE7 settings is used if the given font-families by the HTML document or CSS are not installed on the system. I need this application-based font-family which is used to render the text in the last instance (if all other information fail). </p> http://stackoverflow.com/questions/340138/why-is-visual-studio-not-able-to-open-csproj-files/413430#413430 5 Answer by Mil for Why is Visual Studio not able to open .csproj files? Mil 2009-01-05T15:20:30Z 2009-01-05T16:16:18Z <p>Repair installation doesn't worked as I mentioned in my question. The problem was solved by using the command line with</p> <pre><code>devenv /ResetSkipPkgs </code></pre> <p>BUT after that I had to reset some of my Resharper settings. </p> http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no 2 Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Mil 2008-10-02T10:00:58Z 2008-11-18T11:36:26Z <p>Hello everybody!</p> <p>I have the in my opinion odd request to close a wizard form as Done or OK if Enter was pressed on the keyboard even if the OK/DONE button is not focused.</p> <p>In my opinion that would be a usability mistake. For example: In the wizard you may have multiple controls, buttons, check boxes, multiple line controls and they all have a different behavior on actions from the ENTER key. And don't forget the other buttons in the navigation of the wizard, what if they are focused?</p> <p>Should these controls don't react on Enter like expected before? Should they do their actions but in other cases where Enter does no further action for the control it should close the form == inconsistent?</p> <p>I think that is a typical request where the needs of one person would help him but confuse many other.</p> <p>In my opinion Wizards are very special because they are not only made to make things easier but also very often focus on people with less experience with the functionality of an application. So I take every request serious and try to look into all arguments for and against the request.</p> <p>Is my point of view to narrow? Are there some usability studies or guidelines especially for Wizards to backup my opinion or maybe proof me wrong?</p> <p>Thank you very much!</p> <p>Michael</p> http://stackoverflow.com/questions/233113/net-how-to-check-the-type-within-a-generic-typed-class 5 .NET: How to check the type within a generic typed class? Mil 2008-10-24T11:12:35Z 2008-10-24T11:30:04Z <p>Hello everybody!</p> <p>How do I get the type of a generic typed class within the class?</p> <p>An example:</p> <p>I build a generic typed collection implementing <em>ICollection&lt; T></em>. Within I have methods like </p> <pre><code> public void Add(T item){ ... } public void Add(IEnumerable&lt;T&gt; enumItems){ ... } </code></pre> <p>How can I ask within the method for the given type <em>T</em>?</p> <p>The reason for my question is: If <em>object</em> is used as <em>T</em> the collection uses Add(object item) instead of Add(IEnumerable&lt;object> enumItems) even if the parameter is IEnumerable. So in the first case it would add the whole enumerable collection as one object instead of multiple objects of the enumerable collection.</p> <p>So i need something like </p> <pre><code>if (T is object) { // Check for IEnumerable } </code></pre> <p>but of course that cannot work in C#. Suggestions?</p> <p>Thank you very much!</p> <p>Michael</p> http://stackoverflow.com/questions/186396/how-to-display-a-vrml-model-with-net 0 How to display a VRML model with .NET? Mil 2008-10-09T08:24:27Z 2008-10-09T19:00:55Z <p>Hello everybody!</p> <p>I have a request to display VRML models within a .NET application. Does someone know an easy way, maybe with standard .NET components, to achieve this? What are the issues I maybe have to face when representing VRML within an application?</p> <p>Thank you very much!</p> <p>Michael</p> http://stackoverflow.com/questions/168837/how-should-i-convert-java-code-to-c-code/168872#168872 0 Answer by Mil for How should I convert Java code to C# code? Mil 2008-10-03T20:56:47Z 2008-10-03T20:56:47Z <p>I'm not sure if it is really the best way to convert the code line by line especially if the obstacles become overwhelming. Of course the Java code gives you a guideline and the basic structure but I think at the end the most important thing is that the library does provide the same functionality like it does in Java.</p> http://stackoverflow.com/questions/168805/what-real-life-good-habits-has-programming-given-you/168819#168819 18 Answer by Mil for What real life good habits has programming given you? Mil 2008-10-03T20:45:21Z 2008-10-03T20:45:21Z <p>Solving problems in small steps and not in one maybe overwhelming attempt which never gets finished.</p> http://stackoverflow.com/questions/168677/whats-a-programming-answer-you-hate-to-hear-the-most-yet-give-out-yourself-on-m/168779#168779 4 Answer by Mil for What's a programming answer you hate to hear the most, yet give out yourself on many occasions? Mil 2008-10-03T20:34:22Z 2008-10-03T20:34:22Z <p>"But sales said..." or "You have to use IE."</p> http://stackoverflow.com/questions/166417/how-do-you-handle-multiple-selection-in-a-drop-down-style-control/166458#166458 0 Answer by Mil for How do you handle multiple selection in a drop down style control? Mil 2008-10-03T11:44:09Z 2008-10-03T11:44:09Z <p>I would use the CheckedListBox instead. It visualizes the multiple selection and you are able to select multiple entries. <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.checkedlistbox.aspx" rel="nofollow">Here</a> is the Microsoft link to the class.</p> http://stackoverflow.com/questions/157354/is-mathematics-necessary-for-programming/158148#158148 0 Answer by Mil for Is mathematics necessary for programming? Mil 2008-10-01T15:16:36Z 2008-10-01T15:16:36Z <p>If you need advanced mathematics in your daily job as programmer really depends on your tasks. I need them. The reason is I have to work with hydraulic calculations for piping systems to evaluate in code the piping system before it gets built. You never want to stand near a collapsing piping system because of under or overpressure. ;)</p> <p>I guess for many other kinds of 'simulations of the real world' you will need advanced mathematics too.</p> http://stackoverflow.com/questions/157144/customized-datagridview-column-does-not-accept-the-entered-decimal-seperator-unde 0 Customized DataGridView column does not accept the entered decimal seperator under Windows Vista Mil 2008-10-01T11:10:11Z 2008-10-01T13:24:25Z <p>Hello everybody!</p> <p>For a project I built a custom DataGridView column which contains NumericUpDown controls. It is implemented similar to the suggestion from <a href="http://msdn.microsoft.com/en-us/library/aa730881(VS.80).aspx" rel="nofollow">Microsoft</a></p> <p>The column works fine under Windows XP. It accepts the entered digits and decimal separator. Under Windows Vista I have the odd problem that the control only accepts the decimal separator entered by the numeric keypad but not from the keyboard main block.</p> <p>I have to add that I work with German (Switzerland) culture settings under Windows Vista and the German (Switzerland) keyboard layout is activated. The decimal separator in Switzerland is .</p> <p>Someone has an idea for the reason and maybe a solution? Thank you very much!</p> <p>Michael</p> <p><strong>Edit:</strong> I found the solution to my problem.</p> <ol> <li><p>To clarify the situation a little bit more. The NumericUpDown control I use implements IDataGridViewEditingControl and inherits from NumericUpDown. Because of IDataGridViewEditingControl I implement the method EditingControlWantsInputKey. And in the implementation of this method I found my mistake or what went wrong.</p></li> <li><p>In the method I inspected the entered keys and decided if the control had to handle it. But for the decimal separator I only expected <em>Keys.Decimal</em>. In my special (wrong) case the key could not be matched. What was missing was to look for <em>Keys.OemPeriod</em> too. And that was the fix.</p></li> </ol> http://stackoverflow.com/questions/657367/how-to-access-the-user-font-settings-of-the-internet-explorer/658356#658356 Comment by Mil on How to access the user font settings of the Internet Explorer? Mil 2009-03-18T14:07:38Z 2009-03-18T14:07:38Z It is not what I asked for. I know how to get the fonts from the document. The more important thing is how I get the font which is used if none of the document fonts are valid for the display. And in that case the default font of the browser is used. And I need that one. http://stackoverflow.com/questions/340138/why-is-visual-studio-not-able-to-open-csproj-files/340321#340321 Comment by Mil on Why is Visual Studio not able to open .csproj files? Mil 2008-12-04T12:03:57Z 2008-12-04T12:03:57Z SQL Server is installed, thats right but I didn't open the solution with the shell. The sln should in my case be opened by the VS Version Selector. http://stackoverflow.com/questions/340138/why-is-visual-studio-not-able-to-open-csproj-files/340149#340149 Comment by Mil on Why is Visual Studio not able to open .csproj files? Mil 2008-12-04T10:55:40Z 2008-12-04T10:55:40Z It is installed. It is not an issue occurring after the installation or at first use. I work with C#, this VS and this computer since 6 months. http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-official-faq/161424#161424 Comment by Mil on How Does Stackoverflow Work? (The Official FAQ) Mil 2008-12-02T13:04:41Z 2008-12-02T13:04:41Z Thanks for the suggestion mm2010. http://stackoverflow.com/questions/233113/net-how-to-check-the-type-within-a-generic-typed-class/233146#233146 Comment by Mil on .NET: How to check the type within a generic typed class? Mil 2008-10-24T18:46:39Z 2008-10-24T18:46:39Z Thank you very much! I will do it that way. http://stackoverflow.com/questions/233113/net-how-to-check-the-type-within-a-generic-typed-class/233155#233155 Comment by Mil on .NET: How to check the type within a generic typed class? Mil 2008-10-24T12:46:38Z 2008-10-24T12:46:38Z marxidad, yes, that's right. http://stackoverflow.com/questions/186396/how-to-display-a-vrml-model-with-net/186602#186602 Comment by Mil on How to display a VRML model with .NET? Mil 2008-10-10T09:11:00Z 2008-10-10T09:11:00Z Thank you for your suggestion James but for my needs Haralds advise will be more satisfying. The reason is that you have not only to see the 3D objects but also to turning them around and zooming in and out. http://stackoverflow.com/questions/157755/browser-helper-objects-bho-in-windows-vista-only-with-admin-rights/169771#169771 Comment by Mil on Browser Helper Objects (BHO) in Windows Vista only with admin rights? Mil 2008-10-04T17:11:02Z 2008-10-04T17:11:02Z Thank you very much! http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no/162046#162046 Comment by Mil on Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Mil 2008-10-02T13:18:36Z 2008-10-02T13:18:36Z Assuming you would make this exception (for this textbox you would stay in the control) maybe you have to make other exceptions for other controls too? I'm really not a fan of inconsistent behaviour of controls within the same context (here the wizard). http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no/162046#162046 Comment by Mil on Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Mil 2008-10-02T13:15:54Z 2008-10-02T13:15:54Z Lets say you have a multiline textbox on your wizard page. As user you would really accept that you cannot go to the next line with Enter and add new text because after Enter it would go to the next control (or page)? Or would you make an exception for this control here? http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no/162103#162103 Comment by Mil on Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Mil 2008-10-02T13:10:48Z 2008-10-02T13:10:48Z If he wants he can use later the wizard again to change his settings but normally it is not necessary. http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no/162103#162103 Comment by Mil on Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Mil 2008-10-02T13:09:54Z 2008-10-02T13:09:54Z The special situation you describe could be of course a reason to ask for quick closing. But here it is not the case. The wizard is opened by the client and normally will be used once for a project: before he is planning a piping system where later the hydraulic will be calculated and checked. http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no/161826#161826 Comment by Mil on Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Mil 2008-10-02T11:56:56Z 2008-10-02T11:56:56Z Ah... and make more love and less war. ;) http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no/161826#161826 Comment by Mil on Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Mil 2008-10-02T11:54:29Z 2008-10-02T11:54:29Z I will think about the alternative of Next instead of Finish as suggestion but it does no good for controls which are focused in the wizard and would have their own behaviour on Enter (see my question). http://stackoverflow.com/questions/161591/usability-should-the-enter-key-close-a-wizard-form-as-ok-even-if-the-focus-is-no/161826#161826 Comment by Mil on Usability: Should the ENTER key close a wizard form as OK even if the focus is not set on the OK/DONE button? Mil 2008-10-02T11:53:30Z 2008-10-02T11:53:30Z Thank you very much that you are so worried about my wizards. Yes they have a finish page. The settings in the wizards have no effect until the user accepts with Finish. I don't use confirmation dialogs for wizards. ;)