In my software i need to show the property dialog of a file and navigate to a specific tab in that property dialog? please tell me how to acheive this using c#?
or Is it possible to replace the default property dialog with a custom one?
In my software i need to show the property dialog of a file and navigate to a specific tab in that property dialog? please tell me how to acheive this using c#?
or Is it possible to replace the default property dialog with a custom one?
You must use P/Invoke to achieve this:
don't know if it's even possible to select a specific tab (in a nice way)...
By setting info.lpParameters to name of the tab you want it gets opened with that tab selected. In my case "Details"...
Yes you need that declaration that codeteq wrote.
This is the declaration that I use:
}