User Mladen Mihajlovic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T15:46:14Z http://stackoverflow.com/feeds/user/11421 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/784638/the-string-was-not-recognized-as-a-valid-datetime/784660#784660 4 Answer by Mladen Mihajlovic for The string was not recognized as a valid datetime Mladen Mihajlovic 2009-04-24T05:42:06Z 2009-11-26T08:20:46Z <p>You can't format normal text using datetime formats. </p> <p>Try</p> <p><strong>C#</strong></p> <pre><code>objfile.dateFileDate=DateTime.ParseExact(txtdate.text, "MM/dd/yyyy hh:mm", null); </code></pre> <p><strong>VB.NET</strong></p> <pre><code>objfile.dateFileDate=DateTime.ParseExact(txtdate.text, "MM/dd/yyyy hh:mm", Nothing) </code></pre> <p>This is assuming dateFileDate is a DateTime type and that the txtdate.text is in the above format.</p> http://stackoverflow.com/questions/1102390/mysql-stored-proc/1102419#1102419 2 Answer by Mladen Mihajlovic for mysql stored proc Mladen Mihajlovic 2009-07-09T07:51:42Z 2009-07-09T07:51:42Z <p>Check the articles at <a href="http://dev.mysql.com/usingmysql/dotnet/" rel="nofollow">http://dev.mysql.com/usingmysql/dotnet/</a>.</p> http://stackoverflow.com/questions/776771/how-do-i-solve-405-method-not-allowed-for-our-subversion-setup/791738#791738 0 Answer by Mladen Mihajlovic for How do I solve "405 Method Not Allowed" for our subversion setup? Mladen Mihajlovic 2009-04-26T22:37:47Z 2009-04-26T22:37:47Z <p>Is the version of SVN linked with subclipse the same as the server? Is this the latest version of subclipse? If not then maybe it's a version mismatch problem or something like that.</p> <p>Have you tried <a href="http://www.eclipse.org/subversive/" rel="nofollow">Subversive</a> as an alternative?</p> http://stackoverflow.com/questions/461605/invalid-webresource-axd-parameters-being-generated/784799#784799 1 Answer by Mladen Mihajlovic for Invalid Webresource.axd parameters being generated. Mladen Mihajlovic 2009-04-24T07:02:54Z 2009-04-24T07:02:54Z <p>What version of .NET are you compiling against? What happens if you change your build to build for an older or newer version? (not sure if this would do anything but it's worth a try)</p> <p>If it's still happening, I think you should post a bug about it on <a href="http://connect.microsoft.com/" rel="nofollow">Microsoft Connect</a>. They should come back to you pretty quickly.</p> http://stackoverflow.com/questions/781046/why-doesnt-switching-to-release-in-vs-set-the-debug-parameter-to-false-in-web-co/781055#781055 1 Answer by Mladen Mihajlovic for Why doesn't switching to release in VS set the debug parameter to false in web.config Mladen Mihajlovic 2009-04-23T09:57:50Z 2009-04-23T09:57:50Z <p>Well your web.config would probably be different for debug and release (connection string, passwords, etc...) but if it's not, look at a postbuild event which would copy over a different file.</p> <p>Also check <a href="http://weblogs.asp.net/scottgu/archive/2007/09/21/tip-trick-automating-dev-qa-staging-and-production-web-config-settings-with-vs-2005.aspx" rel="nofollow">this blog post</a> from Scott Guthrie.</p> http://stackoverflow.com/questions/780483/tdd-friendly-singleton-like-class/780500#780500 1 Answer by Mladen Mihajlovic for TDD-friendly Singleton-like class Mladen Mihajlovic 2009-04-23T06:25:40Z 2009-04-23T06:25:40Z <p>Do you use any type of IOC container? <a href="http://unity.codeplex.com/" rel="nofollow">Unity</a> is my container of choice, and it contains a <a href="http://msdn.microsoft.com/en-us/library/dd203217.aspx#ks%5Fregistersingleton" rel="nofollow">ContainerControledLifetimeManager</a> which makes your class a singleton, but not managed by yourself.</p> http://stackoverflow.com/questions/780462/what-practical-experiences-you-have-from-using-software-design-patterns/780473#780473 2 Answer by Mladen Mihajlovic for What practical experiences you have from using Software Design Patterns ? Mladen Mihajlovic 2009-04-23T06:14:22Z 2009-04-23T06:14:22Z <p>Well the one pattern which I use for most of my projects is MVC. It had proven to be perfect for my type of programming. I've also used a combination of most of the patterns that are available considering the amount of programming I actually do. Don't forget that patterns are "solutions to <strong>common</strong> problems" that we experience in programming.</p> <p><a href="http://www.dofactory.com/Patterns/Patterns.aspx" rel="nofollow">Here's a cool link</a> for reading about patterns with implementations (in C# and VB.NET).</p> http://stackoverflow.com/questions/772084/setting-default-url-in-web-config-for-website/772095#772095 3 Answer by Mladen Mihajlovic for Setting Default URL in Web.Config for website Mladen Mihajlovic 2009-04-21T11:15:00Z 2009-04-21T11:15:00Z <p>This is done from within IIS:</p> <ul> <li><a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/dc6eb1b4-9028-4308-9935-52b64edfad36.mspx?mfr=true" rel="nofollow">From IIS 6</a></li> <li><a href="http://www.netomatix.com/development/IIS7Configuration3.aspx" rel="nofollow">From IIS7</a></li> <li><a href="http://blogs.iis.net/bills/archive/2008/03/22/how-to-add-a-default-document-with-iis7-web-config.aspx" rel="nofollow">IIS 7 from web.config file</a></li> </ul> <p>You might also be able to do it by setting up some url mappings. Check <a href="http://bytes.com/groups/net-asp/638842-possible-config-default-page-web-config" rel="nofollow">here</a> for more details.</p> http://stackoverflow.com/questions/765176/how-to-get-all-details-about-a-mysql-table-using-c/765193#765193 0 Answer by Mladen Mihajlovic for how to get all details about a mysql table using c#? Mladen Mihajlovic 2009-04-19T10:31:55Z 2009-04-19T10:31:55Z <p>You could use the <a href="http://dev.mysql.com/doc/refman/5.0/en/information-schema.html" rel="nofollow">information schema tables</a>.</p> http://stackoverflow.com/questions/763362/net-reflection-on-unloadable-types/763369#763369 0 Answer by Mladen Mihajlovic for .NET Reflection on unloadable types Mladen Mihajlovic 2009-04-18T12:33:24Z 2009-04-18T12:33:24Z <p>Check out this blog post: <a href="http://blogs.msdn.com/suzcook/archive/2004/02/13/debugging-a-missingmethodexception-missingfieldexception-typeloadexception.aspx" rel="nofollow">Debugging a MissingMethodException, MissingFieldException, TypeLoadException</a>.</p> http://stackoverflow.com/questions/761779/debugging-silverlight-bindings/761796#761796 0 Answer by Mladen Mihajlovic for Debugging Silverlight Bindings Mladen Mihajlovic 2009-04-17T19:13:40Z 2009-04-17T19:13:40Z <p>Very <a href="http://www.beacosta.com/blog/?p=52" rel="nofollow">good blog post here</a> about debugging WPF bindings, which I assume apply to Silverlight in most cases too.</p> http://stackoverflow.com/questions/761750/vs2008-immediate-window-lost/761790#761790 2 Answer by Mladen Mihajlovic for VS2008 Immediate Window Lost Mladen Mihajlovic 2009-04-17T19:11:34Z 2009-04-17T19:11:34Z <p>Another one to try, While running the app, go to Window/Reset Window Layout...</p> http://stackoverflow.com/questions/760503/how-to-pass-a-method-name-in-order-to-instantiate-a-delegate/760533#760533 4 Answer by Mladen Mihajlovic for How to pass a method name in order to instantiate a delegate? Mladen Mihajlovic 2009-04-17T13:58:51Z 2009-04-17T13:58:51Z <p>You don't need the Delegate declaration or the WriteMessage method. Try the following:</p> <pre><code>using System; using System.Collections.Generic; namespace TestDelegate { class Program { static void Main(string[] args) { List&lt;string&gt; words = new List&lt;string&gt;() { "one", "two", "three", "four", "five" }; Action&lt;string&gt; theFunction = WriteBasic; foreach (string word in words) { theFunction(word); } Console.ReadLine(); } public static void WriteBasic(string message) { Console.WriteLine(message); } public static void WriteAdvanced(string message) { Console.WriteLine("*** {0} ***", message); } } } </code></pre> <p>Action is already a delegate so you don't need to make another one.</p> http://stackoverflow.com/questions/760434/how-do-you-come-up-with-your-apps-minimum-hardware-specs/760477#760477 1 Answer by Mladen Mihajlovic for How do you come up with your app's minimum hardware specs? Mladen Mihajlovic 2009-04-17T13:43:21Z 2009-04-17T13:43:21Z <p>Also find out what the minimum requirements are for your software framework/platform of choice.</p> http://stackoverflow.com/questions/759990/vb-net-how-do-i-reduce-int-to-1-decimal-place/759994#759994 5 Answer by Mladen Mihajlovic for VB.NET How do I reduce int to 1 decimal place? Mladen Mihajlovic 2009-04-17T11:01:16Z 2009-04-17T11:01:16Z <pre><code>Math.Round(New FileInfo(FileName).Length / 1024,1) </code></pre> http://stackoverflow.com/questions/754838/exploring-new-version-control-systems-my-biggest-need-reliable-merging/759939#759939 1 Answer by Mladen Mihajlovic for Exploring new version control systems. My biggest need: Reliable merging Mladen Mihajlovic 2009-04-17T10:39:57Z 2009-04-17T10:51:04Z <p><a href="http://bazaar-vcs.org/" rel="nofollow">Bazaar</a> can be used in many different types of workflows. See this article about using it in a <a href="http://bazaar-vcs.org/Tutorials/CentralizedWorkflow" rel="nofollow">centralized workflow</a>.</p> http://stackoverflow.com/questions/344468/as-a-developer-what-changes-do-you-make-to-a-vanilla-windows-install/755297#755297 3 Answer by Mladen Mihajlovic for As a developer, what changes do you make to a vanilla Windows install ? Mladen Mihajlovic 2009-04-16T09:02:57Z 2009-04-16T09:02:57Z <p>I'm surprised nobody has mentioned <a href="http://bluemars.org/clipx/" rel="nofollow">ClipX</a>. I find that I can't develop without this clipboard history tool.</p> http://stackoverflow.com/questions/750727/char4-as-primary-key/750753#750753 4 Answer by Mladen Mihajlovic for Char(4) as Primary key Mladen Mihajlovic 2009-04-15T08:16:09Z 2009-04-15T08:16:09Z <p>An id field (not associated with the data) is called a surrogate key. They have their advantages and disadvantages. You can see a list of those on <a href="http://en.wikipedia.org/wiki/Surrogate%5Fkey" rel="nofollow">this Wikipedia article</a>. Personally I feel that people overuse them and have forgotten (or have never learned) how to properly <a href="http://en.wikipedia.org/wiki/Database%5Fnormalization" rel="nofollow">normalise a database structure</a>.</p> http://stackoverflow.com/questions/746880/formsauthentication-redirectfromloginpage-is-not-working/746888#746888 1 Answer by Mladen Mihajlovic for FormsAuthentication.RedirectFromLoginPage is not working Mladen Mihajlovic 2009-04-14T09:36:14Z 2009-04-14T09:36:14Z <p>It should be <code>&lt;deny users="?"/&gt;</code></p> <pre><code>* means all ? means unauthenticated </code></pre> http://stackoverflow.com/questions/745237/close-tab-on-winforms-tab-control-with-middle-mouse-button 3 Close tab on winforms tab control with middle mouse button Mladen Mihajlovic 2009-04-13T20:21:46Z 2009-04-13T21:01:24Z <p>Is there any easy (5 lines of code) way to do this?</p> http://stackoverflow.com/questions/229627/entity-classes-decoupled-from-linq-to-sql-provider-for-implementing-the-repositor/741677#741677 3 Answer by Mladen Mihajlovic for Entity classes decoupled from LINQ to SQL provider for implementing the Repository pattern. How? Mladen Mihajlovic 2009-04-12T12:05:48Z 2009-04-12T12:05:48Z <p>I found a fantastic blog post (with lots of good code) about this here: <a href="http://iridescence.no/post/Linq-to-Sql-Programming-Against-an-Interface-and-the-Repository-Pattern.aspx" rel="nofollow">http://iridescence.no/post/Linq-to-Sql-Programming-Against-an-Interface-and-the-Repository-Pattern.aspx</a></p> http://stackoverflow.com/questions/645237/as-a-programmer-what-single-discovery-has-given-you-the-greatest-boost-in-product/741568#741568 1 Answer by Mladen Mihajlovic for As a programmer what single discovery has given you the greatest boost in productivity? Mladen Mihajlovic 2009-04-12T10:22:48Z 2009-04-12T10:22:48Z <p><a href="http://www.bluemars.org/clipx/" rel="nofollow">ClipX</a> has done wonders for me.</p> http://stackoverflow.com/questions/741459/xml-and-multiple-non-unique-divs/741469#741469 2 Answer by Mladen Mihajlovic for XML and multiple, non-unique DIVs Mladen Mihajlovic 2009-04-12T08:35:59Z 2009-04-12T08:35:59Z <p>You could easily do this with JQuery by using it's many selectors. See <a href="http://docs.jquery.com/Selectors" rel="nofollow">this page</a> for a list of them, and see specifically the prev - next and first last.</p> http://stackoverflow.com/questions/741447/what-are-the-differences-between-visual-studio-and-vs-express-edition/741453#741453 5 Answer by Mladen Mihajlovic for What are the differences between visual studio and VS express edition? Mladen Mihajlovic 2009-04-12T08:15:48Z 2009-04-12T08:15:48Z <p>You can <a href="http://download.microsoft.com/download/5/9/0/590E8F3D-77B1-4C5A-9FA7-0C526409836F/VisualStudio2008%5FComparative.xls" rel="nofollow">download a comparison</a> from Microsoft. And another one from <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=727bcfb0-b575-47ab-9fd8-4ee067bb3a37" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/741391/chain-of-responsiblity-design-pattern-gives-error-not-all-code-paths-return-a-va/741393#741393 4 Answer by Mladen Mihajlovic for chain of responsiblity design pattern gives error: not all code paths return a value Mladen Mihajlovic 2009-04-12T07:22:23Z 2009-04-12T07:22:23Z <p>In your elseif statement in public override ReturnFaiz HandleRequest(int mevduat) you are not returning anything... so should be:</p> <pre><code> if (mevduat &gt; 0 &amp;&amp; mevduat 1000 &amp;&amp; mevduat 3000) { return ReturnFaiz.faiztype3; } else if(BirSonrakiAdim!=null) { return BirSonrakiAdim.HandleRequest(mevduat); } else return ReturnFaiz.faiztype1; </code></pre> http://stackoverflow.com/questions/738327/c-app-runs-with-debugging-but-not-without/739670#739670 0 Answer by Mladen Mihajlovic for C# app runs with debugging, but not without Mladen Mihajlovic 2009-04-11T07:21:59Z 2009-04-11T07:21:59Z <p>One thing left I think is to use WinDbg to try and debug it. Here are some links on how to use it:</p> <ol> <li><a href="http://www.codeproject.com/KB/debug/windbg%5Fpart1.aspx" rel="nofollow">http://www.codeproject.com/KB/debug/windbg_part1.aspx</a></li> <li><a href="http://blogs.msdn.com/johan/archive/2007/11/13/getting-started-with-windbg-part-i.aspx" rel="nofollow">http://blogs.msdn.com/johan/archive/2007/11/13/getting-started-with-windbg-part-i.aspx</a></li> <li><a href="http://blogs.msdn.com/tess/" rel="nofollow">http://blogs.msdn.com/tess/</a> (good blog about debugging in general in windbg)</li> </ol> <p>Thinking about it, it could also be some service or something that's clashing. Try stopping all unneeded services and closing unneeded programs (including startup ones) and see what happens then.</p> http://stackoverflow.com/questions/738327/c-app-runs-with-debugging-but-not-without/738440#738440 1 Answer by Mladen Mihajlovic for C# app runs with debugging, but not without Mladen Mihajlovic 2009-04-10T18:24:25Z 2009-04-10T18:24:25Z <p>Try take off optimizations from the Release build (in the project settings) and see if that helps.</p> http://stackoverflow.com/questions/733958/winforms-how-can-i-include-a-usercontrol-form-an-external-library/733964#733964 2 Answer by Mladen Mihajlovic for WinForms: How can I include a usercontrol form an external library? Mladen Mihajlovic 2009-04-09T12:18:07Z 2009-04-09T12:18:07Z <p>You can right click on your toolbox and add it from the context menu...</p> http://stackoverflow.com/questions/733875/is-there-any-place-to-host-your-code-online/733883#733883 0 Answer by Mladen Mihajlovic for Is there any place to host your code online? Mladen Mihajlovic 2009-04-09T11:54:52Z 2009-04-09T11:54:52Z <p>You can host private projects on <a href="http://www.devjavu.com/" rel="nofollow">DevjaVu</a> is you want to use Subversion.</p> http://stackoverflow.com/questions/731497/using-combobox-properties-in-c-net-3-5/731514#731514 4 Answer by Mladen Mihajlovic for Using combobox properties in C# NET 3.5 Mladen Mihajlovic 2009-04-08T19:43:36Z 2009-04-08T19:43:36Z <p>For a list only combobox:</p> <pre><code>comboBox.DropDownStyle = ComboBoxStyle.DropDownList; </code></pre> <p>to get the text:</p> <pre><code>string text = comboBox.Text; </code></pre> http://stackoverflow.com/questions/784638/the-string-was-not-recognized-as-a-valid-datetime/784660#784660 Comment by Mladen Mihajlovic on The string was not recognized as a valid datetime Mladen Mihajlovic 2009-11-26T08:21:10Z 2009-11-26T08:21:10Z Thanks @Raghav Khunger - fixed. http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 Comment by Mladen Mihajlovic on RegEx match open tags except XHTML self-contained tags Mladen Mihajlovic 2009-11-26T08:18:01Z 2009-11-26T08:18:01Z I listen and obey master! http://stackoverflow.com/questions/1102390/mysql-stored-proc/1102419#1102419 Comment by Mladen Mihajlovic on mysql stored proc Mladen Mihajlovic 2009-07-09T08:03:32Z 2009-07-09T08:03:32Z Well, you would need to change SqlConnection to MySqlConnection, SqlCommand to MySqlCommand, etc... You also need to make sure that you've referenced the MySql .NET Connector assembly in your project. The parameters use ? instead of @ I think that should be it... http://stackoverflow.com/questions/461605/invalid-webresource-axd-parameters-being-generated/784799#784799 Comment by Mladen Mihajlovic on Invalid Webresource.axd parameters being generated. Mladen Mihajlovic 2009-04-28T15:06:32Z 2009-04-28T15:06:32Z Cool. I've voted for it too. Good luck :) http://stackoverflow.com/questions/785426/using-clipboard Comment by Mladen Mihajlovic on Using Clipboard Mladen Mihajlovic 2009-04-24T11:20:27Z 2009-04-24T11:20:27Z But why are <i>both</i> questions closed? http://stackoverflow.com/questions/785426/using-clipboard Comment by Mladen Mihajlovic on Using Clipboard Mladen Mihajlovic 2009-04-24T11:14:46Z 2009-04-24T11:14:46Z It's not as vague as it seems. He wants to copy a folder into the clipboard. Probably the same way you would right click on a folder in explorer and choose [Copy]. Right? http://stackoverflow.com/questions/784762/php-how-to-generate-a-ulli-tree-in-an-xml2assoc-array-result Comment by Mladen Mihajlovic on PHP: How to generate a <ul><li> tree in an xml2assoc array result? Mladen Mihajlovic 2009-04-24T06:54:29Z 2009-04-24T06:54:29Z The xml is not in an altogether friendly format for recursion. Have you tried simplexml (<a href="http://www.php.net/simplexml" rel="nofollow">php.net/simplexml</a>)? http://stackoverflow.com/questions/784638/the-string-was-not-recognized-as-a-valid-datetime/784660#784660 Comment by Mladen Mihajlovic on The string was not recognized as a valid datetime Mladen Mihajlovic 2009-04-24T06:02:47Z 2009-04-24T06:02:47Z Just to mention, Convert.ToDateTime is not wrong and can also be used, but DateTime.ParseExact allow you to specify a format explicitly. http://stackoverflow.com/questions/784638/the-string-was-not-recognized-as-a-valid-datetime/784660#784660 Comment by Mladen Mihajlovic on The string was not recognized as a valid datetime Mladen Mihajlovic 2009-04-24T05:51:18Z 2009-04-24T05:51:18Z Even in VB6 you can't use Format to format an arbitary string. You would need to supply a date type to be able to format using that format string. http://stackoverflow.com/questions/784638/the-string-was-not-recognized-as-a-valid-datetime/784661#784661 Comment by Mladen Mihajlovic on The string was not recognized as a valid datetime Mladen Mihajlovic 2009-04-24T05:46:54Z 2009-04-24T05:46:54Z See here for reference: <a href="http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/784638/the-string-was-not-recognized-as-a-valid-datetime/784661#784661 Comment by Mladen Mihajlovic on The string was not recognized as a valid datetime Mladen Mihajlovic 2009-04-24T05:46:01Z 2009-04-24T05:46:01Z mm is minutes, MM is months http://stackoverflow.com/questions/781046/why-doesnt-switching-to-release-in-vs-set-the-debug-parameter-to-false-in-web-co/781061#781061 Comment by Mladen Mihajlovic on Why doesn't switching to release in VS set the debug parameter to false in web.config Mladen Mihajlovic 2009-04-23T13:34:24Z 2009-04-23T13:34:24Z But that would only solve the debug=true scenario, which is only one of the problems with deploying your dev config file. http://stackoverflow.com/questions/772086/get-only-one-instance Comment by Mladen Mihajlovic on Get only one instance Mladen Mihajlovic 2009-04-21T13:30:38Z 2009-04-21T13:30:38Z Ok so you're talking about NHibernate? You would get better response if you added that to your tags. http://stackoverflow.com/questions/765173/correct-way-of-using-a-throw-try-catch-error-handling Comment by Mladen Mihajlovic on correct way of using a throw try catch error handling Mladen Mihajlovic 2009-04-19T10:34:55Z 2009-04-19T10:34:55Z Looking at the code, I would say that the author of this function only threw the exception so that he could log it using an already existing logging functionality. http://stackoverflow.com/questions/759990/vb-net-how-do-i-reduce-int-to-1-decimal-place/759994#759994 Comment by Mladen Mihajlovic on VB.NET How do I reduce int to 1 decimal place? Mladen Mihajlovic 2009-04-18T13:47:25Z 2009-04-18T13:47:25Z But I'm sure he was just using it as an example...