I managed again to hide the application using api but don't know how to unhide it. Anyone know how to do that ?
Printable View
I managed again to hide the application using api but don't know how to unhide it. Anyone know how to do that ?
Well, I would think how you hide it, would give us some ideas on how to unhide it.
That being said, what do you mean by "hide?"
And can you show us how you're "hiding" it?
Sorry, What I'm doing is I'm hiding some applications active on my computer using API using this API code
But i don't know now how to show it again.Code:Private Declare Function ShowWindow Lib "user32" (ByVal hwnd As IntPtr, ByVal nCmdShow As Integer) As Integer
You have to pass SW_SHOW in nCmdShow parameter.
Code:SW_SHOW = 5
I've used that already sir but nothing happen
May we see your code?
I found a other solution thanks for the replies.
Why not share your solution so others who will encounter the same problem may also try it? =)