<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for robertmarkbram</title><link>http://disqus.com/by/robertmarkbram/</link><description></description><atom:link href="http://disqus.com/robertmarkbram/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Thu, 18 Feb 2021 19:34:33 -0000</lastBuildDate><item><title>Re: Excel: Displaying Autofilter Criteria</title><link>http://robertmarkbramprogrammer.blogspot.com/2008/09/excel-displaying-autofilter-criteria.html#comment-5274349077</link><description>&lt;p&gt;Hi Rob,&lt;/p&gt;&lt;p&gt;Most likely cause of a "#NAME" error in Excel is due to a typo in a function name. Excel is telling you: you called out to a function whose name I don't know. See more in &lt;a href="https://support.microsoft.com/en-us/office/how-to-correct-a-name-error-b6d54e31-a743-4d7d-9b61-40002a7b4286" rel="nofollow noopener" target="_blank" title="https://support.microsoft.com/en-us/office/how-to-correct-a-name-error-b6d54e31-a743-4d7d-9b61-40002a7b4286"&gt;How to correct a #NAME&lt;/a&gt;? error.&lt;/p&gt;&lt;p&gt;You have named your function differently than mine - "FiltreActuel", so use that name. E.g.:&lt;/p&gt;&lt;p&gt;&lt;code&gt;=FiltreActuel(B2)&amp;amp;LEFT(SUBTOTAL(9,B3:B200),0)&lt;/code&gt;&lt;/p&gt;&lt;p&gt;However, when I try yours, next I get a "#VALUE" error, which is much harder to figure out because that is Excel saying "something's wrong in the formula itself" - so anything wrong in your macro could cause that. See more in &lt;a href="https://support.microsoft.com/en-us/office/how-to-correct-a-value-error-15e1b616-fbf2-4147-9c0b-0a11a20e409e" rel="nofollow noopener" target="_blank" title="https://support.microsoft.com/en-us/office/how-to-correct-a-value-error-15e1b616-fbf2-4147-9c0b-0a11a20e409e"&gt;How to correct a #VALUE! error&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Maybe the first thing wrong in your macro is the use of the parameter name "feuille" - pretty sure you need to define a type for it.&lt;/p&gt;&lt;p&gt;&lt;code&gt;Function FiltreActuel(feuille, c As String, Optional typeCol As String)&lt;/code&gt;&lt;/p&gt;&lt;p&gt;Good luck figuring that out! Let me know how it goes.&lt;/p&gt;&lt;p&gt;Rob&lt;br&gt;:)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Thu, 18 Feb 2021 19:34:33 -0000</pubDate></item><item><title>Re: Excel: Displaying Autofilter Criteria</title><link>http://robertmarkbramprogrammer.blogspot.com/2008/09/excel-displaying-autofilter-criteria.html#comment-5272708911</link><description>&lt;p&gt;Hi Joe,&lt;/p&gt;&lt;p&gt;I’m not enough of a VB programmer to know the answer to this. :(&lt;/p&gt;&lt;p&gt;Did you ever find it?&lt;/p&gt;&lt;p&gt;Rob&lt;br&gt;:)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Wed, 17 Feb 2021 15:42:34 -0000</pubDate></item><item><title>Re: Excel: Displaying Autofilter Criteria</title><link>http://robertmarkbramprogrammer.blogspot.com/2008/09/excel-displaying-autofilter-criteria.html#comment-5272705154</link><description>&lt;p&gt;Hi JWS,&lt;/p&gt;&lt;p&gt;I’m sorry I never replied to this earlier to this and admit I don’t know how to fix this either.&lt;/p&gt;&lt;p&gt;Rob&lt;br&gt;:)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Wed, 17 Feb 2021 15:39:51 -0000</pubDate></item><item><title>Re: Excel: Displaying Autofilter Criteria</title><link>http://robertmarkbramprogrammer.blogspot.com/2008/09/excel-displaying-autofilter-criteria.html#comment-5272699616</link><description>&lt;p&gt;Thank you Victor!&lt;/p&gt;&lt;p&gt;I appreciate your feedback. I haven’t gone back to this in so long, but it’s cool to see new options.&lt;/p&gt;&lt;p&gt;Rob&lt;br&gt;:)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Wed, 17 Feb 2021 15:35:55 -0000</pubDate></item><item><title>Re: Excel: Displaying Autofilter Criteria</title><link>http://robertmarkbramprogrammer.blogspot.com/2008/09/excel-displaying-autofilter-criteria.html#comment-5272690563</link><description>&lt;p&gt;Hi Rob!&lt;/p&gt;&lt;p&gt;When I asked about this previously on the microsoft . public . excel . misc group, someone posted code in reply that might help!&lt;/p&gt;&lt;p&gt;See: &lt;a href="https://groups.google.com/g/microsoft.public.excel.misc/c/hOXp4DhggKE?pli=1" rel="nofollow noopener" target="_blank" title="https://groups.google.com/g/microsoft.public.excel.misc/c/hOXp4DhggKE?pli=1"&gt;https://groups.google.com/g...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Wed, 17 Feb 2021 15:29:06 -0000</pubDate></item><item><title>Re: Log4J: duplicate Lines in output?</title><link>http://robertmarkbramprogrammer.blogspot.com/2007/06/log4j-duplicate-lines-in-output.html#comment-5254904442</link><description>&lt;p&gt;Hi Who,&lt;/p&gt;&lt;p&gt;Yes, the first line sets up a default rule (because it is using the rootLogger): default only logging statements at the INFO or higher level will output, and they will be output by the file appender (presumably that writes to a file).&lt;/p&gt;&lt;p&gt;The second line says that any logging statements in the com.cml.etech package will be output at the DEBUG or higher level will output to the file appender.&lt;/p&gt;&lt;p&gt;Learn more about how to configure Log4j here: &lt;a href="https://logging.apache.org/log4j/2.x/manual/configuration.html" rel="nofollow noopener" target="_blank" title="https://logging.apache.org/log4j/2.x/manual/configuration.html"&gt;https://logging.apache.org/...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Thu, 04 Feb 2021 20:47:07 -0000</pubDate></item><item><title>Re: How do I install multiple Node versions on my Windows computer?</title><link>https://www.nubo.eu/Install-Multiple-Node-Versions-On-Windows/#comment-5169113804</link><description>&lt;p&gt;I am using this but frankly it's fragile. Whenever you switch to one version, it breaks the app that relies on the other version, since the main thing nvm seems to be doing is changing what C:\Program Files\nodejs points to..&lt;/p&gt;&lt;p&gt;I have two apps that I am working on that require two different very old node versions.. and VS Code that requires at least version 8. Anytime I swap for one, I turn around and find it's broken the others.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Fri, 27 Nov 2020 23:13:49 -0000</pubDate></item><item><title>Re: Rob on Programming: Eclipse and JMockit: Method should have no parameters</title><link>http://robertmarkbramprogrammer.blogspot.com/2013/03/eclipse-and-jmockit-method-should-have.html#comment-4522822369</link><description>&lt;p&gt;I am so glad it helped! :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Mon, 01 Jul 2019 09:14:11 -0000</pubDate></item><item><title>Re: JUnit 5 &amp;#8211; Parameterized Tests</title><link>https://blog.codefx.org/libraries/junit-5-parameterized-tests/#comment-3847841655</link><description>&lt;p&gt;It was easy enough. Now, instead of "ObjectArrayArguments.create" you use "Arguments.of"&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Tue, 10 Apr 2018 04:50:26 -0000</pubDate></item><item><title>Re: JUnit 5 &amp;#8211; Parameterized Tests</title><link>https://blog.codefx.org/libraries/junit-5-parameterized-tests/#comment-3846057040</link><description>&lt;p&gt;What class is ObjectArrayArguments? What API is that from?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Mon, 09 Apr 2018 07:03:52 -0000</pubDate></item><item><title>Re: Url Rewrite Filter duplicates query string parameters</title><link>http://robertmarkbramprogrammer.blogspot.com/2009/10/url-rewrite-filter-duplicates-query.html#comment-3411837621</link><description>&lt;p&gt;Am so glad it helped! :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Tue, 11 Jul 2017 16:23:20 -0000</pubDate></item><item><title>Re: Java 8 in Anger</title><link>http://trishagee.github.io/presentation/java8_in_anger#comment-3039156008</link><description>&lt;p&gt;This talk was fantastic at the Yow! Melbourne conference 2016, thank you so much. The examples you presented were clear and gave me a very good idea of the techniques opening to us in JDK 8 and 9.&lt;/p&gt;&lt;p&gt;Your performance under pressure was superlative: you recovered humorously from 10% battery (need more chargers) and you coped well under intense scrutiny from Uncle Bob... copy paste programming is good right? Plus you looked like a wizard with IntelliJ!&lt;/p&gt;&lt;p&gt;Great enjoyed it!&lt;/p&gt;&lt;p&gt;Rob&lt;br&gt;:)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Tue, 06 Dec 2016 15:05:39 -0000</pubDate></item><item><title>Re: Rob on Programming: Eclipse: make sure your unit test uses the project's classpath</title><link>http://robertmarkbramprogrammer.blogspot.com/2011/11/eclipse-make-sure-your-unit-test-uses.html#comment-2503847054</link><description>&lt;p&gt;Thanks for that - it's a great tip!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Tue, 09 Feb 2016 01:36:20 -0000</pubDate></item><item><title>Re: Java 8 forEach examples</title><link>http://www.mkyong.com/java8/java-8-foreach-examples/#comment-2434389392</link><description>&lt;p&gt;Good page. Clear and simple examples. Thanks!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Thu, 31 Dec 2015 22:07:52 -0000</pubDate></item><item><title>Re: Rob on Programming: Using webDAV and Cadaver with dotCMS</title><link>http://robertmarkbramprogrammer.blogspot.com/2010/09/using-webdav-and-cadaver-with-dotcms.html#comment-2245974150</link><description>&lt;p&gt;Glad I could help someone!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Thu, 10 Sep 2015 07:10:52 -0000</pubDate></item><item><title>Re: Debugging Alfresco Tomcat with Eclipse</title><link>http://robertmarkbramprogrammer.blogspot.com/2010/05/debugging-alfresco-tomcat-with-eclipse.html#comment-2094707123</link><description>&lt;p&gt;Thanks for commenting @Mateusz Haex . Unfortunately, the company I was working for at the time gave up on Alfresco because we simply couldn't get the features working that we were interested in. I have not used it since, so I have nothing further to add, except try and prove that your debugging is not actually already working (as happened to me at the time - it had been working all along, I just didn't know what to look for).&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Tue, 23 Jun 2015 10:34:50 -0000</pubDate></item><item><title>Re: Shigabooks</title><link>http://shigabooks.com/demoncomment.php?page=369#comment-2018137192</link><description>&lt;p&gt;Looks like Wally's house.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Mon, 11 May 2015 08:43:43 -0000</pubDate></item><item><title>Re: Rob on Programming: When to use single or double quotes in Velocity</title><link>http://robertmarkbramprogrammer.blogspot.com/2010/09/when-to-use-single-or-double-quotes-in.html#comment-1883164878</link><description>&lt;p&gt;I haven't worked with Velocity for a few years now and don't have an environment I can test in, sorry. :(&lt;/p&gt;&lt;p&gt;But please, when you find out, let me know here! It's worth astounding amounts of Internet points on this very blog..&lt;/p&gt;&lt;p&gt;Rob&lt;br&gt;:)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Mon, 02 Mar 2015 06:25:06 -0000</pubDate></item><item><title>Re: Rob on Programming: When to use single or double quotes in Velocity</title><link>http://robertmarkbramprogrammer.blogspot.com/2010/09/when-to-use-single-or-double-quotes-in.html#comment-1883021773</link><description>&lt;p&gt;Thank you! So glad it helped someone. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Mon, 02 Mar 2015 02:58:50 -0000</pubDate></item><item><title>Re: Rob on Programming: Insert a date into any program using Autohotkey on Windows</title><link>http://robertmarkbramprogrammer.blogspot.com/2011/02/insert-date-into-any-program-using.html#comment-1454632700</link><description>&lt;p&gt;Hi Sushi,&lt;/p&gt;&lt;p&gt;So glad I helped! :-D&lt;/p&gt;&lt;p&gt;Rob&lt;br&gt;:)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Wed, 25 Jun 2014 20:54:50 -0000</pubDate></item><item><title>Re: Rob on Programming: Listary, Directory Opus and AutoHotkey - a match made in Geek Heaven</title><link>http://robertmarkbramprogrammer.blogspot.com/2014/03/listary-directory-opus-and-autohotkey.html#comment-1413001777</link><description>&lt;p&gt;Thanks Kevin!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Fri, 30 May 2014 21:24:05 -0000</pubDate></item><item><title>Re: How to sync your iTunes library to your Android device</title><link>https://www.talkandroid.com/guides/beginner/how-to-sync-your-itunes-library-to-your-android-device/#comment-1370057249</link><description>&lt;p&gt;As someone already pointed out, Google Play does not sync your iTunes library - it will copy your entire library into the cloud, forcing you to download it yet again to your device. It's a terrible solution if you don't have tonnes of bandwidth to spare (cellular bandwidth in particular) and despise all that duplication.&lt;/p&gt;&lt;p&gt;And DoubleTwist is USELESS if you want to sync that other half of your audio library - podcasts. DoubleTwist simply ignores podcasts and they have stated that they will not fix this situation. :(&lt;/p&gt;&lt;p&gt;I am currently using iSyncr. It syncs over wifi or USB, it syncs using your iTunes playlists and it syncs music and podcasts equally.&lt;/p&gt;&lt;p&gt;Note that both DoubleTwist and iSyncr cost around $5AU.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Mon, 05 May 2014 04:27:44 -0000</pubDate></item><item><title>Re: Rob on Programming: Event Handling with the jQuery Autocomplete Combobox</title><link>http://robertmarkbramprogrammer.blogspot.com/2010/09/event-handling-with-jquery-autocomplete.html#comment-1269833742</link><description>&lt;p&gt;Well, I see the problem, but to be honest I don't see how it can be fixed within the design of the component as it stands..&lt;/p&gt;&lt;p&gt;When you set minLength to any value other than 0, you are saying "the autocomplete feature can only kick in after the user has entered x characters". In a typing only component, this is fine.&lt;/p&gt;&lt;p&gt;But with this autocomplete widget, you also need to look at what happens when the user clicks on that button. This is what happens:&lt;/p&gt;&lt;p&gt;input.autocomplete( "search", "" );&lt;/p&gt;&lt;p&gt;The Javascript invokes the autocomplete function, telling it to search with an empty string. If you have set minLength to 3, this will fail because empty string has 0 characters, but you have said "the autocomplete feature can only kick in after the user has entered 3 characters".&lt;/p&gt;&lt;p&gt;I don't know how you would fix that.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Tue, 04 Mar 2014 08:24:25 -0000</pubDate></item><item><title>Re: Tip: The Google Keyboard For Android Supports Text Expansion, Here's How To Use It</title><link>https://www.androidpolice.com/2013/06/07/psa-the-google-keyboard-for-android-supports-text-expansion-heres-how-to-use-it/#comment-1090260471</link><description>&lt;p&gt;How about things like expanding timestamps etc? iOS has the amazing TextExpander that allows for this. The disadvantage is that it only works with apps that have in-build support for TextExpander. Luckily there are a few. I am getting an Android phone soon.. I want this ability! :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Sun, 20 Oct 2013 20:54:05 -0000</pubDate></item><item><title>Re: Rob on Programming: Template toString(), hasCode() and equals() in Eclipse</title><link>http://robertmarkbramprogrammer.blogspot.com/2013/03/template-tostring-hascode-and-equals-in.html#comment-832376947</link><description>&lt;p&gt;return ObjectUtils.hashCodeMulti(one, two, three, four);&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">robertmarkbram</dc:creator><pubDate>Sun, 17 Mar 2013 08:54:57 -0000</pubDate></item></channel></rss>