keep a program window floating on the top of a current windows

Hi friend,

I have 2 questions, please help.

1. Is it possible to keep a program window/message box floating on the top when editing text on the window beneath I want to do this because then the user can keep an eye on the info on the top window while editing the bottom one.

2. Can a button on a web page trigger an application on the pocket pc

Regards



Answer this question

keep a program window floating on the top of a current windows

  • Alex-MyRpg

    1. Create a form with FormBorderStyle = None and TopMost = true and resize it to a suitable size. If you want a border you have to paint it yourself in the form's Paint event. Call Show() (not ShowDialog()) to show the form.

    2. I don't think this is possible.

    Lars

  • keep a program window floating on the top of a current windows