cancel
Showing results for 
Search instead for 
Did you mean: 

FolderBrowserDialog,

Former Member
0 Kudos

Good Morning.

First of all I apreciate if someone can help me with a problem I´m having.

When I try to show a FolderBrowserDialog, it appears in a second plain and I need to

press alt+tab to show it.

How can I see FolderBrowserDialog in a first plain?

It´s the correct control or i have to use some other?

Regards.

Alejandro Masolini.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Thanks for the help but I'm still having the same problems

Any other solution to this problem?

Former Member
0 Kudos

Hi,

Plz check the following thread,

And are u using

oFrm.TopMost()

And try opening the form in a new thread.

Hope it helps,

Vasu Natari.

former_member209699
Contributor
0 Kudos

Hi I have alredy posted for similar type of requirement.

May this will help you.

regards:

SANDY

Edited by: | Sandeep Saini | Roorkee | India on Sep 16, 2008 10:19 AM

Former Member
0 Kudos

Hello Alejandro,

You must use activeX.

See this example or the examples in the SDK for more info...

AcXDlg = ( ( SAPbouiCOM.ActiveX )( oItem.Specific ) ); 
AcXDlg.ClassID = "MSComDlg.CommonDialog.1"; 

oCommDl = ( ( MSComDlg.CommonDialog )( AcXDlg.Object ) ); 

oCommDl.ShowOpen();

form.Select();

Hope this helps..