I voted. I hope Mike Munger, the libertarian candidate for governor in NC, gets his 2%, so he can automatically be on the ballot next time. I think that's the condition....
In my last post , I forgot to point you to Inno Setup ; go get the Inno Setup QuickStart Pack to get going. I showed how to copy a directory full of data, like tutorials or sample data, that might change depending on the customer. That means the files are not known when the installer is compiled. Here's what it looked like: Source: {src}\data\*; DestDir: C:\MyCompany\data; Flags: external recursesubdirs skipifsourcedoesntexist onlyifdoesntexist uninsneveruninstall; Permissions: users-modify This time, I 'm going to show how to let the user choose where this directory is located, and whether to install the contents of the directory at all. First, let's show an obvious choice: Source: {src}\data\*; DestDir: {userdocs} \MyCompany\data; Flags: [as above.... ] That new constant will put the data in a subdirectory of My Documents, for the user that installs the program. This might be fine for you, if each user of your program is going to install it the...
Hmm, read back in Jan and didn't finish a review. Lovely book, with lots of potential sub-text, but I think it's mostly about starting again with good people around you - and giving people who don't fit the mold a chance. An orc with a violent past starts a coffee shop, which is unheard of in this city. A succubus joins as a partner, who doesn't want to be judged by their species. And then there's the ratkin cook with extraordinary talents. Magic that helps and hurts, and a final redemption due to just being good people. The dire cat is an added bonus!
I'm never sure how these things make it into production - did someone test it? They must have relied solely on automated tests, I guess. I had a FedEx delivery coming, and I wanted to add delivery instructions. There's a link as part of the tracking page, but it makes me set up an account. If I have to, sigh. The delivery instructions page is dead simple - a drop-down for preferred location to leave a package, and a text entry for notes. However, the "submit" button at the bottom of the page is not enabled, and won't become enabled no matter what I type in the text field. I had to find the "try our new design" checkbox at the top of the page and flip to the new design for it to work. Strike 1: didn't test the old form, which is the default. I tried to type in a front door code for my building, but when I typed #, I got an error "No special characters permitted". Somehow all punctuation is disallowed, including comma, period and apostrophe....
Comments