TakeStock 0.6 released!
-
Why are people voting this one down? - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
-
Why are people voting this one down? - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
Maybe they think it's marketing spam, and are jumping to a conclusion without bothering to read the message. From the web site TakeStock doesn't modify the Windows registry, and doesn't create or modify any files in the Windows or Windows system folders. All data is maintained in the files TakeStock.db and and TakeStock.ini, located in C:\TakeStock. Now that has to be a first for a Windows program!
-
Maybe they think it's marketing spam, and are jumping to a conclusion without bothering to read the message. From the web site TakeStock doesn't modify the Windows registry, and doesn't create or modify any files in the Windows or Windows system folders. All data is maintained in the files TakeStock.db and and TakeStock.ini, located in C:\TakeStock. Now that has to be a first for a Windows program!
-
I try to do the same for any app that I write - only I use XML files for storing settings instead of ini files.
But thats not always possible, what if you wanna make it possible for a user to doubleclick on a specific filetype, and open it in your app? Then you need to make changes in the registry ;) Oh BTW, where do you save the xml-files which holds the settings? - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
-
Why are people voting this one down? - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
It's happened before. Some reading disadvantaged person voted down my previous release post, too. I guess that's the price you pay for a democracy. :) /ravi My new year's resolution: 2048 x 1536 Home | Articles | Freeware | Music ravib@ravib.com
-
Maybe they think it's marketing spam, and are jumping to a conclusion without bothering to read the message. From the web site TakeStock doesn't modify the Windows registry, and doesn't create or modify any files in the Windows or Windows system folders. All data is maintained in the files TakeStock.db and and TakeStock.ini, located in C:\TakeStock. Now that has to be a first for a Windows program!
Graham Bradshaw wrote: Now that has to be a first for a Windows program! :) Actually it's intentional - makes it easy to uninstall an app without having to run an uninstaller (which usually hides its operating details) or worry about what's happening behind the scenes. It's also why I don't enclose my freeware in an installer. /ravi My new year's resolution: 2048 x 1536 Home | Articles | Freeware | Music ravib@ravib.com
-
It's happened before. Some reading disadvantaged person voted down my previous release post, too. I guess that's the price you pay for a democracy. :) /ravi My new year's resolution: 2048 x 1536 Home | Articles | Freeware | Music ravib@ravib.com
Yeah, I guess some people dont wanna see such posts here, but well, who cares about them ;) I think it's interesting to follow what other people here does ;) - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
-
I used this app from 0.2 release. ;) I hope you remember my earlier mails about this application. On the same note, why don't you write an article about this application and publish at CP in Tools[^] section ( no need to release the source code). That way you get wider audience. I voted 5 to make your post look red. ;) BTW, looks like you haven't fixed your 'HowStuffWorks Offline Viewer' :sigh:
Promise only what you can do. And then deliver more than what you promised.
This signature was created by "Code Project Quoter". -
I used this app from 0.2 release. ;) I hope you remember my earlier mails about this application. On the same note, why don't you write an article about this application and publish at CP in Tools[^] section ( no need to release the source code). That way you get wider audience. I voted 5 to make your post look red. ;) BTW, looks like you haven't fixed your 'HowStuffWorks Offline Viewer' :sigh:
Promise only what you can do. And then deliver more than what you promised.
This signature was created by "Code Project Quoter".Kant wrote: I used this app from 0.2 release. Me too! (I tend to eat my own dog food.) It's made me a few thousand dollars so far. I'm not complaining. :) Kant wrote: On the same note, why don't you write an article about this application and publish at CP in Tools[^] section ( no need to release the source code). Actually the TakeStock page links to the CP article[^] on which the tool is based. I can't post the app at CP because it's not a programming tool. But there's one coming soon... :) Kant wrote: BTW, looks like you haven't fixed your 'HowStuffWorks Offline Viewer' I know - been meaning to, but work and other hacks seem to have taken priority :(. Have faith - I'll update it soon! /ravi My new year's resolution: 2048 x 1536 Home | Articles | Freeware | Music ravib@ravib.com
-
But thats not always possible, what if you wanna make it possible for a user to doubleclick on a specific filetype, and open it in your app? Then you need to make changes in the registry ;) Oh BTW, where do you save the xml-files which holds the settings? - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
Then rename the file extension but keep the content the same. What do you think .config, .rdf, .rss, and more file extensions are? XML files. Besides, a "settings" file is not something you really double-click on. It users want to hack their settings with a UI, then they're typically on their own.
Microsoft MVP, Visual C# My Articles
-
Then rename the file extension but keep the content the same. What do you think .config, .rdf, .rss, and more file extensions are? XML files. Besides, a "settings" file is not something you really double-click on. It users want to hack their settings with a UI, then they're typically on their own.
Microsoft MVP, Visual C# My Articles
Ahaem, do not think I'm that stupid! I talked about 2 different things, the one was that if you wanna enable the user to doubleclick on a filetype to open your app, you need to modify the registry, the second thing i asked was where he is saving his xml-settings file. - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
-
Ahaem, do not think I'm that stupid! I talked about 2 different things, the one was that if you wanna enable the user to doubleclick on a filetype to open your app, you need to modify the registry, the second thing i asked was where he is saving his xml-settings file. - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
You're the one who mentioned double-clicking on a settings file, something not typically done since the application is supposed to provide a UI for customization. Who cares if the extension has an association in the registry for it? Do .config files after installing the .NET Framework / SDK? (only after VS.NET) They have an associated icon but no supported verbs. Do .manifest files (also XML)? They also have an icon association but no supported verbs. A "settings" file is not really a document to be opened and should not be treated as such, so use whatever format you want.
Microsoft MVP, Visual C# My Articles
-
You're the one who mentioned double-clicking on a settings file, something not typically done since the application is supposed to provide a UI for customization. Who cares if the extension has an association in the registry for it? Do .config files after installing the .NET Framework / SDK? (only after VS.NET) They have an associated icon but no supported verbs. Do .manifest files (also XML)? They also have an icon association but no supported verbs. A "settings" file is not really a document to be opened and should not be treated as such, so use whatever format you want.
Microsoft MVP, Visual C# My Articles
Well, learn to read! I wrote: But thats not always possible, what if you wanna make it possible for a user to doubleclick on a specific filetype, and open it in your app? Then you need to make changes in the registry Oh BTW, where do you save the xml-files which holds the settings? Where does I mention doubleclicking on the configfile? doubleclick on a specific filetype, thats not a configfile I'm talking about... Heath Stewart wrote: A "settings" file is not really a document to be opened and should not be treated as such, so use whatever format you want. Oh please, dont threat me as I'm some you kid who dont know anything. And learn to read, would you? X| - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
-
Well, learn to read! I wrote: But thats not always possible, what if you wanna make it possible for a user to doubleclick on a specific filetype, and open it in your app? Then you need to make changes in the registry Oh BTW, where do you save the xml-files which holds the settings? Where does I mention doubleclicking on the configfile? doubleclick on a specific filetype, thats not a configfile I'm talking about... Heath Stewart wrote: A "settings" file is not really a document to be opened and should not be treated as such, so use whatever format you want. Oh please, dont threat me as I'm some you kid who dont know anything. And learn to read, would you? X| - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]
Learn to interpret. He was talking about how he stores settings in an XML file as opposed to an INI file. You continued the thread without specifying what sort of documents to which you were referring, so that implies you were referring to the same file types: configuration files. If that's not correct, learn to write.
Microsoft MVP, Visual C# My Articles
-
Learn to interpret. He was talking about how he stores settings in an XML file as opposed to an INI file. You continued the thread without specifying what sort of documents to which you were referring, so that implies you were referring to the same file types: configuration files. If that's not correct, learn to write.
Microsoft MVP, Visual C# My Articles
As I said before, I talked about needing to set stuff in the registry when assosiating a file extension with your app... Well, if you dont read that well, I have no intension what so ever to waste more time talking to you about this subject! - Anders Money talks, but all mine ever says is "Goodbye!" ShotKeeper, my Photo Album / Organizer Application[^]