rejetto forum

Software => HFS ~ HTTP File Server => Topic started by: unbreakable on May 01, 2006, 03:42:26 PM

Title: suggestion for 2.1
Post by: unbreakable on May 01, 2006, 03:42:26 PM
Please add an easy option for thumbnails of images...
an option that is easy for a newbie to turn on.....


thanks!
Title: suggestion for 2.1
Post by: ~GeeS~ on May 01, 2006, 04:59:29 PM
search the forum
http://www.rejetto.com/forum/viewtopic.php?t=3175
Title: I know this
Post by: unbreakable on May 07, 2006, 09:48:16 AM
I have already seen that and I did search the forum before I posted.

But I suggested this feature to be added to 2.1 and not to a unknown future release... also that way for adding thumbnails is not "an easy way for any newbie to turn on", as I said on my post.

Also an option "send application to tray when close button is clicked" is usefull because many people are used to that, and I keep closing it all the time by mistake. utorrent, bitcomet netlimiter smartftp have this option to name a few.

I cant seem to fix a problem... I used to have my shared folder on drive F, but then I changed it to drive E.. whatever I do I cannot make it remember drive E now, when I close it and open it again it has drive F listed.. strange.... I save the configuration file, and with the registry too... but this has no effect. I will delete the vfs file and save it again...

Your application is great, and since I used it, i didnt need to install a ftp server on my pc...

thanks for listening.
Title: suggestion for 2.1
Post by: ANTS on May 07, 2006, 12:33:11 PM
I'm used to clicking the close button as well but to fix that go to Menu > Start/Exit and tick Confirm Exit.
Title: Re: I know this
Post by: rejetto on May 25, 2006, 02:32:42 AM
Quote from: "unbreakable"
Also an option "send application to tray when close button is clicked" is usefull because many people are used to that, and I keep closing it all the time by mistake. utorrent, bitcomet netlimiter smartftp have this option to name a few.
i was about to make such function, but i didn't find a way to programmatically distinguish the close button from any other event that closes the application.
does anyway know?
Title: Re: I know this
Post by: Martok on May 25, 2006, 10:08:23 AM
Quote from: "rejetto"
i was about to make such function, but i didn't find a way to programmatically distinguish the close button from any other event that closes the application.
does anyway know?


in the Form's decaration:
Code: [Select]
   procedure WMNCHitTest(var Msg: TWMNCHitTest); message WM_NCHITTEST;
in implementation
Code: [Select]
procedure TfrmMain.WMNCHitTest(var Msg: TWMNCHitTest);
begin
  inherited;
  if Msg.Result = HTCLOSE then begin
    DoMinimizeToTray;
    Msg.Result := HTNONE;  // make it not generate OnClose events
  end;
end;

Maybe this helps.

Edit 1: Found code
Edit 2: Corrected Code
Title: suggestion for 2.1
Post by: rejetto on May 25, 2006, 04:07:55 PM
ok thanks