th WebUpdate module window does not create its own entry in the taskbar, neither it's selectable via ALT+TAB. It's also not a modal window, means when I click in DevC++ the windows disappears and I'm not able to bring it infront again.
Oh ok, I can start it once more but I would prefer when it is either 'always on top', or even better when it's a modal window.
Thanks !
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I like this idea. I think in general webupdate form misses a lot of funcionality (like refreshes etc).
Do make the form show on taskbar you need to add private function in TWebUpdateForm:
procedure CreateParams(Var params: TCreateParams); override;
then in implementation:
procedure TWebUpdateForm.CreateParams(var Params: TCreateParams);
begin
inherited;
Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW;
Params.WndParent := GetDesktopWindow;
end;
let me know if you need an exe to test it.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi there,
th WebUpdate module window does not create its own entry in the taskbar, neither it's selectable via ALT+TAB. It's also not a modal window, means when I click in DevC++ the windows disappears and I'm not able to bring it infront again.
Oh ok, I can start it once more but I would prefer when it is either 'always on top', or even better when it's a modal window.
Thanks !
You might want to use the link titled "RFE" on the web page to make a request...
Wayne
hi,
I like this idea. I think in general webupdate form misses a lot of funcionality (like refreshes etc).
Do make the form show on taskbar you need to add private function in TWebUpdateForm:
procedure CreateParams(Var params: TCreateParams); override;
then in implementation:
procedure TWebUpdateForm.CreateParams(var Params: TCreateParams);
begin
inherited;
Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW;
Params.WndParent := GetDesktopWindow;
end;
let me know if you need an exe to test it.
Thanks, it should be ok now
Greetings,
Colin