Guys i have the awesomium webcontrol that was available in the toolbox and it doesnot display choose file or any dialog box for uploading files(e.g. uploading pic/video in facebook).pls give the complete procedure on how to enable it.i am using visual c# and it is a wpf application.
Share
Some more info is needed.
WebControl?The WinForms
WebControlprovides all dialogs. The WPFWebControlprovides all dialogs too, however, folder selection dialogs are only supported on Windows Vista and newer. If the dialogs do not appear, you may have to handle theSelectLocalFilesevent. Make sure the event is fired. If it is but you still see no dialog, handle the event yourself and display your own modal dialog. Provide the result toFileDialogEventArgs.SelectedFileorFileDialogEventArgs.SelectedFilesand don’t forget to setFileDialogEventArgs.Handledtotrue.