I am looking for Message box control which could give me possibility also to have details windows inside. This is because sometime user doesn't want to see error message, therefore i could place additional detailed message in details section and user can decide whether to open it and read or just read main message. I know its not possible within available MsgBox
but do you know maybe some custom control i could use? I know i could use PropertyGrid
but i am not sure if its secure.
Asked
Active
Viewed 284 times
1

Arie
- 3,041
- 7
- 32
- 63
1 Answers
4
What you're looking for is called a Task Dialog. It's part of the Windows API Code Pack.
-
yes that nice, the problem is when i am testing it the icon is not showing up, everything else working. – Arie Oct 18 '15 at 07:35
-
I realize this is old, but is there an implementation of this that contains a textbox control, similar to the exception dialog that contains the stack trace from the JIT debugger? I'm working on rolling my own dialog like this to display details (collapsed unless the user clicks a Show Details button) for certain, very specific events in my application, but I'd be just as happy if I didn't have to reinvent something that's already out there. – G_Hosa_Phat Oct 11 '20 at 02:14