UndefinedVar Posted June 11, 2014 Posted June 11, 2014 Hi! Can anyone tell me if theres function/method/dllcall to do ControlHide/Show in c++ ? I know this is au3 forum, but i need this and I can't find it.
somdcomputerguy Posted June 11, 2014 Posted June 11, 2014 I think you may find the answer here https://duckduckgo.com/?q=c%2B%2B+forum - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
jguinch Posted June 11, 2014 Posted June 11, 2014 Just use the WinApi ShowWindow, no ? Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF
UndefinedVar Posted June 11, 2014 Author Posted June 11, 2014 Tried, but i want only icons to dissapear from my desktop not whole Progman, it can't catch SysListView321.
jguinch Posted June 11, 2014 Posted June 11, 2014 HWND DesktopHandle = FindWindow("ProgMan", 0); SendMessage(DesktopHandle, LVM_DELETEALLITEMS, 0, 0); Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF
Richard Robertson Posted June 12, 2014 Posted June 12, 2014 Desktop icons are not controls. They are items in a slightly non-standard list view. If you just want to hide them, just set it in the registry. HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHideIcons = DWORD 1 This will hide them and DWORD 0 will show them again.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now