Click here to Skip to main content
15,885,216 members
Home / Discussions / C#
   

C#

 
Questionc# Getting Data From Excel Pin
Matthew Hastings29-Jul-08 14:01
Matthew Hastings29-Jul-08 14:01 
AnswerRe: c# Getting Data From Excel Pin
Syed Shahid Hussain29-Jul-08 21:04
Syed Shahid Hussain29-Jul-08 21:04 
AnswerRe: c# Getting Data From Excel Pin
Bijesh29-Jul-08 22:59
Bijesh29-Jul-08 22:59 
QuestionKeyCode to char NumPad problem [modified] Pin
DaveyM6929-Jul-08 13:09
professionalDaveyM6929-Jul-08 13:09 
AnswerRe: KeyCode to char NumPad problem Pin
PIEBALDconsult29-Jul-08 13:53
mvePIEBALDconsult29-Jul-08 13:53 
GeneralRe: KeyCode to char NumPad problem Pin
DaveyM6929-Jul-08 14:03
professionalDaveyM6929-Jul-08 14:03 
GeneralRe: KeyCode to char NumPad problem Pin
PIEBALDconsult29-Jul-08 18:08
mvePIEBALDconsult29-Jul-08 18:08 
QuestionPlugable Interface Pin
Dirso29-Jul-08 11:26
Dirso29-Jul-08 11:26 
Hi,

I have a base class called "UserInterfaceBase" and I'd like the user's programmer can create and plug their own interface.
Is there anyway to do it? Of course the project won't have a reference to the user "homemade" interface, so I think that's the problem I'm having.
Type tUI = Type.GetType(loader.InterfacePDV.InterfaceClass, false, true);
if (tUI == null)
    tUI = Type.GetType("JRFW.Appl.CM10.CPDV.UI." +
        loader.InterfacePDV.InterfaceClass, false, true);
if (tUI == null)
    throw new TypeLoadException(loader.InterfacePDV.InterfaceClass);
PDVUI = (IPDV)Activator.CreateInstance(tUI);

It always throw the TypeLoadException exception.

Thanks,
Dirso
AnswerRe: Plugable Interface Pin
Judah Gabriel Himango29-Jul-08 12:48
sponsorJudah Gabriel Himango29-Jul-08 12:48 
GeneralRe: Plugable Interface Pin
Dirso30-Jul-08 2:29
Dirso30-Jul-08 2:29 
GeneralRe: Plugable Interface Pin
Judah Gabriel Himango30-Jul-08 5:15
sponsorJudah Gabriel Himango30-Jul-08 5:15 
GeneralRe: Plugable Interface Pin
Dirso30-Jul-08 13:58
Dirso30-Jul-08 13:58 
QuestionLanguage Pin
bfis10813729-Jul-08 10:59
bfis10813729-Jul-08 10:59 
AnswerRe: Language Pin
nelsonpaixao29-Jul-08 12:38
nelsonpaixao29-Jul-08 12:38 
AnswerRe: Language Pin
Christian Graus29-Jul-08 12:38
protectorChristian Graus29-Jul-08 12:38 
AnswerRe: Language Pin
DaveyM6929-Jul-08 12:52
professionalDaveyM6929-Jul-08 12:52 
Questionclickonce register COM problem Pin
steve_rm29-Jul-08 7:54
steve_rm29-Jul-08 7:54 
AnswerRe: clickonce register COM problem Pin
paas29-Jul-08 8:01
paas29-Jul-08 8:01 
QuestionA design decision - how to instantiate and call BLL classes? Pin
Pawel Krakowiak29-Jul-08 6:19
Pawel Krakowiak29-Jul-08 6:19 
AnswerRe: A design decision - how to instantiate and call BLL classes? Pin
led mike29-Jul-08 6:38
led mike29-Jul-08 6:38 
GeneralRe: A design decision - how to instantiate and call BLL classes? Pin
Pawel Krakowiak29-Jul-08 21:09
Pawel Krakowiak29-Jul-08 21:09 
GeneralRe: A design decision - how to instantiate and call BLL classes? Pin
led mike30-Jul-08 6:03
led mike30-Jul-08 6:03 
GeneralRe: A design decision - how to instantiate and call BLL classes? Pin
Pawel Krakowiak30-Jul-08 6:29
Pawel Krakowiak30-Jul-08 6:29 
GeneralRe: A design decision - how to instantiate and call BLL classes? Pin
led mike30-Jul-08 6:43
led mike30-Jul-08 6:43 
QuestionC# Topmost without focus Pin
Zocrates29-Jul-08 6:00
Zocrates29-Jul-08 6:00 

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.