This is a migrated thread and some comments may be shown as answers.

Error HRESULT E_FAIL after upgradation of dll's

3 Answers 72 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Kiran
Top achievements
Rank 1
Kiran asked on 30 Dec 2011, 12:53 PM
Hi Team,

I was using 2011.2.0712.1040 version in my SL project. After facing some issues related to RadWindow and after reading on telerik forums I have downloaded trial version 2011.3.1220.1040 of SL  telerik.
I have added those dll. But, I gets error as "Error HRESULT E_FAIL has been returned from a call to a COM component".

Please help me in this case.

Thanks in advance.
Kiran Ghanwat

3 Answers, 1 is accepted

Sort by
0
Zarko
Telerik team
answered on 30 Dec 2011, 01:03 PM
Hello,
Could you please give some code snippets, a project that reproduces this issue or tell us exactly which rad controls are you using?
We're looking forward to hearing from you.

Kind regards,
Zarko
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Kiran
Top achievements
Rank 1
answered on 30 Dec 2011, 01:07 PM
Please see my code:

 

 

ICommand openImportFormatCommand; 
   
  
public ICommand OpenImportFormatCommand
{
get 
{
if (this.openImportFormatCommand == null)  
{
this.openImportFormatCommand = new RelayCommand(() => this.OpenImportFormatPopup()); 
}
  
 return this.openImportFormatCommand; 
 }
}
   
  
private void OpenImportFormatPopup() 
 {
ImportFormat importFormatPopup = new ImportFormat(); 
   
importFormatPopup.Dispatcher.BeginInvoke(
 delegate() 
 {
importFormatPopup.DataContext = this
   
importFormatPopup.WindowStartupLocation = Telerik.Windows.Controls.
WindowStartupLocation.CenterScreen;  
  
importFormatPopup.ShowDialog(); 
  
}); 
  
}

 

 I am trying to open Radwindow modal popup.
Thanks,
Kiran Ghanwat

0
Ivo
Telerik team
answered on 04 Jan 2012, 02:49 PM
Hi,

I could not reproduce this using the 2011.3.1220.1040  version of Telerik RadControls for Silverlight and the sample code you provided. You can find an attached example of what I tried. Did I missed something?

Regards,
Ivo
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
General Discussions
Asked by
Kiran
Top achievements
Rank 1
Answers by
Zarko
Telerik team
Kiran
Top achievements
Rank 1
Ivo
Telerik team
Share this question
or