User Treb - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:28:58Z http://stackoverflow.com/feeds/user/22114 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1765780/how-do-you-distribute-an-html-javascript-web-app/1803867#1803867 0 Answer by Treb for How do you distribute an HTML/Javascript web app? Treb 2009-11-26T14:09:27Z 2009-11-26T14:09:27Z <p>Create an Inno Setup Project and add an entries to the [icon] section for creating start menu and/or desktop shortcuts. Set the filename parameter to the start page of your app (i.e. <code>http://MyDomain.com/index.html</code>) That way, when the user clicks on the shortcut, Windows automatically starts the standard browser and loads your start page. </p> <p>There are two possible problems with this approach:</p> <ol> <li><p>If the user has Firefox, Opera or Chrome set as his standard browser, your app will be opened in this browser, not in IE. If your app needs to be cross browser compatible for this to work.</p></li> <li><p>If the user somehow has messed up his filetype association for html (which I once managed to do), the browser and therefore your app will not start at all.</p></li> </ol> http://stackoverflow.com/questions/207306/monthcalendar-control-selection-range-with-enablevisualstyles/1410399#1410399 0 Answer by Treb for MonthCalendar control selection range with EnableVisualStyles? Treb 2009-09-11T11:40:33Z 2009-09-11T11:40:33Z <p>While looking for a solution to the same problem, I first encountered this question here, but later I discovered a blog entry by <a href="http://nickeandersson.blogs.com/blog/2006/05/%5Fmodifying%5Fthe%5F.htmlhttp%3A//" rel="nofollow">Nicke Andersson</a>. which I found very helpful. Here is what I made of Nicke's example:</p> <pre><code>public class MonthCalendarEx : System.Windows.Forms.MonthCalendar { private int _offsetX; private int _offsetY; private int _dayBoxWidth; private int _dayBoxHeight; private bool _repaintSelectedDays = false; public MonthCalendarEx() : base() { OnSizeChanged(null, null); this.SizeChanged += OnSizeChanged; this.DateChanged += OnSelectionChanged; this.DateSelected += OnSelectionChanged; } protected static int WM_PAINT = 0x000F; protected override void WndProc(ref System.Windows.Forms.Message m) { base.WndProc(ref m); if (m.Msg == WM_PAINT) { Graphics graphics = Graphics.FromHwnd(this.Handle); PaintEventArgs pe = new PaintEventArgs( graphics, new Rectangle(0, 0, this.Width, this.Height)); OnPaint(pe); } } private void OnSelectionChanged(object sender, EventArgs e) { _repaintSelectedDays = true; } private void OnSizeChanged(object sender, EventArgs e) { _offsetX = 0; _offsetY = 0; // determine Y offset of days area while ( HitTest(Width / 2, _offsetY).HitArea != HitArea.PrevMonthDate &amp;&amp; HitTest(Width / 2, _offsetY).HitArea != HitArea.Date) { _offsetY++; } // determine X offset of days area while (HitTest(_offsetX, Height / 2).HitArea != HitArea.Date) { _offsetX++; } // determine width of a single day box _dayBoxWidth = 0; DateTime dt1 = HitTest(Width / 2, _offsetY).Time; while (HitTest(Width / 2, _offsetY + _dayBoxHeight).Time == dt1) { _dayBoxHeight++; } // determine height of a single day box _dayBoxWidth = 0; DateTime dt2 = HitTest(_offsetX, Height / 2).Time; while (HitTest(_offsetX + _dayBoxWidth, Height / 2).Time == dt2) { _dayBoxWidth++; } } protected override void OnPaint(PaintEventArgs e) { base.OnPaint(e); if (_repaintSelectedDays) { Graphics graphics = e.Graphics; SelectionRange calendarRange = GetDisplayRange(false); Rectangle currentDayFrame = new Rectangle(-1, -1, _dayBoxWidth, _dayBoxHeight); DateTime current = SelectionStart; while (current &lt;= SelectionEnd) { Rectangle currentDayRectangle; using (Brush selectionBrush = new SolidBrush( Color.FromArgb(255, System.Drawing.SystemColors.ActiveCaption))) { TimeSpan span = current.Subtract(calendarRange.Start); int row = span.Days / 7; int col = span.Days % 7; currentDayRectangle = new Rectangle( _offsetX + (col + (ShowWeekNumbers ? 1 : 0)) * _dayBoxWidth, _offsetY + row * _dayBoxHeight, _dayBoxWidth, _dayBoxHeight); graphics.FillRectangle(selectionBrush, currentDayRectangle); } TextRenderer.DrawText(graphics, current.Day.ToString(), Font, currentDayRectangle, System.Drawing.SystemColors.ActiveCaptionText, TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter); if (current == this.TodayDate) { currentDayFrame = currentDayRectangle; } current = current.AddDays(1); } if (currentDayFrame.X &gt; 0) { graphics.DrawRectangle(new Pen(new SolidBrush(Color.Red)), currentDayFrame); } _repaintSelectedDays = false; } } } </code></pre> http://stackoverflow.com/questions/1348558/uninstalling-files-not-originally-installed-by-inno-setup/1357746#1357746 1 Answer by Treb for Uninstalling files not originally installed by INNO setup Treb 2009-08-31T14:30:50Z 2009-08-31T14:30:50Z <p>The easiest way I see is to have a batch file in your program dir that deletes all files that were added <em>after</em> the installation and is executed on uninstall:</p> <pre><code> [UninstallRun] Filename: cleanup.cmd; WorkingDir: {app}; Flags: shellexec runminimized </code></pre> <p><code>UninstallRun</code> commands are executed as the first step of the uninstallation, so this should work fine. If you are bothered by the idea of running a batch script, you can easily create your own cleanup.exe that deletes the files.</p> <p>When you perform the auto update, you must also update the cleanup file, so that it includes all files that were added with the current update.</p> http://stackoverflow.com/questions/1339290/open-pdf-in-the-browser/1339359#1339359 0 Answer by Treb for open PDF in the browser Treb 2009-08-27T07:11:54Z 2009-08-27T07:11:54Z <p>I agree with the answer by <a href="http://stackoverflow.com/questions/1339290/open-pdf-in-the-browser/1339334#1339334">derobert</a>. The error message you get means that the browser checks if the file is a valid pdf file by looking for the characters <em>%PDF</em> (hex: 25 50 44 46) at the beginning of the file it received. Since you are not sending a pdf file, the signature is not there, hence the error message.</p> http://stackoverflow.com/questions/1297773/check-java-is-present-before-installing/1302518#1302518 0 Answer by Treb for Check Java is present before installing Treb 2009-08-19T20:41:08Z 2009-08-19T20:41:08Z <p>Instead of checking for a specific version, you can use </p> <pre><code>function RegKeyExists(const RootKey: Integer; const SubKeyName: String): Boolean; </code></pre> <p>to get the subkeys of <em>HKLM\SOFTWARE\JavaSoft\Java Runtime Environment</em>. (Is parallel installation of different versions possible? Don't know...) You would need to do some string fiddling to check if 1.6 or higher is installed, but it would be more flexible than checking for a specific version number.</p> http://stackoverflow.com/questions/1299336/how-to-change-defaultdirname-parameter-just-before-install-in-inno-setup/1302474#1302474 0 Answer by Treb for How to change defaultdirname parameter just before Install in Inno Setup? Treb 2009-08-19T20:32:51Z 2009-08-19T20:32:51Z <p>There seems to be no way to change a script constant via scripting.<br /> I think your best bet is to modify the target directory for each entry in the <em>[Files]</em> section, e.g.</p> <pre><code>[Files] Source: "MYPROG.EXE"; DestDir: "{code:NewTargetDir}" </code></pre> <p>and derive your new installation directory like this:</p> <pre><code>[Code] function NewTargetDir(Param: String): String; begin Result := ExpandConstant('{app}') + '\MySubDir'; end; </code></pre> <p>Since the <em>NewTargetDir</em> function will be called just before the file is actually copied, this should work.</p> <p>However, I think you should reconsider your approach. First asking the user to specify a directory to installinto, and then actually installing into a different directory, which seems to be your intent, is the wrong way, IMO. Do you really have a compelling reason to install into another directory than the one specified by the user? Besides, the result of my example code could just as well be achieved by specifying</p> <pre><code>[Files] Source: "MYPROG.EXE"; DestDir: "{app}\MySubDir" </code></pre> <p>without any scripting needed. When in doubt, go for the simpler solution.</p> http://stackoverflow.com/questions/1265270/send-e-mail-through-vba/1265293#1265293 0 Answer by Treb for Send e-mail through VBA Treb 2009-08-12T10:00:36Z 2009-08-12T15:14:50Z <p><strong>Edit:</strong><br /> As the OP states in his comment to my original answer, changing his code to </p> <pre><code>.Recipients.To = "abc@xyz.com" </code></pre> <p>solved his problem. I leave my original answer below, because someone may learn from the mistake I made, pointed out by <a href="http://stackoverflow.com/users/40347/divo">divo</a> ;-)</p> <p><hr /></p> <p><strong>Original answer (careful, this is wrong!):</strong> </p> <blockquote> <p>Try enclosing the parameters passed to the <em>Add</em> method with parentheses:<br /> .Recipients.Add ("xyz@abc.com")</p> </blockquote> http://stackoverflow.com/questions/1264303/https-post-request-using-vba-for-excel/1264398#1264398 2 Answer by Treb for HTTPS POST request using VBA for Excel Treb 2009-08-12T05:45:24Z 2009-08-12T05:45:24Z <p>The <em>WinHttpRequest</em> object has a <em>SetClientCertificate</em> method. Try this code example taken from the <a href="http://msdn.microsoft.com/en-us/library/aa384055%28VS.85%29.aspx" rel="nofollow">MSDN</a> (I tried to adapt it for VBA):</p> <pre><code>' Instantiate a WinHttpRequest object. ' Dim HttpReq as new ActiveXObject("WinHttp.WinHttpRequest.5.1") ' Open an HTTP connection. ' HttpReq.Open("GET", "https://www.test.com/", false) ' Select a client certificate. ' HttpReq.SetClientCertificate("LOCAL_MACHINE\Personal\My Certificate") ' Send the HTTP Request. ' HttpReq.Send() </code></pre> http://stackoverflow.com/questions/1254080/how-can-i-help-killing-ie6/1254127#1254127 0 Answer by Treb for How can I help killing IE6? Treb 2009-08-10T10:24:08Z 2009-08-10T10:24:08Z <p>The problem is that in most corporate environments, IE6 is still the standard browser. This will slowly erode in the future, when Vista/Win7 will replace XP as the most common OS. Before that I see little chance of IT departments voluntarily rolling out IE7 or 8 when there is no clear need to do so (<em>don't fix it if it ain't broken</em>).</p> <p>It would need at least one of the big guys (Google, Amazon, Yahoo...) to push IE6 out by not supporting it any longer. Since this will reduce their number of potential customers in the short run, they are unlikely to do so. You have to decide for yourself if the potential customer loss for you is worth the effort saved if you don't support it any longer.</p> <p>If you decide to not support it any more, give your users a short message about this (maybe like the notification bar here in SO?), together with a link to a more elaborate explanation <em>why</em> you decided this. </p> <p>That being said, I just wish everybody would stop supporting IE6 <strong>now</strong>.</p> http://stackoverflow.com/questions/1250484/excel-2007-vba-run-time-error-1004/1250561#1250561 2 Answer by Treb for Excel 2007 VBA - Run Time Error 1004 Treb 2009-08-09T03:59:05Z 2009-08-09T03:59:05Z <p>Three ideas why setting the name might fail:</p> <ol> <li><p>Do you already have a sheet with that name in your workbook?<br /> Trying to set a name that is already in use will result in a '1004'</p></li> <li><p>Maybe the name you are trying to set contains some illegal characters:<br /> <code>: / \ * ? [ ]</code> are not allowed</p></li> <li><p>An empty string or a string of more than 31 characters is not allowed, either</p></li> </ol> http://stackoverflow.com/questions/1248187/what-does-engineering-judgement-really-mean/1248552#1248552 2 Answer by Treb for what does "engineering judgement" really mean? Treb 2009-08-08T10:49:32Z 2009-08-08T10:54:45Z <p>I mostly agree with <a href="http://stackoverflow.com/questions/1248187/what-does-engineering-judgement-really-mean/1248213#1248213">djna's answer</a>: In any project, there comes a point when a decision is needed between two opposite principles. </p> <p>The most obvious example is <em>speed vs. quality</em>: I can either hack out a fast solution that works (maybe), but is a nightmare to maintain, or I can take more time to produce a solution that works (most probably) and is easy to maintain.<br /> <em>I know, many people will say that the decision should always be in favour of quality. Well folks, if something in the production system in my company breaks, and every hour we have to stop production costs several thousand Euros, you better solve it <strong>fast</strong>, any other decision is <strong>wrong</strong>.</em></p> <p>Clearly, this decision has to be made by someone who understands all the issues at hand and has the necessary information (or the ability to retrieve it). In <em>technical</em> projects, this person will (well, should) be an engineer. Applying his trained, professional judgement on those matters is the most important contribution that person will make to the whole project.<br /> <em>And all you software developers who think of themselves as craftsmen as opposed to engineers (yes <a href="http://www.codinghorror.com/blog/archives/001288.html" rel="nofollow">Mr. Atwood</a>, I'm talking to you): If you ever made such a decision in a software project, you are software engineers. Sorry.</em></p> http://stackoverflow.com/questions/1211212/how-to-calculate-an-angle-from-three-points/1211251#1211251 2 Answer by Treb for How to calculate an angle from three points? Treb 2009-07-31T08:08:00Z 2009-07-31T08:13:51Z <p>If you are thinking of P1 as the center of a circle, you are thinking too complicated. You have a simple triangle, so your problem is solveable with the <a href="http://en.wikipedia.org/wiki/Law%5Fof%5Fcosines" rel="nofollow">law of cosines</a>. No need for any polar coordinate tranformation or somesuch. Say the distances are P1-P2 = A, P2-P3 = B and P3-P1 = C:</p> <blockquote> <p>Angle = arccos ( (B^2-A^2-C^2) / 2AC )</p> </blockquote> <p>All you need to do is calculate the length of the distances A, B and C. Those are easily available from the x- and y-coordinates of your points and <a href="http://en.wikipedia.org/wiki/Pythagorean%5Ftheorem" rel="nofollow">Pythagoras' theorem</a></p> <blockquote> <p>Lenght = sqrt( (X2-X1)^2 + (Y2-Y1)^2 )</p> </blockquote> http://stackoverflow.com/questions/1198965/ms-access-table-as-centralised-location-for-storing-data/1199030#1199030 -2 Answer by Treb for MS access table as centralised location for storing data Treb 2009-07-29T09:28:49Z 2009-07-29T20:20:32Z <p>You can divide your Access application into two files, one with the user interface (<em>ui.mdb</em>) and the other one with the actual tables (<em>tab.mdb</em>). The code in <em>ui.mdb</em> needs to reference the tables in <em>tab.mdb</em>. That way, you can store your <em>tab.mdb</em> on a network share, where all users (each with a seperate <em>ui.mdb</em> on their local drive) can use it.</p> <p>That being said, I fully agree with <a href="http://stackoverflow.com/questions/1198965/ms-access-table-as-centralised-location-for-storing-data/1198989#1198989">Galwegian</a>: <strong>Don't do it.</strong> </p> <p>One of the problems with your approach is, the query is performed on the client. A <em>select foo from bar where fizz = buzz</em> query needs to load all <em>fizz</em> entries in <em>bar</em> to check if the <em>where</em> clause is true. His approach replaces the <em>tab.mdb</em> with a small database server. That way you can send a query to the server, which returns <em>only the requested data sets</em>, with much less network activity.</p> http://stackoverflow.com/questions/1199037/how-to-display-line-numbers-by-default-in-scite/1199111#1199111 0 Answer by Treb for How to display line numbers by default in SciTE? Treb 2009-07-29T09:47:37Z 2009-07-29T09:47:37Z <p>Try this in <em>SciTEGlobal.properties</em>:</p> <pre><code> # Sizes and visibility in edit pane line.margin.visible=1 line.margin.width=5 </code></pre> http://stackoverflow.com/questions/1193873/which-reasons-could-make-shellexecute-fail/1193989#1193989 1 Answer by Treb for Which reasons could make ShellExecute fail? Treb 2009-07-28T13:09:48Z 2009-07-28T13:09:48Z <p>Have a look at the return value of your <code>ShellExecute</code> call. From the <a href="http://msdn.microsoft.com/en-us/library/bb762153%28VS.85%29.aspx" rel="nofollow">MSDN</a>:</p> <blockquote> <p><em>If the function succeeds, it returns a value greater than 32. If the function fails, it returns an error value that indicates the cause of the failure. The return value is cast as an HINSTANCE for backward compatibility with 16-bit Windows applications. It is not a true HINSTANCE, however. It can be cast only to an int and compared to either 32 or the following error codes below.</em></p> <p>0: The operating system is out of memory or resources.</p> <p><code>ERROR_FILE_NOT_FOUND</code>: The specified file was not found.</p> <p><code>ERROR_PATH_NOT_FOUND</code>: The specified path was not found</p> <p>(...)</p> </blockquote> http://stackoverflow.com/questions/1186638/is-there-a-good-reason-to-make-time-estimates-for-features-that-are-months-out/1186853#1186853 0 Answer by Treb for Is there a good reason to make time estimates for features that are months out? Treb 2009-07-27T07:15:15Z 2009-07-27T07:35:43Z <p>I think you misunderstand why you are asked for those estimates.</p> <p>Lets say you have features A, B, C, D and E, which you want to implement in that order. You estimate each of them to take about one week. Your management does not want to know if you will need one week to implement feature E one month from now. They want to know if your project will be finished on time. If there are delays, they want to know as early as possible, so that they can take action to bring the project back on track. So they ask for your estimates, which not only gives them an end date (however uncertain it might be), but also the milestones for Feature A, B, C and D. Now they can see easily if the project is delayed or not by checking if you met the milestones </p> <p>That's why they want it.</p> <p>That being said, Joel said <a href="http://www.joelonsoftware.com/articles/fog0000000245.html" rel="nofollow">in one of his articles</a> that a detailed schedule makes you think about the design of the modules in advance, leading to a better thought through architecture of the software.</p> <p>That's why you should want it, too.</p> <p><hr /></p> <p><strong>Edit:</strong> Well, maybe I misunderstood your question ;-) If you have no clear specification of the features, you can't <em>estimate</em>, you can only <em>guesstimate</em>. The value of which is rather low. My advise would be to steer the next meeting from those guesstimations to a clearer specification of the features. Try to engage them in a conversation about the more specific details of the functionality.</p> <p>Don't expect them to come up with detailed feature specifications. If they don't have those, it is your job to provide them (and on that base, give some time estimates). </p> http://stackoverflow.com/questions/1185108/should-a-programmer-try-to-list-their-next-actions/1185159#1185159 1 Answer by Treb for Should a programmer try to list their "Next Actions"? Treb 2009-07-26T18:10:41Z 2009-07-26T18:10:41Z <p>I strongly believe in keeping a task list. You so much less prone to 'forget' to do this ugly, boring thing that needs to be done until tomorrow, when you have a list to remind you of it.</p> <p>If you are only coding, that may not be necessary. But in my experience, there are always other things that need doing as well: </p> <ul> <li>Updating a spreadsheet, how many hours you worked on this or that project</li> <li>Filling out some forms for the HR guys</li> <li>Preparing a project status report</li> <li>Writing the documentation for this horrible class from last week</li> <li>Dealing with a customer complaint that somehow landed on your desk</li> </ul> <p>So yes, definitely go for the list. Not necessarily for the work of writing one module, but for all the other stuff besides coding this module, that needs doing.</p> http://stackoverflow.com/questions/1182957/net-send-error-report-to-me/1183084#1183084 1 Answer by Treb for .NET "Send error report to [me]" Treb 2009-07-25T21:14:59Z 2009-07-25T21:14:59Z <p>See <a href="http://stackoverflow.com/questions/126540">this question</a> on all the available logging frameworks in .NET, any of them should offer email notification.</p> <p>I consider it a best practice to have a top level exception handler that collects and logs data on uncaught exceptions. As Meeh mentions in his comment to your question, you need one for each thread in your app.</p> <p>There is an <a href="http://www.fogcreek.com/fogbugz/docs/30/UsingFogBUGZtoGetCrashRep.html" rel="nofollow">old article from Joel</a> on the error reporting feature in FogBugz, maybe that will give you some more ideas. (I think I read it on his blog, but all I could find is this page form the FogBugz documentation).</p> http://stackoverflow.com/questions/1181353/which-languages-do-you-most-often-use-at-your-job/1181504#1181504 0 Answer by Treb for Which language(s) do you most often use at your job? Treb 2009-07-25T07:39:35Z 2009-07-25T07:39:35Z <p>At my work we use:</p> <ul> <li><strong>C#</strong> (for most projects)</li> <li><strong>ASP.NET</strong> (for web interfaces)</li> <li><strong>Delphi</strong> (mostly maintenance of pre .NET projects)</li> <li><strong>VBA</strong> (usually in Excel, for anything that requires a lot of data shuffling and rearranging)</li> </ul> <p>Actually, I have lately come to like VBA a lot, for two main reasons:</p> <ol> <li><strong>Deployment is a no brainer.</strong> At least in a company network where all computers are running on the same OS and Office versions, it's just copying/mailing an xls file. Can't get any simpler than that.</li> <li><strong>Empowerment of the users.</strong> I actually encourage them to go and make small enhancements themselves. I know that this is risky, because I may be called to fix their screwups. But by reviewing what they do I am getting really good input on which features are great/which user interface works. And if they need some small VBA tool, they can sometimes write it themselves, without bothering me.</li> </ol> http://stackoverflow.com/questions/1181311/error-running-a-batch-file-to-copy-a-file/1181349#1181349 2 Answer by Treb for Error Running a Batch File To Copy A File Treb 2009-07-25T06:11:10Z 2009-07-25T06:11:10Z <p>You only have access to administrative shares (<code>\\server\C$</code> &lt;- the $ denotes an admin share) if you have administrative rights on the server. If you don't you need to actively share the folder in question, i.e. on the server, navigate to <code>drive:\folder\folder\folder</code> and share it (context menu of the folder, menu item <em>Sharing and Security</em>). Note that you need at least temporary admin rights on the server in order to create a share.</p> <p>Do not forget to configure the permissions for the share you create, so that the limited account you are using for the copy process has read rights.</p> <p>Once this is et up, you should be able to copy the files using</p> <pre><code>Copy \\Server\NewShareName\*.bak c:\folder\.bak </code></pre> <p>If you have problems with the files being in use by another process, have a look at <a href="http://en.wikipedia.org/wiki/Robocopy" rel="nofollow">robocopy</a> instead of the copy command.</p> http://stackoverflow.com/questions/1176743/can-a-worksheet-object-be-declared-globally-in-excel-vba/1176787#1176787 0 Answer by Treb for Can a worksheet object be declared globally in Excel VBA? Treb 2009-07-24T10:09:35Z 2009-07-24T20:45:22Z <p><strong>Edit:</strong> The comment by Alistair Knock is correct, I should have read the question thoroughly - of course my answer is not valid for objects, only for types like string or integer. For objects you need a function or sub that creates an instance.</p> <p><hr /></p> <p>Yes, you can, I recently did it. If you define your definitions as <code>Public</code> you can use them directly in your other modules (within the same workbook, of course).</p> <p>Maybe the best approach is to have a seperate module <em>Globals</em> and put them there.</p> http://stackoverflow.com/questions/1160511/would-you-hire-a-developer-who-doesnt-know-how-to-use-regular-expressions/1160572#1160572 1 Answer by Treb for Would you hire a developer who doesn't know how to use regular expressions? Treb 2009-07-21T17:26:03Z 2009-07-21T17:26:03Z <p>Yes, if he has other things to contribute to the team.</p> <p>If for example you are using a specific protocol for communicating with external hardware and he is knowledgeable about this protocol, hire him.</p> <p>If your area of work does not require string manipulation, I would at least consider to hire him. It's not as if regex is the single most important thing every programmer needs to know. They are a tool, very useful if you are doing string manipulation. Nothing more.</p> <p>Of course, not knowing at least some very basic regex is a bad sign. He may have other knowlegde gaps, in more important areas. That is something you have to decide on a case by case base.</p> http://stackoverflow.com/questions/1155799/how-to-properly-indent-php-html-mixed-code/1155844#1155844 2 Answer by Treb for How to properly indent PHP/HTML mixed code? Treb 2009-07-20T20:40:14Z 2009-07-20T20:40:14Z <ol> <li>Direct answer to your question: If you need to read the HTML output often, it might be a good thing to output well indented HTML. But the more common case will be that you need to read your php source code, so it is more important that the source is easily readable.</li> <li>Alternative to the two options you mentioned: See <a href="http://stackoverflow.com/questions/1155799/how-to-properly-indent-php-html-mixed-code/1155811#1155811">chaos'</a> or <a href="http://stackoverflow.com/questions/1155799/how-to-properly-indent-php-html-mixed-code/1155831#1155831">tj111's</a> answer.</li> <li>Better still in my opinion: Don't mix HTML and php, use a template engine instead.</li> </ol> http://stackoverflow.com/questions/1152836/buy-or-build-tool-for-data-reporting/1152876#1152876 1 Answer by Treb for Buy or build tool for Data Reporting ? Treb 2009-07-20T10:55:08Z 2009-07-20T10:55:08Z <p>You need to narrow down your requirements (what kind of data needs to be compared, and in which format?). Then check if there is already a software available (commercial or free) that fulfills your needs. Based on that, decide if its better (i.e. cheaper) to implement the functionality yourself, or use the other software.</p> <p><strong>Don't reinvent the wheel.</strong></p> <p>There are quite a few tools out there that specialise in this sort of thing, my gut feeling is that you can find something ready made that does what you need.</p> <p>As a side note, that tool may also be a better solution for creating those excel reports than the perl scripts.</p> http://stackoverflow.com/questions/1152340/why-are-developers-generally-opposed-to-purchasing-software-tools/1152829#1152829 2 Answer by Treb for Why are developers generally opposed to purchasing software tools? Treb 2009-07-20T10:40:30Z 2009-07-20T10:40:30Z <p>I think it is mostly the DIY/NIH syndrome. But there is a second reason: A purchase takes time. </p> <p>Googling for, downloading, installing an testing a free tool takes maybe one hour. Where I work, purchasing a software takes between 3 days and 1 week. </p> <p>In that sense, using free tools is a big speed boost.</p> http://stackoverflow.com/questions/1152208/computing-estimated-times-of-file-copies-movements/1152377#1152377 2 Answer by Treb for Computing estimated times of file copies / movements? Treb 2009-07-20T08:38:18Z 2009-07-20T08:38:18Z <p>Have a look at <a href="http://stackoverflow.com/questions/1018749/is-the-expected-time-shown-during-file-copy-the-best-time-or-worst-time/1018845#1018845">my answer to a similar question</a> (and the other answers there) on how the remaining time is estimated in Windows Explorer.</p> <p>In my opinion, there is only one way to get good estimates:</p> <ul> <li>Calculate the exact number of bytes to be copied before you begin the copy process</li> <li>Recalculate you estimate regularly (every 1, 5 or 10 seconds, YMMV) based on the current transfer speed </li> <li>The current transfer speed can fluctuate heavily when you are copying on a network, so use an average, for example based on the amount of bytes transfered since your last estimate.</li> </ul> <p>Note that the first point may require quite some work, if you are copying many files. That is probably why the guys from Microsoft decided to go without it. You need to decide yourself if the additional overhead created by that calculation is worth giving your user a better estimate.</p> http://stackoverflow.com/questions/1149778/is-software-engineering-dead/1150010#1150010 2 Answer by Treb for Is Software Engineering Dead? Treb 2009-07-19T14:26:33Z 2009-07-20T08:19:24Z <p>Whenever this 'engineering or not' debate comes up, I am amazed by peoples understanding of engineering. <em>'Strict rules that are always followed'</em>, <em>'discipline that is applied almost universally'</em>, <em>'exact numeric answers'</em>, etc, etc. For SW development OTOH you read <em>'There are guidelines, but no simple rules'</em> and similar statements.</p> <p>When I started university, I believed those, too.</p> <p>After several years working with process and mechinical engineers, I know differently. They are working just as chaotic and cluless as any software developer. </p> <p><hr /></p> <p>Edit:</p> <p>Quoting from areply to Jeff's blog entry: <em>'In civil engineering, and most other engineering disciplines, there is only a 'correct' way. Either you design the bridge to support the correct amount of weight or it falls down.'</em> </p> <p>Wrong. Wrong, wrong, wrong. <strong>Wrong!</strong></p> <p>There are at least as many ways to design a bridge as there are ways to design a string class. If you design a bridge that not only supports the required weigth, but tenfold the required weight, you did it <strong>wrong</strong>, because you could have lowered the cost by using less material and completing it faster (less wages to be paied) etc.</p> <p>If you design a new gear for a car, that needs less maintenance, but requires the whole motor to be removed from the car in order to replace the old gear, you did it <strong>wrong</strong>, because in complex systems, there are always more aspects to consider than just your module, you also need to think of it's interaction with the rest. That should sound familiar to a developer, shouldn't it?</p> http://stackoverflow.com/questions/1140010/ensuring-record-value-integrity-in-a-open-source-database/1140132#1140132 0 Answer by Treb for Ensuring record value integrity in a open-source database Treb 2009-07-16T20:32:51Z 2009-07-16T20:32:51Z <p>You can try some tricks to prevent the DBA from changing your data, but they will be just that: tricks. Another approach, is to implement some sort of audit trail, where you log all modifications to your data. </p> <p>But since the DBA has access to all objects in your database, he can figure out which methods you are using and disable them, if he really wants. That's what DBA means: This person has <em>full</em> access to the database.</p> http://stackoverflow.com/questions/1136284/vba-point-variable-to-range/1136407#1136407 2 Answer by Treb for VBA point variable to range Treb 2009-07-16T09:24:02Z 2009-07-16T12:51:51Z <p>First, I strongly recommend you to make explicit declaration of variables in your code mandatory. Go to <em>Tools - Options</em>, in the <em>Editor</em> tab check <em>"Require variable Declaration"</em>, or put <code>Option Explicit</code> in the first line of all your scripts.</p> <p>Second, I think there is a small typo in your code, it should be <code>Sheets.("sheet")</code>.</p> <p>To answer your question, with <code>range = Sheets("sheet").Range("A1")</code> you are assigning a value variable, not an object. Therefore the default variable of the range object is implicitly assigned, which is <code>value</code>. In order to assign an object, use the <code>Set</code> keyword. My full example code looks like this:</p> <pre><code>Option Explicit Public Sub Test() Dim RangeObject As range Set RangeObject = Sheets("Sheet1").range("A1") RangeObject.Value = "MyTestString" End Sub </code></pre> <p>This should put the text "MyTestString" in cell A1.</p> <p><strong>Edit:</strong> If you are using named ranges, try <code>RangeObject.Value2</code> instead of <code>RangeObject.Value</code>. Named ranges do not have a <code>Value</code> property.</p> http://stackoverflow.com/questions/1136363/where-should-i-save-database-files/1136482#1136482 0 Answer by Treb for Where should I save database files? Treb 2009-07-16T09:39:29Z 2009-07-16T09:39:29Z <p>About checking the write access to a directory: So far I have found no better way than to create a file in the directory and immediately delete it. If you encounter an error during these steps, you have insufficient privilegs. (Just remember to first check if there is enough free space on the drive).</p> <p>I once tried to solve this programmatically by going through the access control lists, but then i encountered a dir where I had write priviliges, but not the right to list the ACLs...</p> <p>You can check if a given drive is a network share by using the <code>DriveType</code> property of the <a href="http://msdn.microsoft.com/en-us/library/system.io.driveinfo.aspx" rel="nofollow"><code>System.IO.DriveInfo</code></a> object. As for handling UNC pathes, I have yet to find a better way than <code>(myPath.Substring(0,2) == @"\\")</code></p> http://stackoverflow.com/questions/1152340/why-are-developers-generally-opposed-to-purchasing-software-tools/1152829#1152829 Comment by Treb on Why are developers generally opposed to purchasing software tools? Treb 2009-11-21T19:58:43Z 2009-11-21T19:58:43Z It's not the actual payment process that takes long, it's getting the purchase approved by our purchase department. (Yes, even a 20$ purchase has to be cleared by them...) http://stackoverflow.com/questions/1299336/how-to-change-defaultdirname-parameter-just-before-install-in-inno-setup/1302474#1302474 Comment by Treb on How to change defaultdirname parameter just before Install in Inno Setup? Treb 2009-08-20T19:47:25Z 2009-08-20T19:47:25Z Ok, this qualifies as a 'compelling reason' in my book ;-) http://stackoverflow.com/questions/1271696/whats-the-best-footwear-for-a-programmer Comment by Treb on What's the best footwear for a programmer? Treb 2009-08-13T12:40:34Z 2009-08-13T12:40:34Z None at all. (That's how I got my own office). http://stackoverflow.com/questions/1271600/what-algorithms-do-you-use-in-every-day-life/1271611#1271611 Comment by Treb on What algorithms do you use in every-day life? Treb 2009-08-13T12:34:59Z 2009-08-13T12:34:59Z Hey, wasn't me!!!!! http://stackoverflow.com/questions/1271600/what-algorithms-do-you-use-in-every-day-life/1271611#1271611 Comment by Treb on What algorithms do you use in every-day life? Treb 2009-08-13T12:34:27Z 2009-08-13T12:34:27Z You're tempting me to upvote... http://stackoverflow.com/questions/1270830/how-to-uninstall-the-software-programattically-in-c/1270873#1270873 Comment by Treb on How to Uninstall the software programattically in c# Treb 2009-08-13T09:22:35Z 2009-08-13T09:22:35Z Does this work with software that has been not installed using <i>Windows Installer</i>? http://stackoverflow.com/questions/1254899/run-methods-as-service-c/1254930#1254930 Comment by Treb on Run methods as service c#? Treb 2009-08-10T13:39:26Z 2009-08-10T13:39:26Z For security reasons I would not recommend running something under SYSTEM (unless you really need the SYSTEM priviliges somehow) http://stackoverflow.com/questions/1254899/run-methods-as-service-c Comment by Treb on Run methods as service c#? Treb 2009-08-10T13:38:05Z 2009-08-10T13:38:05Z Instead of an exe that calls all five programs, why not use a batch file? http://stackoverflow.com/questions/1254853/offered-a-new-position-should-i-take-it-in-this-economy Comment by Treb on Offered a new position should I take it in this economy? Treb 2009-08-10T13:32:57Z 2009-08-10T13:32:57Z Tagging it <i>Yahoo</i> and <i>Google</i> does not make it relevant for this site... http://stackoverflow.com/questions/1254697/as-a-programmer-what-information-should-i-put-on-personal-business-cards/1254795#1254795 Comment by Treb on As a programmer, what information should I put on personal business cards? Treb 2009-08-10T13:29:38Z 2009-08-10T13:29:38Z +1 for good paper http://stackoverflow.com/questions/1254080/how-can-i-help-killing-ie6/1254127#1254127 Comment by Treb on How can I help killing IE6? Treb 2009-08-10T10:32:40Z 2009-08-10T10:32:40Z Right, but the standard google search still works in IE6. Unfortunately... http://stackoverflow.com/questions/1253782/how-to-find-a-variable-is-a-type-of-array Comment by Treb on how to find a variable is a type of array Treb 2009-08-10T10:09:52Z 2009-08-10T10:09:52Z @Daniel: I disagree. http://stackoverflow.com/questions/1250484/excel-2007-vba-run-time-error-1004/1250561#1250561 Comment by Treb on Excel 2007 VBA - Run Time Error 1004 Treb 2009-08-09T17:12:46Z 2009-08-09T17:12:46Z Thanks for the feedback, you never know when someone will encounter the same problem... http://stackoverflow.com/questions/1248187/what-does-engineering-judgement-really-mean/1248229#1248229 Comment by Treb on what does "engineering judgement" really mean? Treb 2009-08-08T19:49:48Z 2009-08-08T19:49:48Z @Eric J: I think we are disagreeing on semantics mostly, the label you call 'Gut' would be 'Estimated guess',i.e. <i>estimate with a big uncertainty</i> in my book. The opposite side of the spectrum would be 'Secure estimate', as in <i>well supported by facts/numbers</i>, or somesuch. http://stackoverflow.com/questions/1248187/what-does-engineering-judgement-really-mean/1248229#1248229 Comment by Treb on what does "engineering judgement" really mean? Treb 2009-08-08T10:51:24Z 2009-08-08T10:51:24Z I don't use my gut, I am making an estimated guess. Using your gut is unprofessional, estimated guessing is what I'm paid for.