As I can activate the glass effect on my console applications. I am using Windows 7 and Delphi 2010.
I found this application so it should be possible.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A couple of weeks ago I published this article on my blog.
The key is use the
GetConsoleWindowandDwmEnableBlurBehindWindowfunctions.The
GetConsoleWindowfunction retrieves the window handle used by the console associated with the calling process.The
DwmEnableBlurBehindWindowfunction enables the blur effect (glass) on the provided window handle.This is just a basic example; you must check the Windows OS version to avoid issues.