rejetto forum
Software => HFS ~ HTTP File Server => Topic started 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!
-
search the forum
http://www.rejetto.com/forum/viewtopic.php?t=3175
-
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.
-
I'm used to clicking the close button as well but to fix that go to Menu > Start/Exit and tick Confirm Exit.
-
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?
-
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:
procedure WMNCHitTest(var Msg: TWMNCHitTest); message WM_NCHITTEST;
in implementation
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
-
ok thanks