topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Monday April 6, 2026, 12:12 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 460 461 462 463 464 [465] 466 467 468 469 470 ... 1515next
11601
Find And Run Robot / Re: Evernote plugin
« Last post by mouser on April 01, 2012, 04:42 AM »
It's a great idea but doesn't exist yet.
11602
Implemented; will be in update pushed out this weekend.
11603
Implemented; will be in update pushed out this weekend.
11604
Find And Run Robot / Re: FARR and Dropbox - conflicts...
« Last post by mouser on April 01, 2012, 04:40 AM »
Implemented; will be in update pushed out this weekend.
11605
Official Announcements / Re: The DonationCoder 2012 Fundraiser Has Begun!
« Last post by mouser on April 01, 2012, 04:10 AM »
hahahahah more great ones deo  :up:
11606
Official Announcements / Re: The DonationCoder 2012 Fundraiser Has Begun!
« Last post by mouser on April 01, 2012, 02:15 AM »
Those are awesome Deo!!

I just donated after lurking for some 5 months. I'm feeling that I should have waited to be counted for the fundraiser. : (

Tao, may I suggest that a good deal of pride would be the proper emotion to feel for having donated before the fundraiser?  Nevertheless, anyone who has donated recently may message me and ask that their recent donation be counted as part of the fundraiser money, and I will adjust the thermometer accordingly.  :up:
11607
Official Announcements / The DonationCoder 2012 Fundraiser Has Begun!
« Last post by mouser on March 31, 2012, 03:34 PM »
The fundraiser has officially begun!  The thermometer is up and has a goal of $3,000.

Please help cheer it on and nudge it forward  :Thmbsup:

LOLMouser - Fun Razorz Begin.png
11608
Screenshot Captor / Re: Permission for a portable version
« Last post by mouser on March 31, 2012, 08:40 AM »
I'll have a look.
11609
Screenshot Captor / Re: Capture rounded corners in Vista/Win7 Aero Glass
« Last post by mouser on March 30, 2012, 02:55 PM »
Yeah, grab active window is the only one that does the transparency fixing and the child windows confuse it a bit.

BUT, I should be able to fix that.
11610
Screenshot Captor / Re: Capture rounded corners in Vista/Win7 Aero Glass
« Last post by mouser on March 30, 2012, 02:43 PM »
joby, can you confirm for me that it works properly if there is no child pop-up?
11611
General Software Discussion / Re: scroll down to next picture
« Last post by mouser on March 30, 2012, 01:44 PM »
Does seem like it could be a useful idea though -- something to press that would scroll to bring the the next image on the page into view.
11612
Find And Run Robot / Re: FARR and Dropbox - conflicts...
« Last post by mouser on March 30, 2012, 11:26 AM »
Not yet, but I'm going to try to get out an update over the weekend and will add it then.
11613
General Software Discussion / Re: Screenshot Captor... cm vs. in
« Last post by mouser on March 30, 2012, 10:56 AM »
Right, so the only thing to consider for SC is whether it might be useful to let user set an option to say basically "don't put DPI info in the file".  that would solve the PSP oddity, the question is whether it would help or hurt in other programs.
11614
General Software Discussion / Re: Jasc Paint Shop Pro 9... cm vs. in
« Last post by mouser on March 30, 2012, 10:50 AM »
After a quick look, it seems as though the png image that crabby has that shows info in inches in PSP is actually lacking any DPI info in it, making PSP use a default and not showing dpi.  I think that's what's happening.

I think basically what's happening is the other program is not storing DPI info in the file.

Crabby perhaps you can confirm by simply saving this file from PSP as a different name, then closing the file and reopening it.  Does it now show in millimeters or still in inches?

I wonder if it might be smart to add an option in SC that said basically "Don't store DPI info when saving files".. question is whether that would backfire.
11615
General Software Discussion / Re: Jasc Paint Shop Pro 9... cm vs. in
« Last post by mouser on March 30, 2012, 10:30 AM »
Crabby has sent me a png file that does in fact load up in PSP and show image info in inches (compared to SC png images which show info in centimeters)..
So clearly something in the png files are tagged differently.
I'm looking into it now.
11616
Screenshot Captor / Re: Invalid Monitor Handle
« Last post by mouser on March 29, 2012, 10:28 AM »
hmm.. very strange. can you describe the actual steps to reproduce?
11617
Try unchecking the "Switch to Object Selection mode" in options on Drawing Object Options tab:
Screenshot - 3_29_2012 , 10_08_17 AM.png
11618
MEWLO Web Framework / Re: OLD - Unfinished Web project: YUMPS
« Last post by mouser on March 28, 2012, 09:44 PM »
The first version of the YUMPS logging system is now implemented.

I posted here about my struggles with deciding the best way to structure a log table.

Lacking a perfect answer, I tried to finesse the approach -- basically I wrote a fairly generic logging system where any code can make a call to log an event and pass any array of variables to log.

The log router uses configurable rules to decide which of multiple database Log Tables the event gets stored into.  Most events might be routed to a generic main log file, but special events can be routed to specialist tables (or in fact saved to a file or emailed to an admin).

You could also if you wanted use different tables for storing errors vs warnings, or for routing specific kinds of events, etc.

The log system will automatically use table columns for the event fields if they exist, or else store them in a serialized text field if they do not.  In this way I think I can combine the best of both worlds -- using very small efficient log tables for special kinds of events, and a generic table for most others -- and provide good searchability for most fields (which is the main driving force for supporting specialized columns in the log tables), even when using non-specialized log tables.

In addition to the generic administration grid for the log entries that i have shown before (which allows flexible browsing and searching), log items can also easily be moved between log tables -- allowing one to keep a large ARCHIVE table and a small main table, or use certain tables for longer term storage of questionable entries while clearing the rest.

It's extremely easy to add new log tables to the system and configure YUMPS so that it knows about them and makes them available to the admin.  So adding custom logging features should be very easy for custom projects.  In the screenshot below you can see I simply configured 3 log tables and told the system that entries can be moved from the main one to the other two.

At some later point I will add some options to configure periodic automatic moving of items from one table to another based on date or other fields.

The logging system also makes use of my Throttling component, which can watch for degenerate cases where something goes wrong and huge numbers of log entries start being created -- at which point it can temporary disable logging and alert the administrator about the problem (you learn to implement such things after a few experiences on donationcoder where 500 fatal error emails are sent in the course of 60 seconds).

Screenshot - 3_28_2012 , 9_49_06 PM.png
11619
By default on Win7 its going to use a separate configuration file for each user that logs in.

If you want all users to share the same settings, what you can do is simply edit the configdir.ini file in the program's directory, and give it a shared writable location to store it's settings.  Make sure you point it to a directory that all user accounts can write to.
11620
General Software Discussion / Re: Jasc Paint Shop Pro 9... cm vs. in
« Last post by mouser on March 28, 2012, 08:06 AM »
perhaps PSP fails to do the proper conversion when loading an image with the unit specifier flag set to meters?

wait this is the key part -- are you saying that its possible for the png file to specify whether it is stored in meters?

this is the key part we have been struggling with.  Jibz you sound like you are saying that the SC image says that the file should be viewed as using the "meters" unit.  Is that so?
11621
General Software Discussion / Re: Screenshot Captor... cm vs. in
« Last post by mouser on March 27, 2012, 10:04 AM »
Or put another way, it seems like this is something that would be impossible to fix in screenshot captor, since there is no way to embed this information in a png file, and that the discrepancy you are seeing seems to be entirely a creation of Paint Shop Pro, and has nothing to do with the image file.
11622
Sounds cool.
11623
N.A.N.Y. 2011 / Re: NANY 2011 Release: Park Cursor Aside
« Last post by mouser on March 26, 2012, 05:43 PM »
11624
Developer's Corner / Re: EasyGit - Sane syntax for git
« Last post by mouser on March 26, 2012, 08:32 AM »
Nice find -- could come in handy.
11625
Living Room / Re: The Candy Enthusiast Blog
« Last post by mouser on March 25, 2012, 07:14 PM »
I've been on a diet for the last few weeks and all i can do in my free time is stare at these candy blog pages!
Pages: prev1 ... 460 461 462 463 464 [465] 466 467 468 469 470 ... 1515next