User Martin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T02:55:17Z http://stackoverflow.com/feeds/user/770 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/549065/how-to-extract-files-from-msi-package 2 How to extract files from MSI package? Martin 2009-02-14T12:41:06Z 2009-12-06T10:18:31Z <p>Can anyone advise a way, or utility that can extract the files from an MSI installation package.</p> <p>We have some old patches that we want to get the files from but don't wish to spend the time installing them to a machine.</p> <p>Much appreciated.</p> http://stackoverflow.com/questions/1833166/html-how-to-markup-4-panels-in-a-row-for-content 0 HTML How to markup 4 panels in a row for content. Martin 2009-12-02T14:17:36Z 2009-12-02T14:23:35Z <p>I'm abysmal at HTML so looking for some help in recreating the following. I could do it with a table, but understand that that is a no-no nowadays. So advice is needed.</p> <p><img src="http://img130.imageshack.us/img130/8623/4panel.jpg" alt="alt text"></p> <p>What I am wanting to achieve is four fixed size boxes then spread across the page on a single row. These boxes will have some information in them, possibly text, possibly images and possibly both.</p> <p>The boxes will be static size, ie I don't want them resizing to fit the width of the browser window. I'm guessing it probably going to be done with the div tag but I don't have the first clue where to start.</p> http://stackoverflow.com/questions/1822208/asp-net-mvc-how-does-my-action-result-find-the-selected-entry-in-a-dropdownlist 1 ASP.NET MVC : How does my action result find the selected entry in a dropdownlist? Martin 2009-11-30T20:25:24Z 2009-11-30T21:24:36Z <p>I have a dropdownlist that I populate with some stuff:</p> <p><strong>In my controller</strong></p> <pre><code>ViewData["SourceModelList"] = new SelectList(_modelService.GetAllModels(), "Id", "Description"); </code></pre> <p><strong>in my view</strong></p> <pre><code>&lt;% using (Html.BeginForm("Compare", "Home")) { %&gt; &lt;p&gt; &lt;%=Html.DropDownList("SourceModelList")%&gt; &lt;/p&gt; &lt;p&gt; &lt;input type="submit" value="Compare" /&gt; &lt;/p&gt; &lt;% } %&gt; </code></pre> <p>And this renders lovely. Now when I post back to my 'compare' action, how do I find out which item was selected in the drop down?</p> http://stackoverflow.com/questions/1775865/visual-studio-console-app-prevent-window-from-closing 3 Visual Studio Console App - Prevent window from closing. Martin 2009-11-21T15:58:35Z 2009-11-28T20:13:26Z <p>This is a probably an embarasing question as no doubt the answer is blindingly obvious.</p> <p>I've used Visual Studio for years, but this is the first time I've done any 'Console Application' development.</p> <p>When I run my application the console window pops up, the program output appears and then the window closes as the application exits.</p> <p>Is there a way to either keep it open until I have checked the output, or view the results after the window has closed?</p> http://stackoverflow.com/questions/1805532/jquery-cascade-plugin-change-the-format-of-the-ajax-url 0 Jquery.cascade plugin change the format of the Ajax URL Martin 2009-11-26T20:33:18Z 2009-11-27T16:18:48Z <p>I'm using the <a href="http://devlicio.us/blogs/mike%5Fnichols/archive/2008/05/25/jquery-cascade-cascading-values-from-forms.aspx" rel="nofollow">jQuery.Cascade</a> plugin in my Asp.Net MVC application. I've got it all working in a manner as follows:</p> <pre><code>jQuery("#CompareModelList").cascade("#CompareManufacturerList", { ajax: { url: '/Home/Models' }, template: commonTemplate, match: function (selectedValue) { return this.ManufacturerId == selectedValue;}, }); </code></pre> <p>However, when this fires it calls the action in my controller via the following request:</p> <pre><code>http://localhost/Home/Models?val=50 </code></pre> <p>What I would prefer is:</p> <pre><code>http://localhost/Home/Models/50 </code></pre> <p>Now in the <a href="http://dev.chayachronicles.com/jquery/cascade/index.html" rel="nofollow">examples</a> provided there is the following comment:</p> <blockquote> <p>Passes selected value of parent select to url as 'val=', but accepts the full ajax options hash so you can append other data as well</p> </blockquote> <p>So I'm presuming what I wish to achieve is possible - but as a newcommer to jQuery and Ajax I'm at a loss as to how to do this. Can anyone help?</p> http://stackoverflow.com/questions/1777412/describe-the-three-elements-that-must-be-included-in-order-for-a-loop-to-successf/1777441#1777441 7 Answer by Martin for Describe the three elements that must be included in order for a loop to successfully perform correctly Martin 2009-11-22T01:19:49Z 2009-11-22T01:19:49Z <ol> <li>Initialisation.</li> <li>Condition.</li> <li>Increment.</li> </ol> http://stackoverflow.com/questions/1777153/is-it-possible-to-have-a-c-winform-with-in-built-anti-keylogger/1777202#1777202 1 Answer by Martin for Is it possible to have a C# Winform with in-built Anti-Keylogger? Martin 2009-11-21T23:51:51Z 2009-11-21T23:51:51Z <p>I presume you are worried about users entering their credentials and them being captured.</p> <p>If this is the case then you need to establish a method of ensuring any captured details are not of use.</p> <p>A method employed by many banks, and even World of Warcraft now, is the use of a portable token generator. The user then enters their username, password, and typically a PIN displayed on the token generator. These PINs exist for only a few seconds and never repeat. This means the nefarious user who intercepts the credentials can not authenticate with them.</p> <p>I have never used them, and have no idea how you would source them, but you can read about them here:</p> <p><a href="http://en.wikipedia.org/wiki/Security%5Ftoken" rel="nofollow">http://en.wikipedia.org/wiki/Security%5Ftoken</a></p> <p>It seems to me this is a better method than trying to stop a keylogger from attacking your application.</p> http://stackoverflow.com/questions/1776066/python-3-write-newlines-to-html/1776101#1776101 0 Answer by Martin for Python 3: Write newlines to HTML Martin 2009-11-21T17:22:14Z 2009-11-21T17:22:14Z <p>Print() should add a newline by default - unless you tell it otherwise. However there have been other changes in Python 3:</p> <pre><code>Old: print "The answer is", 2*2 New: print("The answer is", 2*2) Old: print x, # Trailing comma suppresses newline New: print(x, end=" ") # Appends a space instead of a newline Old: print # Prints a newline New: print() # You must call the function! Old: print &gt;&gt;sys.stderr, "fatal error" New: print("fatal error", file=sys.stderr) Old: print (x, y) # prints repr((x, y)) New: print((x, y)) # Not the same as print(x, y)! </code></pre> <p><em>Old = Python 2.5, New = Python 3.</em></p> <p>More details here: <a href="http://docs.python.org/3.1/whatsnew/3.0.html" rel="nofollow">http://docs.python.org/3.1/whatsnew/3.0.html</a></p> http://stackoverflow.com/questions/1775642/what-is-the-correct-way-to-read-from-a-datarow-if-the-cell-might-be-null/1775654#1775654 1 Answer by Martin for what is the correct way to read from a datarow if the cell might be null Martin 2009-11-21T14:44:51Z 2009-11-21T14:44:51Z <p>Pass the column, and a default value to a helper function that checks for null and returns the default if null, or the column value if not null.</p> http://stackoverflow.com/questions/1775582/apache-hotlink-protection-for-download-folder/1775586#1775586 0 Answer by Martin for Apache Hotlink Protection for Download Folder Martin 2009-11-21T14:10:58Z 2009-11-21T14:16:22Z <p>Add the following to a .htaccess file in your /files directory</p> <pre><code>RewriteEngine On RewriteCond %{HTTP_REFERER} !^http://(.+\.)?mysite\.com/ [NC] RewriteCond %{HTTP_REFERER} !^$ RewriteRule .*\.(exe|zip|msi)$ /images/nohotlink.jpg [L] </code></pre> <p>Change "mysite.com" to your domain and /images/nohotlink.jpg to an image you wish to display telling users hotlinking is not allowed.</p> <p>For more detailed information check out:</p> <p><a href="http://altlab.com/htaccess%5Ftutorial.html" rel="nofollow">http://altlab.com/htaccess%5Ftutorial.html</a></p> http://stackoverflow.com/questions/1775558/session-mode-in-asp-net/1775564#1775564 2 Answer by Martin for Session mode in ASP.Net? Martin 2009-11-21T14:01:09Z 2009-11-21T14:07:05Z <p>It depends entirely on your circumstances and the type of website you wish to operate.</p> <p>I suspect your expected volumes of traffic and the hardware it is running on is also a large factor.</p> <p>Can you give us more information.</p> <p><strong>Performance considerations</strong></p> <ul> <li><p><strong>InProc</strong> - Fastest, but the more session data, the more memory is consumed on the web server, and that can affect performance.</p></li> <li><p><strong>StateServer</strong> - When storing data of basic types (e.g. string, integer, etc), in one test environment it's 15% slower than InProc. However, the cost of serialization/deserialization can affect performance if you're storing lots of objects. You have to do performance testing for your own scenario. </p></li> <li><strong>SQLServer</strong> - When storing data of basic types (e.g. string, integer, etc), in one test environment it's 25% slower than InProc. Same warning about serialization as in StateServer. </li> </ul> <p><strong>Robustness</strong> </p> <ul> <li><p><strong>InProc</strong> - Session state will be lost if the worker process (aspnet_wp.exe) recycles, or if the appdomain restarts. It's because session state is stored in the memory space of an appdomain. For details, see <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;q324772" rel="nofollow">KB324772</a>. </p></li> <li><p><strong>StateServer</strong> - Solve the session state loss problem in InProc mode. Allows a webfarm to store session on a central server. Single point of failure at the State Server. SQLServer - Similar to StateServer. Moreover, session state data can survive a SQL server restart, and you can also take advantage of SQL server failover cluster, after you've followed instructions in KB <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;q311209" rel="nofollow">311029</a>. </p></li> </ul> <p><em>The above is an extract from an article by Peter A. Bromberg available <a href="http://www.eggheadcafe.com/articles/20021016.asp" rel="nofollow">here</a></em></p> http://stackoverflow.com/questions/1775490/why-does-windows-installer-start-up-everytime-i-start-up-visual-basic-6/1775497#1775497 1 Answer by Martin for why does windows installer start up everytime i start up visual basic 6 Martin 2009-11-21T13:35:45Z 2009-11-21T13:35:45Z <p>It's possible a previous installation has not completed correctly.</p> <p>Use the utility at the following link to remove any rogue installations files:</p> <p><a href="http://support.microsoft.com/kb/290301" rel="nofollow">http://support.microsoft.com/kb/290301</a></p> http://stackoverflow.com/questions/1771476/transform-date-represented-as-string-to-date-in-visual-basic/1771491#1771491 3 Answer by Martin for Transform date represented as String to Date in Visual Basic Martin 2009-11-20T16:07:13Z 2009-11-20T17:29:04Z <p>In <a href="http://en.wikipedia.org/wiki/Visual%5FBasic%5F.NET" rel="nofollow">VB.NET</a>:</p> <pre><code>' Assume the current culture is en-US. ' The date is Feburary 16, 1992, 12 hours, 15 minutes and 12 seconds. Dim myDateTimeValue As String = "2/16/1992 12:15:12" Dim myDateTime As DateTime = DateTime.Parse(myDateTimeValue) ' Reverse month and day to conform to a different culture. ' The date is Feburary 16, 1992, 12 hours, 15 minutes and 12 seconds. Dim cultureGB = New CultureInfo("en-GB", True) Dim myDateTimeValue As String = "16/2/1992 12:15:12" Dim myDateTime As DateTime = DateTime.Parse(myDateTimeValue, cultureGB) ' Dsiplay the date in DD/MM/YYYY format Debug.Print Format(myDateTime ,"dd/MM/yyyy") </code></pre> <p>Reference: <a href="http://msdn.microsoft.com/en-us/library/1k1skd40%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/1k1skd40%28VS.80%29.aspx</a></p> <p>In <a href="http://en.wikipedia.org/wiki/Visual%5FBasic" rel="nofollow">VB6</a>:</p> <pre><code>dim dt as date dim s as string s="10/09/2009" dt = cdate(s) </code></pre> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/13332#13332 228 Answer by Martin for What is the single most influential book every programmer should read? Martin 2008-08-16T20:13:34Z 2009-11-20T01:32:45Z <p>I think I would have to recommend Refactoring: Improving the Design of Existing Code.</p> <p><img src="http://2020ok.com/img/1/41191.jpg" alt="Refactoring: Improving the Design of Existing Code"></p> http://stackoverflow.com/questions/1766729/what-is-the-most-complicated-complex-block-of-code-youve-ever-written-for-a-leg/1766792#1766792 0 Answer by Martin for What is the most complicated, complex block of code you've ever written for a legitimate purpose in a real project (up to 20 lines)? Martin 2009-11-19T21:45:54Z 2009-11-19T21:45:54Z <p>Probably doesn't count as code, but what the hell.</p> <p>Back when I was a COBOL programmer I rendered in the header comments a wonderfully complex ASCII diagram of the application data flow.</p> http://stackoverflow.com/questions/1766514/any-cheap-or-free-ides-out-there-for-vb6-programming/1766745#1766745 3 Answer by Martin for Any cheap or free IDE's out there for VB6 programming? Martin 2009-11-19T21:37:35Z 2009-11-19T21:37:35Z <p>Have you tried ebay? You may be able to pick up a genuine copy of VB6 for not a lot of money.</p> http://stackoverflow.com/questions/1759370/converting-some-legacy-vb-net-code-to-c-what-is-it-doing/1759445#1759445 3 Answer by Martin for Converting some legacy VB.NET code to C#, what is it doing? Martin 2009-11-18T22:03:32Z 2009-11-18T22:03:32Z <ol> <li>Operates on the last row in the dataview</li> <li>Pulls the value from the field whose name is represented in MDL_ORDER.ColumnName</li> <li>Converts it to an integer</li> <li>Adds one to it.</li> </ol> <p>Others have posted how to convert this specific code, however, in general if you have some vb.net that you are unsure of how to code in C# simply grab <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> and you can decompile it and browse in either language.</p> http://stackoverflow.com/questions/1756259/creating-a-ecommerce-application-how-long-did-it-take-you/1756274#1756274 7 Answer by Martin for creating a ecommerce application, how long did it take you? Martin 2009-11-18T14:13:51Z 2009-11-18T14:13:51Z <p>It probably won't take you long to throw something together, but you'll spend the rest of your life supporting it - and that's where the pain lies.</p> http://stackoverflow.com/questions/1755670/architecture-for-extension-plugin-communication/1755716#1755716 0 Answer by Martin for Architecture for extension/plugin communication Martin 2009-11-18T12:44:31Z 2009-11-18T12:44:31Z <p>I'd go with the <strong>Observer</strong> pattern. From the GOF:</p> <blockquote> <p>Define a one-to-many dependency between objects so that when one object changes state all its dependents are notified and updated automatically.</p> </blockquote> <p>Also known as publish-subscribe I would suggest it most closely matches case two in your examples.</p> http://stackoverflow.com/questions/1755615/what-event-id-to-use-for-my-custom-event-log-entries/1755679#1755679 1 Answer by Martin for What event id to use for my custom event log entries? Martin 2009-11-18T12:37:43Z 2009-11-18T12:37:43Z <p>EventIds are application specific so you can use whatever ranges you like. Just ensure you document what you have used and where so that you can ensure you don't use an id twice, or to facilitate easier debugging.</p> http://stackoverflow.com/questions/1747713/more-efficient-method-for-this-calculation/1747786#1747786 0 Answer by Martin for More efficient method for this calculation? Martin 2009-11-17T10:01:57Z 2009-11-17T10:01:57Z <p>Looks like you are doing truncating division to me. That is, you want to find out how many times d goes into a without knowing the remainder.</p> <pre><code>a = 218500000000 s = 6 f = 2 k = 49 d = k + f + s i = a // d print (i) </code></pre> http://stackoverflow.com/questions/1747629/test-data-for-visa-or-mastercard/1747647#1747647 3 Answer by Martin for Test Data For Visa or Mastercard Martin 2009-11-17T09:38:31Z 2009-11-17T09:46:14Z <p>Is this any help:</p> <p><a href="http://www.infomerchant.net/creditcardprocessing/credit%5Fcard%5Ftest%5Fnumbers.html" rel="nofollow">http://www.infomerchant.net/creditcardprocessing/credit%5Fcard%5Ftest%5Fnumbers.html</a> <a href="http://www.rimmkaufman.com/rkgblog/2007/11/09/credit-card-test-numbers/" rel="nofollow">http://www.rimmkaufman.com/rkgblog/2007/11/09/credit-card-test-numbers/</a></p> <pre><code>American Express 378282246310005 American Express 371449635398431 American Express Corporate 378734493671000 Australian BankCard 5610591081018250 Diners Club 30569309025904 Diners Club 38520000023237 Discover 6011111111111117 Discover 6011000990139424 JCB 3530111333300000 JCB 3566002020360505 MasterCard 5555555555554444 MasterCard 5105105105105100 Visa 4111111111111111 Visa 4012888888881881 Visa 4222222222222 Dankort (PBS) 76009244561 Dankort (PBS) 5019717010103742 Switch/Solo (Paymentech) 6331101999990016 </code></pre> http://stackoverflow.com/questions/1745230/sql-server-how-many-users-do-i-really-need/1745309#1745309 1 Answer by Martin for SQL Server - How many users do I *really* need? Martin 2009-11-16T22:37:10Z 2009-11-16T22:37:10Z <p>My understanding is that you need a CAL for every distinct user or device that utilises the SQL Server so 30-40 in your case. Accounts are just sets of credentials that authenticate against the server, whereas users are sacks of meat. License sacks of meat, not accounts.</p> <p>It's an easily misundertood area though and <strong>I would advise contacting Microsoft Licensing</strong> to find out the real deal.</p> http://stackoverflow.com/questions/6231/whats-your-ideal-multiple-monitor-setup-for-programming 36 What's your ideal multiple-monitor setup for programming? Martin 2008-08-08T18:30:39Z 2009-11-12T13:39:42Z <p>Jeff Atwood is often expounding the benefits of <a href="http://www.codinghorror.com/blog/archives/000012.html" rel="nofollow">triple monitor</a> setups for developers, and I have to say I agree with him. However, we are about to take on a good number of new developers and are hoping to kit them out with a nice development environment.</p> <p>I was wondering, if given the opportunity, what you people would think of as the perfect setup - One, two, three, or perhaps even four monitors! Try not to think about what you would like to have in order to show off (or play Warcraft on!) but rather, what do you think would offer the peak performance increase for your development activities.</p> http://stackoverflow.com/questions/1687756/how-to-write-formula-in-excel-for-my-requirement/1687960#1687960 2 Answer by Martin for How to write formula in Excel for my requirement Martin 2009-11-06T14:28:16Z 2009-11-06T14:28:16Z <p>Insert this into cell B5</p> <pre><code>=IF(OR(CODE(A5)&lt;97,CODE(A5)&gt;101),"ENTER CORRECT LETTER",CODE(A5)-96) </code></pre> http://stackoverflow.com/questions/1686854/can-someone-explain-mustoverride/1686872#1686872 1 Answer by Martin for Can Someone Explain MustOverride? Martin 2009-11-06T10:59:31Z 2009-11-06T10:59:31Z <p>MustOverride specifies that a property or procedure is not implemented in this class and must be overridden in a derived class before it can be used.</p> http://stackoverflow.com/questions/1686454/run-a-vbscript-from-another-vbscript/1686474#1686474 3 Answer by Martin for Run a vbscript from another vbscript Martin 2009-11-06T09:33:36Z 2009-11-06T10:54:36Z <p>See if the following works</p> <pre><code>Dim objShell Set objShell = Wscript.CreateObject("WScript.Shell") objShell.Run "TestScript.vbs" objShell = Nothing </code></pre> http://stackoverflow.com/questions/1672547/system-stackoverflowexception/1672612#1672612 1 Answer by Martin for System.StackOverflowException Martin 2009-11-04T09:23:58Z 2009-11-04T09:23:58Z <p>Try the following:</p> <pre><code>public class Customers { private int _CustomerID; private string _Fname; private string _Lname; private string _Country; public Customers() { int CustomerID = 0; string Fname = string.Empty; string Lname = string.Empty; string Country = string.Empty; } public int CustomerID { get { return _CustomerID; } set { _CustomerID = value; } } public string Fname { get { return _Fname; } set { _Fname = value; } } public string Lname { get { return _Lname; } set { _Lname = value; } } public string Country { get { return _Country; } set { _Country = value; } } </code></pre> http://stackoverflow.com/questions/1672339/how-to-create-a-standalone-self-contained-setup-program-written-in-c/1672383#1672383 1 Answer by Martin for How to create a standalone, self-contained setup program written in C#? Martin 2009-11-04T08:31:22Z 2009-11-04T08:31:22Z <p>We did just that for an application that we update weekly with new data.</p> <p>We created two applications. The first was used to wrap the installation up. This consisted of gathering the files to distribute and then zipping them up into a zip archive. We used <a href="http://www.chilkatsoft.com/ChilkatZip.asp" rel="nofollow">ChilkatZip</a> to create an archive that would self extract and then execute the second application which handled the installation process on the client machine.</p> <p>Our needs were fairly simply however, but it allowed us to remove a dependency on Installshield that was causing some support issues internally.</p> http://stackoverflow.com/questions/1672338/how-to-sleep-for-5-seconds-in-windowss-command-prompt-or-dos/1672349#1672349 4 Answer by Martin for How to sleep for 5 seconds in Windows's Command Prompt? (or DOS) Martin 2009-11-04T08:20:15Z 2009-11-04T08:20:15Z <p>One hack I have seen is to use the ping command to attempt to ping an invalid ip:</p> <pre><code>ping 1.1.1.1 -n 1 -w 3000 &gt; nul </code></pre> <p>1.1.1.1 invalid IP, can never be reached.<br /> -n 1 only attempt to connect once.<br /> -w 3000 wait 3 seconds for reply.<br /> nul gobble the output. </p> http://stackoverflow.com/questions/1833166/html-how-to-markup-4-panels-in-a-row-for-content Comment by Martin on HTML How to markup 4 panels in a row for content. Martin 2009-12-02T14:59:23Z 2009-12-02T14:59:23Z Eek that wasn't my intention - I had just read that tables should only really be used for tabular data. http://stackoverflow.com/questions/1833166/html-how-to-markup-4-panels-in-a-row-for-content/1833194#1833194 Comment by Martin on HTML How to markup 4 panels in a row for content. Martin 2009-12-02T14:44:41Z 2009-12-02T14:44:41Z I'm having difficulty working out the CSS I need for the panelwrapper. http://stackoverflow.com/questions/1822208/asp-net-mvc-how-does-my-action-result-find-the-selected-entry-in-a-dropdownlist/1822222#1822222 Comment by Martin on ASP.NET MVC : How does my action result find the selected entry in a dropdownlist? Martin 2009-11-30T21:45:25Z 2009-11-30T21:45:25Z Thanks Robert. All the replies were correct (+1) but your link helped me to understand a few other things. Ta. http://stackoverflow.com/questions/1805532/jquery-cascade-plugin-change-the-format-of-the-ajax-url/1805567#1805567 Comment by Martin on Jquery.cascade plugin change the format of the Ajax URL Martin 2009-11-27T12:02:29Z 2009-11-27T12:02:29Z Also doesn't appear to work if I am cascading multiple dropdowns. I'm off back to the drawing board :( http://stackoverflow.com/questions/1805532/jquery-cascade-plugin-change-the-format-of-the-ajax-url/1805567#1805567 Comment by Martin on Jquery.cascade plugin change the format of the Ajax URL Martin 2009-11-26T21:44:34Z 2009-11-26T21:44:34Z I think I see where you are coming from. Only problem is this seems to leave the ?val=xx on the end. Also it's not using the id from the selected dropbox entry, but the last dropbox entry. I presume I have to find a way to tell it to use the selectedvalue http://stackoverflow.com/questions/1777153/is-it-possible-to-have-a-c-winform-with-in-built-anti-keylogger/1777202#1777202 Comment by Martin on Is it possible to have a C# Winform with in-built Anti-Keylogger? Martin 2009-11-22T00:41:07Z 2009-11-22T00:41:07Z How so slugster? Not doubting, just interested. http://stackoverflow.com/questions/1775865/visual-studio-console-app-prevent-window-from-closing/1775869#1775869 Comment by Martin on Visual Studio Console App - Prevent window from closing. Martin 2009-11-21T16:15:03Z 2009-11-21T16:15:03Z Unfortunately not using .Net :( http://stackoverflow.com/questions/1775865/visual-studio-console-app-prevent-window-from-closing/1775870#1775870 Comment by Martin on Visual Studio Console App - Prevent window from closing. Martin 2009-11-21T16:06:30Z 2009-11-21T16:06:30Z Thanks Tom - that worked perfectly. http://stackoverflow.com/questions/1775865/visual-studio-console-app-prevent-window-from-closing Comment by Martin on Visual Studio Console App - Prevent window from closing. Martin 2009-11-21T16:05:47Z 2009-11-21T16:05:47Z @Naveen: C but thought it would be an IDE thing, not a language thing. http://stackoverflow.com/questions/1771476/transform-date-represented-as-string-to-date-in-visual-basic/1771491#1771491 Comment by Martin on Transform date represented as String to Date in Visual Basic Martin 2009-11-20T17:12:59Z 2009-11-20T17:12:59Z Added details for you http://stackoverflow.com/questions/1755670/architecture-for-extension-plugin-communication/1755716#1755716 Comment by Martin on Architecture for extension/plugin communication Martin 2009-11-18T14:11:44Z 2009-11-18T14:11:44Z On reading again and with further digestion, I think you are probably correct R.A. http://stackoverflow.com/questions/1755715/sub-domain-localhost Comment by Martin on sub.domain.localhost Martin 2009-11-18T12:52:10Z 2009-11-18T12:52:10Z I expanded the question for the poster but looks like it was closed just before I updated. I'm not going to vote to re-open as I think it should be on serverfault. http://stackoverflow.com/questions/1686849/visual-studio-2005-freezing Comment by Martin on Visual Studio 2005 Freezing Martin 2009-11-06T10:57:04Z 2009-11-06T10:57:04Z What OS are you using? VS2005 has known issues with Vista. I experienced the same problems and eventually gave up and upgraded to 2008. http://stackoverflow.com/questions/1686454/run-a-vbscript-from-another-vbscript/1686474#1686474 Comment by Martin on Run a vbscript from another vbscript Martin 2009-11-06T10:55:32Z 2009-11-06T10:55:32Z Ignore my original response - it was garbage. Hopefully the above will solve your issue. http://stackoverflow.com/questions/1662961/design-of-databases-for-storing-the-details-of-the-recurrent-occurrence-of-an-eve/1663018#1663018 Comment by Martin on Design of Databases for storing the details of the recurrent occurrence of an event Martin 2009-11-02T19:13:45Z 2009-11-02T19:13:45Z Just formatting some suggestions at the moment