User ChristianLinnell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:28:47Z http://stackoverflow.com/feeds/user/95231 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1680079/get-system-temp-folder/1719676#1719676 0 Answer by ChristianLinnell for Get SYSTEM temp folder? ChristianLinnell 2009-11-12T03:20:57Z 2009-11-12T03:20:57Z <p>Here you go (in VBS)</p> <pre><code>Set environmentVars = WScript.CreateObject("WScript.Shell").Environment("Process") tempFolder = environmentVars("TEMP") msgbox(tempFolder) </code></pre> <p>I'm not sure if your system will have an environment variable called "TEMP", so go to the command line and type</p> <pre><code>set </code></pre> <p>You'll get a list of environment vars, and their values. Pick the one that has your temp folder in it.</p> http://stackoverflow.com/questions/1398577/custom-sort-order-in-a-database 2 Custom sort-order in a database ChristianLinnell 2009-09-09T09:37:01Z 2009-09-10T19:38:25Z <p>I have a "products" table in a database. It is used to populate a dropdown list on a website.</p> <p>Currently the list is being output alphabetically, but my client has suggested that if he signs Coca Cola as a customer, they might want to put "Vanilla Coke" as the product on the top of the list, followed by "Coke", then have the rest sort alphabetically.</p> <p>This seems like a poor usability decision to me... any second opinions?</p> http://stackoverflow.com/questions/1291815/funny-csv-format-help 2 Funny CSV format help ChristianLinnell 2009-08-18T04:30:39Z 2009-08-18T16:46:48Z <p>I've been given a large file with a funny CSV format to parse into a database.</p> <p>The separator character is a semicolon (<code>;</code>). If one of the fields contains a semicolon it is "escaped" by wrapping it in doublequotes, like this <code>";"</code>.</p> <p>I have been assured that there will never be two adjacent fields with trailing/ leading doublequotes, so this format should technically be ok.</p> <p>Now, for parsing it in VBScript I was thinking of </p> <ol> <li>Replacing each instance of <code>";"</code> with a GUID,</li> <li>Splitting the line into an array by semicolon,</li> <li>Running back through the array, replacing the GUIDs with <code>";"</code></li> </ol> <p>It seems to be the quickest way. Is there a better way? I guess I could use substrings but this method seems to be acceptable...</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/1293553#1293553 7 Answer by ChristianLinnell for Worst UI You've Ever Used ChristianLinnell 2009-08-18T12:38:43Z 2009-08-18T12:38:43Z <p>Anything made by SAP.</p> http://stackoverflow.com/questions/1135739/change-image/1135754#1135754 2 Answer by ChristianLinnell for change image ChristianLinnell 2009-07-16T06:28:00Z 2009-07-16T06:28:00Z <ol> <li>Create an array of image names.</li> <li>Generate a random number between 0 and the length of the array.</li> <li>Generate an <code>&lt;img&gt;</code> tag using the image name corresponding to that random number.</li> </ol> http://stackoverflow.com/questions/1102212/next-steps-after-being-fired/1102262#1102262 2 Answer by ChristianLinnell for Next Steps After Being Fired? ChristianLinnell 2009-07-09T07:07:34Z 2009-07-09T07:07:34Z <p>Just look at every job hunting communication you can find. Don't spam your CV around, but apply broadly, and not just for dev jobs.</p> <p>Not to worry you, but as an inexperienced and untrained (but clever) developer, I couldn't find any work anywhere (though I am in New Zealand).</p> <p>I ended up working on the helpdesk at a company that had developers, and it only took me a couple of months to prove myself before I was moved to the dev team.</p> http://stackoverflow.com/questions/1077138/action-the-keypress-method-after-the-key-is-typed 0 Action the keypress method after the key is typed ChristianLinnell 2009-07-02T23:09:05Z 2009-07-03T04:04:59Z <p>I'm actioning a method on a text box's KeyPress event, but the method is being run <em>before</em> the key is actually typed into the box.</p> <p>If I use KeyUp, I get the behaviour I'm looking for, except KeyUp triggers on soft keys as well as standard characters, which isn't particularly useful for me.</p> <p>Can I get KeyPress to run after the key is typed into the box? Or can I easily get KeyUp to ignore soft keys?</p> http://stackoverflow.com/questions/1077619/listbox-not-completely-vanishing-on-hide 0 Listbox not completely vanishing on hide ChristianLinnell 2009-07-03T03:05:23Z 2009-07-03T03:19:02Z <p>I've got a simple method that does this:</p> <pre><code>private void searchButton_Click(object sender, EventArgs e) { searchResultsBox.Hide(); doSomething(); } </code></pre> <p>searchResultsBox is a listbox, and when I call its Hide method, it doesn't actually completely vanish until 'doSomething' finishes processing. It kind of leaves artifacts (in fact you can still see any part of the box that had an empty form surface behind it.</p> <p>If I comment out 'doSomething', it vanishes promptly.</p> <p>Any ideas on how to fix this? It's just a bit ugly.</p> http://stackoverflow.com/questions/1056517/recordset-only-returning-1000-records 4 Recordset only returning 1000 records ChristianLinnell 2009-06-29T04:05:58Z 2009-06-29T04:24:22Z <p>I'm doing an ADODB recordset.open() command with an LDAP query to get all the users from my Active Directory. </p> <p>There are about 2600 users, but I'm only getting back 1000 of them.</p> <p>I've tried altering the recordset's PageSize and MaxRecords properties with no luck.</p> <p>Without extraneous stuff, this is what the code looks like (I've made the connection details generic):</p> <pre><code>ADODB.Connection conn = new ADODB.Connection(); ADODB.Recordset rs = new ADODB.Recordset(); rs.MaxRecords = 10000; rs.PageSize = 10000; conn.Open("Active Directory Provider","","",0); string query = "SELECT cn FROM 'LDAP://OU=User Accounts,OU=TopLevel,DC=domainName,DC=local' where samAccountName = '*'" rs.Open(query, conn, ADODB.CursorTypeEnum.adOpenKeyset, ADODB.LockTypeEnum.adLockOptimistic, -1); </code></pre> <p>It's definitely only returning 1000 records, (I've confirmed), and I can access them just fine.</p> <p>In case it helps, the reason I'm not using DirectorySearcher is because it's <em>so slow</em> in comparison to this.</p> http://stackoverflow.com/questions/984982/how-do-i-find-the-index-of-an-undefined-string-in-a-listt 2 How do I find the index of an undefined string in a List<T> ChristianLinnell 2009-06-12T04:23:15Z 2009-06-29T01:24:16Z <p>It's my understanding that if I want to get the ID of an item in a list, I can do this:</p> <pre><code>private static void a() { List&lt;string&gt; list = new List&lt;string&gt; {"Box", "Gate", "Car"}; Predicate&lt;string&gt; predicate = new Predicate&lt;string&gt;(getBoxId); int boxId = list.FindIndex(predicate); } private static bool getBoxId(string item) { return (item == "box"); } </code></pre> <p>But what if I want to make the comparison dynamic? So instead of checking if item=="box", I want to pass in a user-entered string to the delegate, and check if item==searchString.</p> http://stackoverflow.com/questions/1005604/providing-open-source-support-from-stackoverflow-com/1005610#1005610 2 Answer by ChristianLinnell for Providing open source support from stackoverflow.com ChristianLinnell 2009-06-17T07:36:02Z 2009-06-17T07:36:02Z <p>If it's not a programming question, it'll be closed. Pretty much period.</p> http://stackoverflow.com/questions/990166/is-there-too-much-magic-with-rails-for-a-beginner/990195#990195 2 Answer by ChristianLinnell for Is there too much Magic with Rails for a beginner? ChristianLinnell 2009-06-13T07:08:00Z 2009-06-13T07:08:00Z <p>I think the Rails framework, if you study its conventions, offers an awful lot of guidance in terms of best practices.</p> <p>I'd start with Ruby on Rails and then learn PHP based on the knowledge and experience you gain from your Rails education. It'll make your PHP much less haphazard (mine was pretty shaky when I started, and I could have benefited from doing this).</p> http://stackoverflow.com/questions/989122/do-you-update-ancient-code-comments-that-are-wrong/989142#989142 1 Answer by ChristianLinnell for Do you update ancient code comments that are wrong? ChristianLinnell 2009-06-12T21:28:17Z 2009-06-12T21:28:17Z <p>I immediately fix the comments if I see a problem, and probably note down what it would take to improve the code.</p> <p>If I then get hit by a bus, the code is all the better for my quick, pointed attention.</p> <p>Then, if I have time, I'll sort the code itself out (fixing it usually requires time consuming regression testing). If not, I'll leave it for another day, but at least I'll know what the problem is right away when I do have time to come back to it.</p> http://stackoverflow.com/questions/984337/find-out-what-class-invoked-a-method 3 Find out what class invoked a method ChristianLinnell 2009-06-11T23:35:38Z 2009-06-12T00:07:14Z <p>Is there any way, in C#, for a class or method to know who (i.e. what class/ method) invoked it?</p> <p>For example, I might have</p> <pre><code>class a{ public void test(){ b temp = new b(); string output = temp.run(); } } class b{ public string run(){ **CODE HERE** } } </code></pre> <p>Output: "Invoked by the 'test' method of class 'a'."</p> http://stackoverflow.com/questions/973076/linked-access-db-record-has-been-changed-by-another-user 1 Linked Access DB "record has been changed by another user" ChristianLinnell 2009-06-09T23:54:00Z 2009-06-11T18:12:25Z <p>I'm maintaining a multiuser Access 2000 DB linked to an MSSQL2000 database, not written by me.</p> <p>The database design is very poor, so you'll have to bear with me.</p> <p>On the 'Customer' form there's a 'Customer_ID' field that by default needs to get the next available customer ID, but the user has the option of overriding this choice with an existing customer ID.</p> <p>Now, the Customer_ID field is not the PK of the Customer table. It's also not unique.</p> <p>If a customer calls twice to submit a job, the table will get two records, each with the same customer information, and the same customer ID.</p> <p>If a user creates a new ticket, Access does a quick lookup for the next available customer ID and fills it in. But it doesn't save the record. Obviously a problem - two users editing have to keep track of each others' work so they don't dupe up a customer ID.</p> <p>So I want to modify the "new record" button so it saves the ticket right after creating a new one.</p> <p>Problem is, when I test the change, I get "This record has been changed by another user since you started editing it".</p> <p>Definitely no other users on the DB. The 'other user' was presumably my forced save.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/924935/is-it-possible-to-pass-an-executable-to-an-ms-dos-program/978926#978926 0 Answer by ChristianLinnell for Is it possible to pass an executable to an MS-DOS program? ChristianLinnell 2009-06-11T01:42:50Z 2009-06-11T01:42:50Z <p>Go to the command line and (assuming you want to pass the path to 'a.exe') type "a.exe /?"</p> <p>Does it come up with instructions on how to pass 'b.exe' to it?</p> http://stackoverflow.com/questions/973649/how-do-i-check-a-mysql-column-to-make-sure-it-contains-a-value/973656#973656 4 Answer by ChristianLinnell for How do I check a MySQL column to make sure it contains a value? ChristianLinnell 2009-06-10T04:13:40Z 2009-06-10T04:21:16Z <pre><code>$qry = "select * from school where display='Y' and (announcement != '' AND announcement IS NOT null) order by name, announcement, last_update"; </code></pre> <p>This caters for blank fields as well as null fields.</p> http://stackoverflow.com/questions/968977/redirect-if-link-reached-from-external-site 1 Redirect if link reached from external site ChristianLinnell 2009-06-09T09:04:50Z 2009-06-09T10:24:57Z <p>I have a PHP page on a website that I'd like to be accessible <em>only</em> from another page on that website. </p> <p>If a user clicks a link to the page, or types the page's address, and does not come from the site's domain, I'd like the page to redirect the user to the index.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/953869/is-the-return-worth-the-investment-in-learning-fortran/953889#953889 1 Answer by ChristianLinnell for Is the return worth the investment in learning Fortran? ChristianLinnell 2009-06-05T01:31:07Z 2009-06-05T01:31:07Z <p>I think it depends on where you want to be. There are a lot of older systems that were developed in Fortran and need to be maintained. There's probably a lot of money in this.</p> <p>But if you want to be cutting edge (and possibly less stable..) then learn Java or C#, or Ruby/ PHP/ ASP.NET for web dev.</p> http://stackoverflow.com/questions/942400/vbscript-sql-sanitization 1 VBScript SQL sanitization ChristianLinnell 2009-06-02T23:21:43Z 2009-06-04T04:06:58Z <p>Wary of Jeff Atwood's "<a href="http://www.codinghorror.com/blog/archives/001268.html" rel="nofollow">Bathroom Wall of Code</a>" post, I thought it would be useful to have a trustworthy SQL sanitisation function for VBScript, similar to PHP's <code>mysql_real_escape_string()</code> function.</p> <p>So, how can I properly sanitise data input into a SQL query using VBScript?</p> http://stackoverflow.com/questions/947748/do-you-tell-an-interviewee-why-he-failed-an-interview/947778#947778 1 Answer by ChristianLinnell for Do you tell an interviewee why he failed an interview? ChristianLinnell 2009-06-03T23:12:24Z 2009-06-03T23:14:59Z <p>Jeff and Joel covered this in SO podcast #55 - highly recommend it. </p> <p>They basically said that if the person "just isn't ready", but is clearly smart, then they might tell him/ her so, and ask that the candidate reapply later.</p> <p>There's not much you can do past that point. Generally it'll be just how a person is. The fit just isn't right sometimes, and there's not much you can say.</p> http://stackoverflow.com/questions/947272/laying-out-a-database-schema-for-a-calendar-application/947322#947322 0 Answer by ChristianLinnell for Laying out a database schema for a calendar application ChristianLinnell 2009-06-03T21:21:07Z 2009-06-03T21:21:07Z <p>Hold the recurring item in the events table as normal, but flagged as recurring with the appropriate start/ end dates. </p> <p>If the user modifies a single instance of the appointment, just create a new event, perhaps with a 'parentId' equal to the recurring event's id. </p> <p>Build logic that causes the calendar to override any recurring events on a particular day with events with matching parent IDs.</p> <p>Your question about performance is basically the old speed vs. storage issue. I really don't think the calculation required would exceed the space requirement for storing so many appointments. Just read up on database optimization- indexing etc.</p> http://stackoverflow.com/questions/931146/what-do-you-tell-people-your-profession-is/931208#931208 2 Answer by ChristianLinnell for What do you tell people your profession is? ChristianLinnell 2009-05-31T03:46:10Z 2009-05-31T03:46:10Z <p>I always say, "you know the Internet? I do that."</p> http://stackoverflow.com/questions/918737/being-overpossesive 1 Being overpossesive ChristianLinnell 2009-05-28T01:13:32Z 2009-05-28T01:54:30Z <p>I work for an 80 strong IT department (including BAs, project managers etc.), in a 2,500 person organisation.</p> <p>I'm a solutions architect, and my focus is on writing software for use within the organisation, mostly within the IT department.</p> <p>Before me, internal development did not exist here, and I've shaped my role somewhat myself. My accepted development plans are assigned a project manager, and pushed through some semblance of a product life cycle.</p> <p>We're about to finish the roll out of a very cool piece of software with a relatively complex data model that I designed myself.</p> <p>My problem is I seem to be too possessive of my software. </p> <p>As it stands, user acceptance testing was successful, a training programme was written and organised, a user guide was compiled, and several meetings took place without my knowledge.</p> <p>Is it wrong of me to want to be kept firmly in the loop?</p> http://stackoverflow.com/questions/918654/what-user-names-should-i-disallow/918708#918708 1 Answer by ChristianLinnell for What user names should I disallow? ChristianLinnell 2009-05-28T01:01:52Z 2009-05-28T01:01:52Z <p>Remember <br/>&nbsp;Ender</p> http://stackoverflow.com/questions/906586/changing-a-batch-file-when-its-running/906604#906604 0 Answer by ChristianLinnell for Changing a batch file when its running ChristianLinnell 2009-05-25T12:47:14Z 2009-05-25T12:47:14Z <p>Could you create a VB script that waits for the first batch to finish, and then fires up a second batch with the extra commands?</p> http://stackoverflow.com/questions/895595/how-do-i-persist-data-without-global-variables 4 How do I persist data without global variables? ChristianLinnell 2009-05-21T22:32:32Z 2009-05-21T23:00:02Z <p>I'm used to scripting languages. PHP, Javascript etc. and I've written a few relatively simple Java and C# apps. This is a question I've repeatedly needed an answer for, and I imagine I'm not the only one.</p> <p>Let's say I'm in Javascript.</p> <p>I have function A(), called by the GUI, which retrieves some value.</p> <p>Function B(), also called by the GUI, requires that value, but function B() is going to be called an arbitrary number of times, an arbitrary length of time after A().</p> <p>I don't want A() to recalculate the value every time.</p> <p>An example is logon credentials. A() asks for a username, and B() uses that value to append to a log every time it is called.</p> <p>For this I would probably just use a global variable.</p> <p>Now, C#. No global variables! How am I supposed to do this?</p> <p><strong>Edit:</strong> Enjoying the answers, but there are a lot of "try not to use globals" comments. Which I do understand, but I'd like to hear the alternative patterns for this requirement.</p> http://stackoverflow.com/questions/880363/read-undo-history-in-vba 2 Read undo history in VBA ChristianLinnell 2009-05-19T00:01:06Z 2009-05-20T22:40:40Z <p>I have a fairly simple bit of VBA in Word 2003 that changes the document's font to an 'eco font' (long story), and brings up the Print dialog.</p> <p>When a user hits Cancel or OK, the code does an 'undo' to revert the change.</p> <p>The problem is, sometimes when I press "OK" to print the document, <em>two</em> actions need to be undone ('font change', and 'update fields'). I can't seem to predict when this will happen.</p> <p>Is there any way of reading the last item in Word's undo buffer? That way I can just keep pressing undo until the font change has been completed.</p> <p><strong>Edit:</strong> Final code (cut down): </p> <pre><code>ActiveDocument.Range.Bookmarks.Add ("_tempEcoUndoStart_") ActiveDocument.Content.Font.Name = "Nanonymus Eco Sans" Dialogs(wdDialogFilePrint).Show While ActiveDocument.Bookmarks.Exists("_tempEcoUndoStart_") ActiveDocument.Undo Wend </code></pre> http://stackoverflow.com/questions/880809/what-intuitive-programming-skill-have-you-developed-from-years-of-experience/880818#880818 6 Answer by ChristianLinnell for What intuitive programming skill have you developed from years of experience? ChristianLinnell 2009-05-19T03:25:17Z 2009-05-19T03:25:17Z <p>Seeing code as a whole has helped significantly. </p> <p>The more you look at code, the better you can read it as a language in itself, without having to translate it into English (ala The Matrix, "I don't see the code anymore... just blonde, brunette, redhead..").</p> <p>When you can achieve that, you can think about your application as a single entity, rather than individual lines of code, and can 'feel' which threads of the story you're telling link up to other threads in other places.</p> http://stackoverflow.com/questions/437190/how-to-cope-with-slow-feedback-when-pair-programming/875742#875742 0 Answer by ChristianLinnell for How to cope with slow feedback when pair programming? ChristianLinnell 2009-05-17T23:29:35Z 2009-05-17T23:29:35Z <p>I would split up for those tasks. Both of you work on the code separately, and recombine every so often (30 minutes or so?) when you've made improvements.</p> http://stackoverflow.com/questions/318487/404-501-errors-with-microsofts-web-application-stress-tool/318497#318497 Comment by ChristianLinnell on 404 & 501 errors with Microsoft's Web Application Stress Tool ChristianLinnell 2009-11-16T22:49:03Z 2009-11-16T22:49:03Z +1. Solved my problem. Not sure how I missed that. http://stackoverflow.com/questions/413367/outputting-a-guid-in-vbscript-ignores-all-text-after-it Comment by ChristianLinnell on Outputting a GUID in VBScript ignores all text after it ChristianLinnell 2009-08-25T23:06:08Z 2009-08-25T23:06:08Z Ohh thank god somebody already had this. http://stackoverflow.com/questions/1291815/funny-csv-format-help/1291854#1291854 Comment by ChristianLinnell on Funny CSV format help ChristianLinnell 2009-08-18T04:52:21Z 2009-08-18T04:52:21Z Oh, that's very nice. http://stackoverflow.com/questions/1291815/funny-csv-format-help/1291849#1291849 Comment by ChristianLinnell on Funny CSV format help ChristianLinnell 2009-08-18T04:49:39Z 2009-08-18T04:49:39Z I imagine half the world's software is based on non-duplication of GUIDs. Plus, the fields are not intended for GUIDs so every-day non-experimental/malicious behaviour will not result in GUIDs being entered. http://stackoverflow.com/questions/1291815/funny-csv-format-help Comment by ChristianLinnell on Funny CSV format help ChristianLinnell 2009-08-18T04:47:41Z 2009-08-18T04:47:41Z Yes - that's where the data is headed. http://stackoverflow.com/questions/1291815/funny-csv-format-help/1291846#1291846 Comment by ChristianLinnell on Funny CSV format help ChristianLinnell 2009-08-18T04:47:01Z 2009-08-18T04:47:01Z Yes, but the standard for CSV is to wrap the <i>whole</i> field in quotes if that field contains the separator character. Escaping the character like that is non-standard and I'm hoping my parsing method will be enough to handle it. http://stackoverflow.com/questions/1247181/what-is-ruby-on-rails Comment by ChristianLinnell on What is Ruby on Rails? ChristianLinnell 2009-08-07T22:16:28Z 2009-08-07T22:16:28Z +1. I thought this was supposed to be a programming wiki, containing all questions from the generalised and mundane to the specific and complex. This fits right in here regardless of Jeremy's Googling ability. http://stackoverflow.com/questions/1135739/change-image/1135760#1135760 Comment by ChristianLinnell on change image ChristianLinnell 2009-07-16T07:19:25Z 2009-07-16T07:19:25Z I agree with Blixt. Unless your filenames are sensible enough that you could drop them in the alt text instead. http://stackoverflow.com/questions/1135739/change-image/1135760#1135760 Comment by ChristianLinnell on change image ChristianLinnell 2009-07-16T06:31:28Z 2009-07-16T06:31:28Z <i>wonders about the alt text...</i> http://stackoverflow.com/questions/1135739/change-image/1135754#1135754 Comment by ChristianLinnell on change image ChristianLinnell 2009-07-16T06:30:54Z 2009-07-16T06:30:54Z Ah but you have code :-) http://stackoverflow.com/questions/1092071/why-are-iframes-so-slow Comment by ChristianLinnell on Why are iframes so slow? ChristianLinnell 2009-07-07T12:43:43Z 2009-07-07T12:43:43Z Do you see the same behaviour in more than one browser? http://stackoverflow.com/questions/1090218/what-does-this-little-bit-of-x86-doing-with-cr3 Comment by ChristianLinnell on What does this little bit of x86 doing with cr3? ChristianLinnell 2009-07-07T04:16:47Z 2009-07-07T04:16:47Z Well I can certainly relate to that! http://stackoverflow.com/questions/1090218/what-does-this-little-bit-of-x86-doing-with-cr3 Comment by ChristianLinnell on What does this little bit of x86 doing with cr3? ChristianLinnell 2009-07-07T03:53:10Z 2009-07-07T03:53:10Z I'm not saying your reasons for editing were wrong, I'm saying your edit could have been more useful. I'm also saying you should stop worrying so much and be happy. But alas this is not the place for this discussion, so I'll stop hitting F5. http://stackoverflow.com/questions/1090218/what-does-this-little-bit-of-x86-doing-with-cr3 Comment by ChristianLinnell on What does this little bit of x86 doing with cr3? ChristianLinnell 2009-07-07T03:45:13Z 2009-07-07T03:45:13Z I'm usually not one for personal attacks, but such a prude at 25? Lighten up! http://stackoverflow.com/questions/1090218/what-does-this-little-bit-of-x86-doing-with-cr3 Comment by ChristianLinnell on What does this little bit of x86 doing with cr3? ChristianLinnell 2009-07-07T03:42:37Z 2009-07-07T03:42:37Z I don't think [edited for content] is a valid edit. Maybe rephrasing the sentence would be apt? Especially as the majority of SO users (I'm willing to bet) wouldn't mind the original phrasing.