Take screenshot of multiple desktops of all visible applications and forms

i tried GetDesktopWindow() function but it doesn’t work properly. Of course not. The GetDesktopWindow function returns a handle to the desktop window. It doesn’t have anything to do with capturing an image of that window. Besides, the desktop window is not the same thing as “the entire screen”. It refers specifically to the desktop window. … Read more

How to build a SystemTray app for Windows?

You do this using the pywin32 (Python for Windows Extensions) module. Example Code for Python 2 Similar Question To make it run at startup you could mess around with services but it’s actually much easier to install a link to the exe in the users “Startup Folder”. Windows 7 and Vista c:\Users\[username]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup Windows XP … Read more

What’s Java Hybrid – Applet + Application?

A hybrid applet/application simply abstracts the initialization of two top-level containers, JFrame and JApplet. Examples are seen here, here and here. Addendum: How does that work? The first example exposes a factory method, createGUI(), and it adds the returned panel to the extant top-level container. The second provides a static initContainer() method, passing the enclosing … Read more

Implementing a Text Editor

I’m sorry people downvoted you without explaining why you deserve them. I’m guessing people think your question isn’t educated enough? But in any case, I’ll try to get you started. I am not educated enough to answer your question, but I can show you how you can answer it yourself and probably learn a lot … Read more