Click here to Skip to main content
15,905,877 members
Home / Discussions / C#
   

C#

 
AnswerRe: code for speech to text using csharp .net Pin
Richard MacCutchan24-Dec-12 23:02
mveRichard MacCutchan24-Dec-12 23:02 
AnswerRe: code for speech to text using csharp .net Pin
Thomas Daniels24-Dec-12 23:13
mentorThomas Daniels24-Dec-12 23:13 
QuestionHow to modify a line in the Word file using C# ? Pin
taibc24-Dec-12 20:04
taibc24-Dec-12 20:04 
AnswerRe: How to modify a line in the Word file using C# ? Pin
Richard MacCutchan24-Dec-12 23:04
mveRichard MacCutchan24-Dec-12 23:04 
GeneralRe: How to modify a line in the Word file using C# ? Pin
taibc25-Dec-12 16:40
taibc25-Dec-12 16:40 
GeneralRe: How to modify a line in the Word file using C# ? Pin
Richard MacCutchan25-Dec-12 21:06
mveRichard MacCutchan25-Dec-12 21:06 
GeneralRe: How to modify a line in the Word file using C# ? Pin
taibc25-Dec-12 22:46
taibc25-Dec-12 22:46 
QuestionProblem with textbox key down and autocomplete Pin
GrooverFromHolland24-Dec-12 10:34
GrooverFromHolland24-Dec-12 10:34 
AnswerRe: Problem with textbox key down and autocomplete Pin
GrooverFromHolland27-Dec-12 7:56
GrooverFromHolland27-Dec-12 7:56 
QuestionHow to reference .net DLL present in other folder Pin
KASR124-Dec-12 6:58
KASR124-Dec-12 6:58 
AnswerRe: How to reference .net DLL present in other folder Pin
jschell24-Dec-12 8:00
jschell24-Dec-12 8:00 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR125-Dec-12 7:11
KASR125-Dec-12 7:11 
GeneralRe: How to reference .net DLL present in other folder Pin
jschell25-Dec-12 16:32
jschell25-Dec-12 16:32 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR126-Dec-12 1:31
KASR126-Dec-12 1:31 
GeneralRe: How to reference .net DLL present in other folder Pin
jschell26-Dec-12 7:48
jschell26-Dec-12 7:48 
AnswerRe: How to reference .net DLL present in other folder Pin
Karthik. A25-Dec-12 5:51
Karthik. A25-Dec-12 5:51 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR125-Dec-12 7:10
KASR125-Dec-12 7:10 
AnswerRe: How to reference .net DLL present in other folder Pin
Alan N26-Dec-12 5:12
Alan N26-Dec-12 5:12 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR126-Dec-12 7:41
KASR126-Dec-12 7:41 
GeneralRe: How to reference .net DLL present in other folder Pin
Alan N26-Dec-12 7:48
Alan N26-Dec-12 7:48 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR12-Jan-13 7:08
KASR12-Jan-13 7:08 
GeneralRe: How to reference .net DLL present in other folder Pin
Alan N2-Jan-13 8:51
Alan N2-Jan-13 8:51 
If you have say App.exe -> DllA -> DllB, i.e. DllA uses DllB and App does not directly reference DllB. If DllA and DllB have been moved out of the application base directory then App.exe.config must be edited to provide separate location information for both DllA and DllB and there is no assumption that DllB now resides in the same place as DllA.

Think of it like this: There is one process and the code in DllA executes in the context of that process. When code in DllA needs to call code residing in DllB then that assembly is loaded by 'the process' whose default locations are the GAC and the application base directory. Overrides to this default behaviour are on a per assembly basis.

Any information contained within *.dll.config is not read automatically and will be ignored.

Alan.

modified 2-Jan-13 17:27pm.

GeneralRe: How to reference .net DLL present in other folder Pin
KASR18-Jan-13 8:00
KASR18-Jan-13 8:00 
QuestionRe: How to reference .net DLL present in other folder Pin
PIEBALDconsult26-Dec-12 9:13
mvePIEBALDconsult26-Dec-12 9:13 
AnswerRe: How to reference .net DLL present in other folder Pin
KASR126-Dec-12 16:25
KASR126-Dec-12 16:25 

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.