Results 1 to 15 of 15

Thread: Beta test my latest app? :)

  1. #1

    Thread Starter
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Arrow Beta test my latest app? :)

    I whipped this little proggy together for a mate and would like some feedback before I give it to him It is a screenshot taking utility which automatically saves screenshots, as either BMP or JPG, to a folder which you specify. It runs primarily from the tray (Thanks to Woka for the systray code ) You can use either a hotkey (F11 atm) or take screenshots using the tray menu. It allows you to specify whether to dump the whole screen, or just the foreground window.

    I attached the source. To run, unzip it, copy Bmp2Jpeg.dll into your \System32 folder, and run the .vbp project.

    So far, the only thing that I can't get to work is XP styles, but that will come Bug reports, feedback (positive/negative) etc. are welcome

    Thanks


  2. #2

    Thread Starter
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Beta test my latest app? :)

    Fine then

  3. #3

  4. #4

    Thread Starter
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Beta test my latest app? :)

    Quote Originally Posted by RhinoBull
    What do you think anyone can expect from a spammer, so no worries mate, eh?
    Oh yeah. I forgot to mention, it also overwrites your system files, sends automated PMs through VBF, and deletes IE and replaces it with Firefox


    Just kidding...

  5. #5

  6. #6
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Beta test my latest app? :)

    I just tried it, and it works fine. A couple of things though. I started with full compile but didn't compile it first.

    When I minimized the app, it didn't go into the task bar, it sat just over the start button. Kind of annoying. Also, how do you end it? When I clicked the red X, it did the same thing again. I had to hit the stop button, which of course left the systray icon there.

    Also, you should save the output file folder so users don't have to keep setting it.

  7. #7

    Thread Starter
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Beta test my latest app? :)

    Quote Originally Posted by dglienna
    When I minimized the app, it didn't go into the task bar, it sat just over the start button. Kind of annoying.
    I can imagine. I haven't actually had that problem, so I will try and replicate it. Does it do it if you have maximized windows open (and visible) at the same time? If not, then it is probably z-ordering, but not hiding itself properly.

    Quote Originally Posted by dglienna
    Also, how do you end it? When I clicked the red X, it did the same thing again. I had to hit the stop button, which of course left the systray icon there.
    Right-click the icon and choose Exit. I guess i should add a Quit button also.

    Quote Originally Posted by dglienna
    Also, you should save the output file folder so users don't have to keep setting it.
    Forgot about that, thanks will do

  8. #8

    Thread Starter
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Beta test my latest app? :)

    Quote Originally Posted by dglienna
    Also, how do you end it? When I clicked the red X, it did the same thing again. I had to hit the stop button, which of course left the systray icon there.
    umm, I already have a Quit button

  9. #9
    New Member
    Join Date
    Mar 2008
    Location
    Qinhuangdao, China
    Posts
    2

    Re: Beta test my latest app? :)

    I know this is more than 2.5 years after the last post, and most forums I visit hate people resurrecting old hreads, but I've been looking for ages for something like this.

    I really like this program, and have added a timer, so I can automatically create time-lapse photograhs through my webcam (just saved locally on the hard drive).

    The problem I have is every picture the program saves to disk, eats away at system memory. I'm afraid I'm not that great at VB and don't know how to fix this.

    If this program is now finished, has it been added to the code bank? And has this little problem been fixed?

  10. #10

    Thread Starter
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Beta test my latest app? :)

    Alf —

    Sorry I didn't reply to your email. I don't check that account very often.

    Yes, I did finish this. I think I have it somewhere still but would have to dig out and attach the right hard drive.

    The memory leak is probably either in DC allocation or in the bmp2jpeg library. The former can be fixed; the latter not.
    I'm afraid I no longer develop in VB6, so I can't test this for you. If I were to make it again, I'd probably use C#.

  11. #11
    New Member
    Join Date
    Mar 2008
    Location
    Qinhuangdao, China
    Posts
    2

    Re: Beta test my latest app? :)

    Thanks very much for the reply.

    It does seem to be something to do with bmp2jpeg, as the problem doesn't occur when outputting as bitmap.

    I also found this which mentions bmp2jpeg having memory issues :

    http://www.tek-tips.com/viewthread.c...1209110&page=7
    Last edited by AlfCheesey; Mar 9th, 2008 at 03:41 AM.

  12. #12
    Fanatic Member
    Join Date
    Feb 2006
    Posts
    607

    Re: Beta test my latest app? :)

    you can look in the code bank as there are a few posts there that deal with screenshots.

    You can easily add a timer to one of them and be on your way

  13. #13
    Lively Member
    Join Date
    Apr 2008
    Posts
    104

    Re: Beta test my latest app? :)

    Quote Originally Posted by penagate
    I attached the source. To run, unzip it, copy Bmp2Jpeg.dll into your \System32 folder, and run the .vbp project.
    Hi Penagate, I am working on similar project. But I have problem running your vb project here. I can only see the form it seems to do nothing after being cliecked. How can I "copy Bmp2Jpeg.dll into your \System32 folder"?

  14. #14
    Frenzied Member
    Join Date
    Sep 2006
    Location
    Scotland
    Posts
    1,054

    Re: Beta test my latest app? :)

    For the XP styles, for a temp fix all you do is rename "manifest.xml" to "screeniethingy.exe.manifest" and it works. There is a way to embed it as a resource though.

    Edit: I did this as a basic project months back and never got round to fine tuning it. It might be of some help though for embedding the manifest. Also are you aware that you can run multiple instances of the app? Other than that GREAT!!!!
    Last edited by 03myersd; Jul 14th, 2008 at 03:44 PM.

  15. #15

    Thread Starter
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Beta test my latest app? :)

    Quote Originally Posted by VBKit
    Hi Penagate, I am working on similar project. But I have problem running your vb project here. I can only see the form it seems to do nothing after being cliecked. How can I "copy Bmp2Jpeg.dll into your \System32 folder"?
    Copy it to the System32 directory within your Windows installation directory which is usually C:\Windows.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width