User Clay Nichols - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:37:19Z http://stackoverflow.com/feeds/user/4906 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1743651/any-way-to-create-a-pdf-so-the-text-cant-be-copied-extracted-back-out 0 Any way to create a PDF so the text can't be copied/extracted back out? Clay Nichols 2009-11-16T17:30:52Z 2009-12-06T03:06:00Z <p>I'm trying to help create a neighborhood directory and I want to discourage someone from harvesting contact info (especially email addresses) from that.</p> <p>Is there any easy way to prevent someone from copying and pasting that text from the PDF?</p> <p><strong>Update</strong> Goal here is to make the PDF no easier to harvest email addresses from than the current paper directory, and to make the PDF directory as useful as the paper directory. The online pdf directory will have advantages such as always being up to date and saving some printing costs (or passing those costs on to folks who want to print the document).</p> http://stackoverflow.com/questions/1854045/is-there-any-way-to-tell-if-the-windows-directory-is-writeable-without-actually-w 0 Is there any way to tell if the Windows Directory is writeable without actually writing to it to test? Clay Nichols 2009-12-06T00:32:14Z 2009-12-06T00:45:25Z <p>I have some old vb6 code that checks to see if the Windows directory is writeable by WRITING to it then reading a value back.</p> <p>But... we have a virus scanner that's viewing that as suspicious behavior so I want to check it without touching it.</p> <p>Any Windows API calls for that? (Ideally for Win 98 and above)</p> http://stackoverflow.com/questions/1853700/where-do-i-download-vbrun60sp6-exe-which-installs-visual-basic-6-0-sp6-run-tim 0 Where do I download : VBRun60sp6.exe (which installs Visual Basic 6.0 SP6 run-time files) ? Clay Nichols 2009-12-05T22:37:17Z 2009-12-05T22:43:19Z <p>When I go to the MS web page describing the <a href="http://support.microsoft.com/kb/290887" rel="nofollow">latest VB Runtime Files list</a> it directs me to <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=7B9BA261-7A9C-43E7-9117-F673077FFB3C&amp;displaylang=en" rel="nofollow">what looks like the right download</a> for VBRun60sp6.exe but when I actually download it it's <em>VB6.0-KB290887-X86.exe</em> which is just the OleAut32.dll update for VB6.</p> <p>I downloaded the VB6 IDE SP6 update but it installs directly to the Dev machine and I want to capture all of the files in one place. (If I do an /T extract from that update it doesn't have the .DLL files, etc. since it's an update).</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1842351/is-there-a-way-to-set-your-monitor-to-any-arbitrary-resolution-and-aspect-ratio 0 Is there a way to set your monitor to any arbitrary resolution and aspect ratio (like 1000x400, etc.) ? [closed] Clay Nichols 2009-12-03T19:35:57Z 2009-12-05T00:46:11Z <p>I have a customer with a very very wide screen (1366 x 768) and I can reproduce the symptom using Virtual PC because I can resize the virtual PC window to get something close to that resolution.</p> <p>But I'm trying to set the same conditions on my development PC and having no luck. I only get a set or preset aspect ratios.</p> http://stackoverflow.com/questions/601089/detect-whether-current-windows-version-is-32-bit-or-64-bit 6 Detect whether current Windows version is 32 bit or 64 bit Clay Nichols 2009-03-02T02:33:34Z 2009-12-02T13:53:59Z <p>Believe it or not my installer is so old that it doesn't have an option to detect the 64 bit version of Windows.</p> <p>Is there a Win DLL call or (even better) an environment variable that would give that info for XP and Vista?</p> <p><strong>One possible solution</strong></p> <p>I see that Wikipedia states that the 64 bit version of XP and Vista have a unique Env Variable: * %ProgramW6432%* so I'm guessing that'd be empty on 32 bit windows.</p> <p><em>This variable points to Program Files directory, which stores all the installed program of Windows and others. The default on English-language systems is C:\Program Files. In 64-bit editions of Windows (XP, 2003, Vista), there are also %ProgramFiles(x86)% which defaults to C:\Program Files (x86) and %ProgramW6432% which defaults to C:\Program Files. The %ProgramFiles% itself depends on whether the process requesting the environment variable is itself 32-bit or 64-bit (this is caused by Windows-on-Windows 64-bit redirection).</em></p> http://stackoverflow.com/questions/1793279/what-is-the-maximum-length-that-a-windows-registry-key-name-can-be 0 What is the Maximum length that a Windows Registry Key name can be? Clay Nichols 2009-11-24T22:09:31Z 2009-11-24T22:13:04Z <p>I'm writing a very long registry Key name (it's a list of programs for a combined uninstall) and I think it's too big.</p> <p>What's the max size the key can be (in characters) ? (The smallest maximum among Win xp, vista, 7 since it'll need to work on all of them)</p> http://stackoverflow.com/questions/1787936/where-do-you-assign-the-ico-file-to-display-for-a-programs-unisntall-in-add-re 0 Where do you assign the .ico file to display for a program's Unisntall (in Add/Remove programs) in Windows? Clay Nichols 2009-11-24T05:12:02Z 2009-11-24T05:32:28Z <p>I want to assign an icon to display next to my app's Uninstaller in the Windows Add/Remove programs.</p> <p>I assume that would be in the Registry setting for the uninstaller, but I don' see an obvious place to assign that.</p> http://stackoverflow.com/questions/809953/what-is-the-easiest-way-to-create-a-overview-outline-of-the-most-important-sec 0 What is the easiest way to create a overview 'outline' of the most important sections of an app in VS 2005 (VB.net) ? Clay Nichols 2009-05-01T02:23:15Z 2009-11-20T23:00:01Z <p>I want to code in our VB.net to be a little easier to follow both to improve readability and also make it a lot easier to know the best place to put a new bit of code/feature.</p> <p>Essentially, I'd like to have a 10,000 foot "outline" of the code" with hyperlinks from the outline to the code.</p> <p>It needs to be portable, so BookMarks won't do the trick (I think). I'm thinking maybe TODO comments. I'd like to create our own Todo style comment like "Outline" or something but that keyword would need to be in the config file for VS as well (but then it's just one thing to keep sync'd).</p> <p>So something like:</p> <p>TODO: 1 : App Starts </p> <p>TODO: 2 : Read INI settings </p> <p>TODO: 3: Show Splash screen</p> <p>TODO: 4: Start Lesson (this is educational software)</p> <p>TOOO: 5: Start Exercise</p> <p>TODO: 6: Next Exercise</p> <p>TODO: 7: End Lesson</p> <p>TODO: 8: AppExit</p> <p>Any other ideas?</p> http://stackoverflow.com/questions/1743651/any-way-to-create-a-pdf-so-the-text-cant-be-copied-extracted-back-out/1743705#1743705 0 Answer by Clay Nichols for Any way to create a PDF so the text can't be copied/extracted back out? Clay Nichols 2009-11-16T17:41:08Z 2009-11-16T17:52:46Z <p>The other answers are a good start. However, I found out exactly how to lock the PDF to prevent copying.</p> <p>You can use Primo PDF's free pdf driver and change the Security settings per: <a href="http://www.primopdf.com/help/tip%5Fsecure%5Fpdf.aspx" rel="nofollow">http://www.primopdf.com/help/tip%5Fsecure%5Fpdf.aspx</a></p> <p>To add password security to your PDF, read on to learn how you can do it free with PrimoPDF.</p> <ol> <li>Download and install the free PDF driver: <a href="http://www.primopdf.com/download.aspx" rel="nofollow">http://www.primopdf.com/download.aspx</a></li> <li>Open the file to convert to PDF</li> <li>Open the Print dialog (or press Ctrl+P)</li> <li>In the printer list, choose PrimoPDF</li> <li>Click Print</li> <li>On the PrimoPDF dialog, click the Change button next to the Security label to open the security dialog.</li> <li>Enter your Open password twice.</li> <li>Optionally, enter a Permissions password and choose the functionality you want to restrict.</li> <li>Click OK.</li> <li>Click Create PDF.</li> </ol> <p>Final Tip. If you want to apply security to all the PDF files you create, you can do it easily by correctly configuring PrimoPDF. At the bottom of the dialog (see above), just make sure the Always use these settings option is turned on.</p> http://stackoverflow.com/questions/1207805/best-ergonomic-trackball-finger-operated-with-scroll-wheel-for-programmer 4 Best Ergonomic trackball (finger-operated, with scroll wheel) for programmer Clay Nichols 2009-07-30T16:41:16Z 2009-11-12T05:53:10Z <p>We programmers are at great risk of RSI. After 10 years, I was having shoulder problems and switched to a trackball, which helped, then switched to my left hand which helped even more.</p> <p>I'm looking for a good finger-operated trackball with a scroll wheel. (I do <em>not</em> like the ones where you control the ball w/ your thumb. My thumb isn't as dexterous).</p> <p>I also want to have a scroll wheel. I currently use a Logitech Marble Mouse but the scrolling implementation is very poor. EDIT: I just tried the <a href="http://simans.net/marble/" rel="nofollow" title="marble scroll">Marble Scroll</a> (free software that provides better scrolling. Works great. Another option is the <a href="http://ehiti.de/katmouse/" rel="nofollow">KatMouse addon</a> (which I've not tried) for trackballs.</p> <p>I hear the old Logitech Trackman was very good, but is no longer available.</p> <p>Anyone have experience with the Marble Mouse (and the above fixes) ? Or any suggestions of a good trackball.</p> http://stackoverflow.com/questions/1607565/programmer-wants-to-be-a-entrepreneur/1691367#1691367 2 Answer by Clay Nichols for Programmer wants to be a Entrepreneur Clay Nichols 2009-11-07T00:12:28Z 2009-11-07T00:12:28Z <p>I'd work on the product, at least to the point of evaluating if it's a good idea. Why get an MBA so you can work for someone else if you have a good product idea?</p> <p>If you do your Marketing <em>first</em> you could get a very good idea of whether there's a market for your product with 50 or less hours of work. Find some early customers, test the market with Adwords (will people click on an ad for your "future product", etc.)</p> <p>You could whip together a rough alpha version (heck, just a paper prototype) and find out how much people are willing to pay.</p> <p>Either you'll find out in 40 hours or so that you're idea is not a good one or that you're on the right track. If it's a bad idea, blog about it.</p> <p>Even if your product idea flops (and you can protect yourself by being "customer driven" not technology driven) it's great experience, at least for being a product lead or trying to get VC funding (IMHO). I suspect a VC would be far more impressed by what you'd learned at a failed company than at a successful MBA program. The world is filled with MBAs, far fewer folks have started software companies.</p> <p>BTW, one last option is to do the MBA and use your product company for all your projects. (E.g., "market research project? Do market research for your product idea"). That'd be twice as hard as just doing the product and redundant if it's successful but it might give you some useful structure and rigor to your process of starting your company.</p> http://stackoverflow.com/questions/882575/bare-minimum-for-an-independent-developer/1691334#1691334 0 Answer by Clay Nichols for Bare minimum for an independent developer Clay Nichols 2009-11-06T23:59:59Z 2009-11-06T23:59:59Z <p>Virtual PC (or VMware ) for testing. </p> <p>I am actually going to try developing in Virtual PC with my next computer. I've had too many problems with Visual Studio fouling up things on my computer. </p> <p><strong>Beware of anything that distracts you from a delivering the first useful version to a couple of customers.</strong> </p> <p>There is never enough time to do everything <em>the right way</em>. You have finite attention and resources. The sooner you get "useful Alpha" out the door, the sooner you get to a version you can charge for (or the sooner you find that you need to change direction).</p> <p>As mentioned above, based on my 15 years of experience running a Micro ISV I'd recommend you "put all your wood behind your arrowhead" and focus on getting an alpha version out the door to alpha tester/customers. Until produce something valuable the customer wants, everything else is window dressing. (E.g., Why worry about off site backup if the code you develop turns out to be unsellable? or if it takes you 12 months to become profitable and you could have shaved 3 months off by running a bit leaner.)</p> <p>And don't dismiss the business side of things. Talk to any successful software company owner and they'll tell you that the business side of things is what makes or breaks the company.</p> http://stackoverflow.com/questions/263723/developing-a-software-idea-into-a-business/283597#283597 66 Answer by Clay Nichols for Developing a software idea into a business Clay Nichols 2008-11-12T10:55:28Z 2009-11-02T02:59:59Z <p><strong>12 Steps To Starting your a Software Company <br>and 3 Unit Tests to to measure your progress</strong><br> <em>Or the art of Changing Hats, Calendar Time and not waiting by the phone</em>.</p> <p>By Clay Nichols</p> <p>Below are step by step instructions based on my experience running a successful small software company for the last 14 years. Below that are some milestones for measuring your success along the way. These are principles that I just followed intuitively. My partner works in the industry our software serves and so a lot of this ("stay close to the customer" sort of stuff) was built in naturally. I violated the rules about finding customers first one time and that was the only one of my products that wasn't a success (it was, in fact, a miserable failure commercially. ).</p> <p><strong>How to make <em>Calendar Time</em> work for (instead of against) you</strong><br> I've found there's a certain amount of "Calendar Time" for things to develop. For example, it takes time for the customer to convert from a "prospect" to a paying customer, and it takes time for the effects of marketing (ads, Adwords, etc.) to take measurable effect. You can't speed up these Calendar Time events so tt's helpful to have something else to work on instead of "waiting by the phone". The steps below interlace marketing/sales and product development productively while also giving you something to do while waiting on something else.</p> <ol> <li><p><strong>Feel their pain</strong><br> Become intimately familiar with the domain you're working in and the pain you're trying to solve. Hopefully, you've chosen one you already know. You might also find your "anchor customer(s)" who already understand your market. They needn't be actual partners. The relationship could be that they tell you about the market and they get the product, built largely to their specifications, free. Beware the single datapoint. Ideal First Customers have an understanding of the computer and what's easy and hard and understand how the typical customer in this market would use the software.</p></li> <li><p><strong><em>Be</em> the customer.</strong> <br> Play customer. Try to find an existing solution to the pain. This will show you who your competitors are and how your customers might find you. Be exhaustive. Try forums, google groups, whatever. How do people currently solve the pain? (Perhaps your software is replacing someone, or it might just help them do the job faster). This will be important when estimating the value of your product. Because the price of your product should be based on it's value to the customer, not it's cost. (The customer will never pay more than how much it's worth to them and they couldn't care less how much it cost you to create it.)</p></li> <li><p><strong>Find customers.</strong> <br> As in, people who would pay if you solved their pain. They needn't actually paybut they have to be <em>willing</em> to. Payment is a litmus test at this point, not an income model. Tip: your Aunt Irma who thinks you have the cutest blue eyes and will buy whatever lemonade your stand is selling is <em>not</em> a customer unless she'd pay for the <em>product</em> even if she didn't know you from Adam. Get referrals from #1 or find them while you're searching forums. These will also be your beta customers. I can't tell you how many people I've seen spend months or years working on a product and then ask "how do I get beta testers". How do you know if you're on track if you haven't been at least <em>talking</em> to potential users.</p></li> <li><p><strong>Evaluate the market.</strong><br> 4.1 . Get a domain name &amp; Build a simple website. Submit to google. This starts the clock (see <em>calendar time</em> above) for getting your site into Google. Let folks sign up to get an email when the product is available. They'll be source of enthusiastic Beta testers and first sales. Be clear with them that the product isn't available yet.</p></li> <li><p><strong>Paper prototype and get feedback from beta testers.</strong><br /> Test your vocabulary. Having a clear vocabulary about the product is good indicator that your mental model is well constructed and clearly defined. If ya' don't know what to call it then ya' don't know what it really is. </p></li> <li><p><strong>Alpha prototype.</strong> The simplest thing that will be of net positive benefit to the customer. It doesn't need to be professional. It might be ugly. It might crash a bit. As long as it's better than what the customer uses now,it's good enough. Someone asked Seth Godin what advice he'd have for his own child on how to start a business of their own.</p> <p>His response? One word:</p> <p><em>Start.</em></p></li> <li><p>Get feedback from Alpha testers. Interactive demos, etc. Look for common feedback themes.</p></li> <li><strong>Find keywords that your customers use</strong> <br> If you can find the lingo your customers use when describing their pain then you can use that vocabulary in your site text and even get a domain name with that text. And you can even find keywords that your customers ("Marketing Segment") use even when not discussing the pain. E.g., if you find that the "pain" you solve is the pain of using paper records in a hospital (your solution: Electronic Medical records). Obvious keyword are the solution ("electronic medical records") the problem (" best way to store paper medical record") and also just words your marketing segment uses: Find Doctors (or Hospital Sys Admins) who are techies. <br> Start an Adwords campaign to start finding out the right keywords. Make "beta trial sign up" one of your conversion metrics. A willingness to give out their email address is the closest (and dearest) thing you can ask of the visitors at this point. All visitors are not equally interested (or equally likely to buy your product). Ones that sign up to be a beta tester are much more likely to be worth your time selling to. The goal of the Adwords Campaign is to find which keywords are likely to attract customers, not simply attract visitors. If all you wanted were eyeballs on your site, you'd just advertise "free sex". But out of the nearly billion people on the internet, you want the folks who are likely to be your customers.<p></li> <li><p>Beta version. Get Beta feedback. Does everyone have trouble starting the program? Do they all ask the same questions "What does XYZ mean?". Remember: add features that help a large % of your users and harm a small % of them. Stay focused on your goal. If you're creating a Contact Manager and someone is using it for some other task they'll start asking for weird features to get their non-standard task done. On the other hand, if a <em>lot</em> of your users all "misuse" it the same way maybe you've discovered an unmet need. That's how Flickr started: it was originally a gaming site with the option to share photos. Turns out the photo sharing was the "killer feature". They sold it for around $20 Million. So... look for trends and make sure that the customers who are giving feedback are <em>representative</em> of your market. <br><a href="http://uservoice.com/" rel="nofollow">UserVoice</a> is a great way to gather this info. Users get to suggest features (or you can suggest them) and vote on each others ideas. They have a free "starter" edition that works find for small companies.</p></li> <li><p>Let visitors to site sign up to get a trial when it's ready.</p></li> <li><p>Let some of them try the trial if you think it's ready.</p></li> <li><p>Work on Beta 2.</p></li> </ol> <p><strong>SUCCESS MILESTONES</strong> A software company could be considered a Software Factory pattern. And what's a pattern without a Unit Test? Here are three to get you started. </p> <ol> <li><p><strong>Finding beta customers</strong> for whom your Pain Story resonates. They understand they have a problem and see how your product could mitigate their pain.</p></li> <li><p><strong>First dollar</strong> - First sale (ideally to someone who doesn't already know you, but hey take what you can get) - validates the value of the product</p></li> <li><p><strong>Stranger Money</strong> - Next 10 sales - validates your marketing. (If you can get 10 sales from <em>strangers</em> for $x in marketing then that's probably repeatable and there is a future for revenue from this product. Whether there is profit is another question. But if you can't get to this point, then you'll never reach profitability)</p></li> </ol> http://stackoverflow.com/questions/1635513/any-easy-way-with-css-maybe-to-highlight-a-section-of-a-web-page-based-on-the-t 2 Any easy way (with CSS maybe) to highlight a section of a web page based on the the bookmark (site.com/page.htm#bookmark Clay Nichols 2009-10-28T06:36:41Z 2009-10-28T06:40:37Z <p>I want to link to a section of a page using a bookmark site.com/Page.htm#Bookmark)</p> <p>When the page is rendered, I'd like to highlight everything within the #Bookmark (Anchor)</p> <p>E.g., </p> <p> Employee 1 , blah blah &lt;---this text would be highlighted. </p> <p>Naturally there are a dozen or so different bookmarks.</p> <p>I was thinking maybe I could assign a CSS style to the Active link state or something similar.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/505976/solving-business-problems-dev-competitions-do-they-exist/1123480#1123480 2 Answer by Clay Nichols for "Solving Business Problems" Dev Competitions - Do They Exist? Clay Nichols 2009-07-14T04:50:27Z 2009-10-24T05:28:26Z <p>That's a great idea, but there's one complication. You might be able to overcome it, <strong>if</strong> you understand the problem of understanding problems.</p> <p>This is a recursive answer. </p> <p>The answer to your question is that you need somehow to understand the problem domain in which the business problem exists before you can solve said problem. But I need to explain why that is before I can give my answer. (I.e., you need to understand the problem domain of business domain problems. Really.)</p> <p>Solving real world problem involves understanding:</p> <ol> <li>The problem domain</li> <li>How the user will use the program to solve the problem</li> <li>How the computer works.</li> </ol> <p>It's the first two that are really a challenge. A good programmer understands #3. Someone with strong Usability skills might be able to get #2 right, but they still have to understand the problem domain. And that's the challenge because folks who understand the problem domain and are doing a repetitive job suitable for automating just don't think like a computer. It's a completely different skill set. If they <em>did</em> think like a computer, they couldn't do such a repetitive job.</p> <p>I once had someone ask me to distribute their educational software. (I write software and couldn't find a distributor 15 years ago so I started a company distributing the software, but that's another story.) </p> <p>But here's how their software worked:</p> <ol> <li>The program shows a prompt (picture, etc.)</li> <li>Student speaks an answer.</li> <li>Teacher decides if it's correct and clicks on a "sticker" button and it displays a sticker for the student.</li> </ol> <p>That's it. Yes, that's all it did.</p> <p>(I won't even get into the problems with this fostering Extrinsic motivation which diminishes Intrinsic motivation- i.e., this would demotivate students in the long run because they lose interest in speech for it's own natural benefits (you tell a joke and get a laugh) and they'd get bored with the little stickers.)</p> <p>Here's someone who was a subject matter expert and went to all the trouble of learning how to write software (or worked with someone who did) but they didn't take advantage of the computer. They used it like a sticker book.</p> <p>When I taught SW Engineering I always told my students you have to solve the problem manually first.</p> <p><strong>Project GreenLight is a great model for this</strong> If you have a <strong>contest for Business Problem/Solutions</strong> as well as Programmers and then put them together you might have a winner. This could work kinda like Project Greenlight where they had a contest for a Script and for a Director. The winning Director had to make a movie out of the winning Script. They let the contestants vote on the best script and director. Even then, the Director and Screen Writer might not get along and have a shared vision.</p> <p>The real trick is going to be grading the Business Problem/Solutions that are submitted. There are an infinite number of them. And it probably requires Domain Knowledge to evaluate them. Barbie the Real Estate chick isn't going to understand Harvey the Hog Farmer's need for tracking his hogs.</p> <p>You'll need a Domain Expert who really understands his job well enough to know the right way to solve it manually. And most people aren't particularly good at what they do. They aren't constantly looking for ways to do it better. If they were they'd be programmers already .</p> http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568175#1568175 9 Answer by Clay Nichols for How can I convince a client that audio on a website is a bad idea? Clay Nichols 2009-10-14T18:36:21Z 2009-10-14T18:36:21Z <p>It doesn't matter what you or s/he thinks. All that matters is how the customer reacts.</p> <ol> <li><p><strong>Easy way</strong>: see if they'll agree to asking 10 random strangers (who are representative of the visitors you get) and playing music in the background (you can just mock this up) and abiding by their opinion.</p></li> <li><p><strong>Hard way</strong>: If the client won't agree to #1, try the one below (and once they realize #1 costs $30 and #2 costs $300 to do they'll then opt for #1)</p></li> </ol> <p>How about some objective metrics with an A/B split test: Randomly assign half the visitors to hear music, the other half not to. Then compare conversion rates (or abandonment rates).</p> http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/1557944#1557944 0 Answer by Clay Nichols for What technologies are you using even though they are embarassingly out of date? Clay Nichols 2009-10-13T02:31:05Z 2009-10-13T02:31:05Z <p>Frontpage 2003. It does the job.</p> http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/1557818#1557818 0 Answer by Clay Nichols for What is your longest-held programming assumption that turned out to be incorrect? Clay Nichols 2009-10-13T01:30:41Z 2009-10-13T01:30:41Z <p>That the benefit of OOP is that you get to reuse the <em>object</em>, when in reality it's the resuse of the <em>rest</em> of the code by creating a new object that has the same interface.</p> <p>In reality, the object might be 2% of the code so reuse gets you only 2% benefit. The real benefit is reusing other 98% of the code by creating a new object that allows all the other code to something completely different. Now you have reuse of 98% of the code. Well worth th 3x longer it takes to write something as an object.</p> <p>E.g., If you have a drawing program and suddenly there is a new shape you want to be able to draw you just change the ShapeObject (while keeping the interface the same). Nothing else in the program has to change.</p> http://stackoverflow.com/questions/664370/your-favorite-visual-basic-6-tools-and-tips 18 Your favorite Visual Basic 6 tools and tips Clay Nichols 2009-03-19T22:53:34Z 2009-10-12T09:38:56Z <p>This is somewhat related to a similar <a href="http://stackoverflow.com/questions/147339/visual-studio-6-tips-and-tricks">post</a>, but that post was Visual Studio 6 in general and a lot of the suggestions didn't apply to VB6.</p> <p>Suggest or vote for tools/tips. Please one tool/tip per post so that everyone can vote on them individually. Include a brief description of what the tools do.</p> http://stackoverflow.com/questions/1488280/what-are-the-legal-allowed-characters-for-web-server-file-names-on 1 What are the Legal / Allowed characters for web server file names on? Clay Nichols 2009-09-28T17:23:12Z 2009-09-30T15:06:35Z <p>What characters are allowed in filenames for HTML files on ALL servers (*nix, Windows, etc.) ? I'm looking for the "lowest common denominator" that will work on all servers. USE: I'm naming a file to be served up publicly (Mysite.com/My-Page.htm)</p> <p>E.g., space? _ - , etc.</p> <p>E.g., can I have File-Name.htm, File_Name.htm File Name.htm?</p> <p>Obviously, this needs to work with all servers and browsers. (IIRC, the name is limited by the server not the browser, but I could be wrong).</p> http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/51207#51207 14 Answer by Clay Nichols for What good technology podcasts are out there? Clay Nichols 2008-09-09T04:06:16Z 2009-09-14T09:20:06Z <p><strong>Suggestion:</strong> If you post each of your recommended podcasts as a <em>separate</em> answer then people can vote for your "answer".</p> <p>BTW, Joel discussed this on the Stack Overflow Podcast (can't find the reference in the transcript Wiki) and suggested something like: - Post your suggested "favorite" (tech podcast, in this case) as a question: "Do you like &lt; > podcast and tag it with "technology podcast".</p> <p>The beauty of this is that we get a simple poll. Yes, it would be nice to actually <em>have</em> a poll but that's not yet a Stack Overflow feature.</p> http://stackoverflow.com/questions/1402424/suggestions-for-web-development-of-a-service-that-records-plays-back-sound 0 Suggestions for Web Development of a service that records & plays back sound Clay Nichols 2009-09-09T22:15:08Z 2009-09-09T22:20:09Z <p>We are considering a web version of some of our Windows desktop software. One of the challenges I've faced is that we need to <strong>record sound</strong> from the microphone for some of the programs.</p> <p>Any suggestions of what options might fullfill that? (Adobe Air, Flash, Silverlight, etc.) ?</p> http://stackoverflow.com/questions/1329334/looking-for-list-of-files-already-included-with-each-version-of-windows-xp-vist 0 Looking for list of files already included with each version of Windows (XP, Vista, 7) so we know what to distribute Clay Nichols 2009-08-25T16:19:12Z 2009-08-25T16:25:17Z <p>We have been distributing OleAut32.dll and olepro32.dll (and other DLLs that are in the <a href="http://support.microsoft.com/kb/290887" rel="nofollow">VB6 Runtime package</a>) for many years now but Windows 7 has a newer version of those. And we were forcing our VB6 app to use <em>our</em> copies of them.</p> <p>I removed all of our standard DLL's (including the above) and the app runs just fine, so they're all included with Windows 7. And it looks like we just need the newer version of OleAut32.dll (if reinstall the app and replace OleAut32.dll with the new one from Win 7 it works fine)</p> <p>It occurs to me that some of those files (like even the msVBvm60.dll) come pre-installed so we're much better off just not installing those files. (Or we may have to bite the bullet and do it the old fashioned way (:-) and install to the system and use version checking. It's been nice to not have any DLL hell for the last 10 years or so. But I'm not sure </p> http://stackoverflow.com/questions/52359/simple-basic-form-spam-reduction-checking-for-javascript 3 Simple & basic form spam reduction: checking for Javascript? Clay Nichols 2008-09-09T17:09:17Z 2009-08-25T07:55:27Z <p>I'm trying to reduce the form spam on our website. (It's actually pretty recent).</p> <p>I seem to remember reading somewhere that the spammers aren't executing the Javascript on the site.</p> <p>Is that true? And if so, then could you simply check for javascript being disabled and then figure it's <em>likely</em> that it's spam?</p> http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/870084#870084 1 Answer by Clay Nichols for What's your first program that you were proud of? Clay Nichols 2009-05-15T17:59:45Z 2009-08-19T23:14:23Z <p>The first was a Frogger Clone on the TS 1000 (with the 16K memory add on).</p> <p>Then I wrote a lunar lander clone for the Commodore 64. That was really cool. </p> <p>(Sorry, I couldn't limit it to just one ;-)</p> http://stackoverflow.com/questions/158017/good-ways-to-find-startup-partners/283618#283618 1 Answer by Clay Nichols for Good ways to find startup partners? Clay Nichols 2008-11-12T11:04:45Z 2009-08-08T03:43:07Z <p>The quality of the relationship with this partner is far more critical than their technical skills.</p> <p>The critical things the partner needs to bring to the table are:</p> <ul> <li><p>They're smart</p></li> <li><p>They love the product more than they love themselves (and their own ego.) They care about the product more than how much money you'll make, who gets credit, who's "right", etc.</p></li> <li><p>Trust.</p></li> <li><p>Emotional support. Who else do you get to complain to when things look darkest? Who else would you most want to share the success with?</p></li> </ul> http://stackoverflow.com/questions/1236435/how-to-force-an-application-that-autostarts-from-cd-to-run-in-compatibility-mode 0 How to force an application that autostarts from CD to run in "Compatibility Mode" Clay Nichols 2009-08-06T00:35:53Z 2009-08-06T00:50:42Z <p>We distribute an app that needs to be run in XP Compatibility mode on Vista 64 bit. But it autostarts (it runs from a CD) not from a shortcut.</p> <p>Anyone know how to force it to start in XP Compatibility mode.</p> http://stackoverflow.com/questions/1215404/what-is-the-client-install-footprint-for-silverlight-3 0 What is the client install footprint for Silverlight 3? Clay Nichols 2009-07-31T23:56:49Z 2009-08-01T00:34:16Z <p>Just read some posts about how wonderful Silverlight 3.0 is, including that it uses some variant of WPF. That set off a warning flag.</p> <p>If I'm installing Silverlight on the client and I've got, say Win XP SP2 (which is the minimum supported), how large would the runtime download be, including all dependencies?</p> <p>(In the past I've had a MS .net product manager tell me a .net 2.0 app was just an xcopy. He forgot to mention that this was assuming that you'd already installed the 22 MB runtime).</p> http://stackoverflow.com/questions/47625/simple-third-party-captcha-i-can-add-to-my-website 3 Simple third party Captcha I can add to my website. Clay Nichols 2008-09-06T16:23:55Z 2009-07-24T06:00:31Z <p>Just something simple like showing an image and asking the user to type in the number on the image.</p> http://stackoverflow.com/questions/1140342/is-there-a-way-to-test-macromedia-director-on-a-pc 0 Is there a way to test Macromedia Director on a PC? Clay Nichols 2009-07-16T21:13:01Z 2009-07-16T21:13:01Z <p>We have a customer using a program written in Macromedia Director.</p> <p>They're getting an error that Macromedia Director is not responding. I wanted to test it and show the customer "hey, there's something wrong with your computer, the test doesn't work".</p> http://stackoverflow.com/questions/1853700/where-do-i-download-vbrun60sp6-exe-which-installs-visual-basic-6-0-sp6-run-tim/1853715#1853715 Comment by Clay Nichols on Where do I download : VBRun60sp6.exe (which installs Visual Basic 6.0 SP6 run-time files) ? Clay Nichols 2009-12-06T03:59:28Z 2009-12-06T03:59:28Z That, unfortunately leads down the same dead end, to the page i hyperlinked to. But it's the OleAut32.dll files not the VB SP6 update. http://stackoverflow.com/questions/1854045/is-there-any-way-to-tell-if-the-windows-directory-is-writeable-without-actually-w/1854056#1854056 Comment by Clay Nichols on Is there any way to tell if the Windows Directory is writeable without actually writing to it to test? Clay Nichols 2009-12-06T02:46:52Z 2009-12-06T02:46:52Z The program itself handles the exception just fine. The issue here is that the <i>attempt</i> to write to the Win.ini triggers a virus warning. (The attempt fails and the program just proceeds normally but we don't want to frighten the users :-) http://stackoverflow.com/questions/1743651/any-way-to-create-a-pdf-so-the-text-cant-be-copied-extracted-back-out/1743705#1743705 Comment by Clay Nichols on Any way to create a PDF so the text can't be copied/extracted back out? Clay Nichols 2009-11-18T23:44:44Z 2009-11-18T23:44:44Z See my update: the goal is just to make no easier to harvest email from the PDF than it would be from the paper directory and make the PDF directory no less useful than the paper directory. A locked PDF meets both those criteria. http://stackoverflow.com/questions/882575/bare-minimum-for-an-independent-developer/882666#882666 Comment by Clay Nichols on Bare minimum for an independent developer Clay Nichols 2009-11-07T00:02:08Z 2009-11-07T00:02:08Z There's a cool option for white boards: Idea Paint. It's whiteboard paint. Turns any flat surface into a white board. I&quot;ve not tried it yet, but plan to. http://stackoverflow.com/questions/1635513/any-easy-way-with-css-maybe-to-highlight-a-section-of-a-web-page-based-on-the-t/1635521#1635521 Comment by Clay Nichols on Any easy way (with CSS maybe) to highlight a section of a web page based on the the bookmark (site.com/page.htm#bookmark Clay Nichols 2009-10-28T07:11:41Z 2009-10-28T07:11:41Z That's a slick idea, although all the examples on the Carsonified.com website are 404 links. I really need something that's going to work for a good 80% or more browsers. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568342#1568342 Comment by Clay Nichols on How can I convince a client that audio on a website is a bad idea? Clay Nichols 2009-10-18T06:19:42Z 2009-10-18T06:19:42Z I like your answer better than mine &lt;g&gt;. It's easier to implement. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568175#1568175 Comment by Clay Nichols on How can I convince a client that audio on a website is a bad idea? Clay Nichols 2009-10-18T06:18:45Z 2009-10-18T06:18:45Z @Dean - End the end, it's the client's customers writing the checks (or clicking on the ads) that pays the bills. Yes, you have to worry about your customer (the client) but if s/he disregards the end customer s/he'll be out of business and everyone loses. This question was about how to convey that to the customer. http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-p/972308#972308 Comment by Clay Nichols on Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? Clay Nichols 2009-10-13T01:22:29Z 2009-10-13T01:22:29Z But Google's massive servers are processing for (millions?) of users. The processing power of ALL of those users is probably much much greater than what Google has access to. http://stackoverflow.com/questions/1273554/html-link-that-forces-refresh/1273576#1273576 Comment by Clay Nichols on HTML link that forces refresh? Clay Nichols 2009-09-28T17:43:50Z 2009-09-28T17:43:50Z Tom, are you saying that one would need to do both of these things or just one of them? http://stackoverflow.com/questions/911008/recording-audio-from-web-page/911247#911247 Comment by Clay Nichols on Recording Audio From Web Page Clay Nichols 2009-09-09T23:52:13Z 2009-09-09T23:52:13Z Would it be possible to use just the Flash component without the server component and just save the audio file on the server? (I ask this because I've found it difficult and complicated to install things on a server. http://stackoverflow.com/questions/601089/detect-whether-current-windows-version-is-32-bit-or-64-bit/655616#655616 Comment by Clay Nichols on Detect whether current Windows version is 32 bit or 64 bit Clay Nichols 2009-08-29T03:20:10Z 2009-08-29T03:20:10Z Thanks Mike! Now, if I can just figure out if Processor_Architecture is <i>always</i> present on Win 64. http://stackoverflow.com/questions/1207805/best-ergonomic-trackball-finger-operated-with-scroll-wheel-for-programmer Comment by Clay Nichols on Best Ergonomic trackball (finger-operated, with scroll wheel) for programmer Clay Nichols 2009-08-21T04:17:12Z 2009-08-21T04:17:12Z Yes, I always use the same finger. I've never had finger problems but I did have shoulder problems with the mouse but not nearly so much with a Trackball. Rolling the ball uses far less force than trying to move an entire mouse. Also it's far too tempting to put your whole arm into moving the mouse. I see this all the time with older folks who <i>only</i> move with their whole arm and can't make fine motor movements. http://stackoverflow.com/questions/897993/where-can-i-write-data-that-can-be-viewed-and-modified-by-all-users-in-windows-vi/898095#898095 Comment by Clay Nichols on Where can I write data that can be viewed and modified by all users in Windows Vista? Clay Nichols 2009-05-22T15:46:28Z 2009-05-22T15:46:28Z How would I modify the permissions programatically? Perhaps with CACLS? IIRC, that requires Admin privileges. http://stackoverflow.com/questions/858364/suggestions-for-implementing-a-very-simple-updater-that-checks-for-a-new-version Comment by Clay Nichols on Suggestions for implementing a very simple updater that checks for a new version Clay Nichols 2009-05-13T14:55:51Z 2009-05-13T14:55:51Z They're shrink wraps app that're about 12 years old now (started in VB3). So far we've just now had a good reason to rewrite them from scratch. The longer we wait the better the VB6 to VB.net converters get and the more revenue we have to pay for the conversion. http://stackoverflow.com/questions/676610/what-do-i-need-to-know-before-i-sell-a-software-license/716882#716882 Comment by Clay Nichols on What do I need to know before I sell a software license? Clay Nichols 2009-05-10T21:36:23Z 2009-05-10T21:36:23Z I don't think we know enough here to draw this conclusion. There are lots of micro ISVs that are one man operations (at least when they first started selling). And just because chances are slim <i>in general</i> doesn't mean that applies here.