Menu

WebUpdate module suggestion

Peter
2004-03-31
2012-09-26
  • Peter

    Peter - 2004-03-31

    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 !

     
    • Wayne Keen

      Wayne Keen - 2004-03-31

      You might want to use the link titled "RFE" on the web page to make a request...

      Wayne

       
    • Marek Januszewski

      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.

       
    • Colin Laplace

      Colin Laplace - 2004-04-04

      Thanks, it should be ok now

      Greetings,
      Colin

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.