Click here to Skip to main content
15,913,685 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to set expiry date for my software Pin
Vasudevan Deepak Kumar14-Sep-05 19:10
Vasudevan Deepak Kumar14-Sep-05 19:10 
GeneralRe: How to set expiry date for my software Pin
shafqaat14-Sep-05 20:49
shafqaat14-Sep-05 20:49 
AnswerRe: How to set expiry date for my software Pin
Ashok Dhamija14-Sep-05 20:57
Ashok Dhamija14-Sep-05 20:57 
QuestionRe: How to set expiry date for my software Pin
M-20009-Nov-05 3:17
M-20009-Nov-05 3:17 
QuestionSaving a TIF Files From the internet Pin
Thaynann14-Sep-05 18:28
Thaynann14-Sep-05 18:28 
AnswerRe: Saving a TIF Files From the internet Pin
Andy Brummer14-Sep-05 20:39
sitebuilderAndy Brummer14-Sep-05 20:39 
GeneralRe: Saving a TIF Files From the internet Pin
Thaynann15-Sep-05 14:46
Thaynann15-Sep-05 14:46 
GeneralRe: Saving a TIF Files From the internet Pin
Andy Brummer15-Sep-05 16:46
sitebuilderAndy Brummer15-Sep-05 16:46 
GeneralRe: Saving a TIF Files From the internet Pin
Thaynann18-Sep-05 14:09
Thaynann18-Sep-05 14:09 
QuestionC# ListView subitems with check box/combobox Pin
Hitesh Salian14-Sep-05 17:55
Hitesh Salian14-Sep-05 17:55 
AnswerRe: C# ListView subitems with check box/combobox Pin
Luis Alonso Ramos15-Sep-05 6:49
Luis Alonso Ramos15-Sep-05 6:49 
QuestionWhy can't I connect using Socket Pin
kayhustle14-Sep-05 17:38
kayhustle14-Sep-05 17:38 
AnswerRe: Why can't I connect using Socket Pin
softty14-Sep-05 20:22
softty14-Sep-05 20:22 
QuestionPE header Pin
neliocc14-Sep-05 15:57
neliocc14-Sep-05 15:57 
AnswerRe: PE header Pin
Luis Alonso Ramos14-Sep-05 16:18
Luis Alonso Ramos14-Sep-05 16:18 
QuestionHow to convert Windows Application to .NET ASP Application Pin
sandeeppathuri14-Sep-05 15:22
sandeeppathuri14-Sep-05 15:22 
AnswerRe: How to convert Windows Application to .NET ASP Application Pin
Luis Alonso Ramos14-Sep-05 16:20
Luis Alonso Ramos14-Sep-05 16:20 
QuestionDataGrid Pin
Taurian11014-Sep-05 13:45
Taurian11014-Sep-05 13:45 
AnswerRe: DataGrid Pin
Taurian11017-Sep-05 4:17
Taurian11017-Sep-05 4:17 
QuestionAuto generated code breaks Pin
Christian Graus14-Sep-05 12:57
protectorChristian Graus14-Sep-05 12:57 
AnswerRe: Auto generated code breaks Pin
Ashok Dhamija14-Sep-05 23:32
Ashok Dhamija14-Sep-05 23:32 
GeneralRe: Auto generated code breaks Pin
Christian Graus15-Sep-05 11:06
protectorChristian Graus15-Sep-05 11:06 
GeneralRe: Auto generated code breaks Pin
Ashok Dhamija15-Sep-05 20:14
Ashok Dhamija15-Sep-05 20:14 
What appears to me is that when the default ResourceManager method with one parameter, i.e., ResourceManager(typeof(DetailsActions)) is called, it is getting called in the correct assembly (i.e., "RDC") because the error mentioned by you clearly shows the name of the assembly being searched, i.e.,

"Make sure "DetailsActions.resources" was correctly embedded or linked into assembly "RDC"."

So, when you compare the aforesaid single-parameter ResourceManager method with the two-parameters method namely ResourceManager("RDC.controls.DetailsActions", System.Reflection.Assembly.GetExecutingAssembly()), it appears that the assembly is being identified correctly. The only problem is that the call to typeof(DetailsActions) is resulting into something like "DetailsActions" instead of resulting into the required fully qualified Namespace / path of "RDC.Controls.DetailsActions". So, perhaps what is required to be done is that when the InitializeComponent method of the user control is called for the purpose of constructing the embedded resources, it should make typeof(DetailsActions) to produce fully qualified Namespace / path of "RDC.Controls.DetailsActions". So, I wonder whether the Namespace mentioned in the source file containing the user control can be changed to the fully qualified Namespace of "RDC.Controls...." if it is not so already and whether it helps in solving the problem. If it does not help (unfortunately I cannot visualize your actual code), you may please try to somehow ensure that the typeof operator when run on the class of user control returns the full Namespace path. This problem might perhaps have arisen due to the user control having been initially designed in one environment and then the same being copied to a different solution leading to conflict of namespaces.

As an alternative, you may also try changing the default namespace to the fully qualified namespace (if not so already) in the properties of the project containing user control.

I can only hope that it works.

Regards,
Ashok Dhamija
_____________________________
Padam Technologies
QuestionStatusbar Pin
Taurian11014-Sep-05 10:45
Taurian11014-Sep-05 10:45 
AnswerRe: Statusbar Pin
Mark0614-Sep-05 11:26
Mark0614-Sep-05 11:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.