rejetto forum

suggestion for 2.1

Guest · 7 · 6078

0 Members and 1 Guest are viewing this topic.

unbreakable

  • Guest
Please add an easy option for thumbnails of images...
an option that is easy for a newbie to turn on.....


thanks!


Offline ~GeeS~

  • Tireless poster
  • ****
    • Posts: 269
  • "The web was made for sharing..."
    • View Profile

unbreakable

  • Guest
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.


ANTS

  • Guest
I'm used to clicking the close button as well but to fix that go to Menu > Start/Exit and tick Confirm Exit.


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13523
    • View Profile
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?


Offline Martok

  • Occasional poster
  • *
    • Posts: 88
    • View Profile
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
Cheers,

Martok


Offline rejetto

  • Administrator
  • Tireless poster
  • *****
    • Posts: 13523
    • View Profile