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

C#

 
AnswerRe: to develop web based helpdesk application (visual studio 2005) Pin
Richard MacCutchan16-Nov-11 21:47
mveRichard MacCutchan16-Nov-11 21:47 
GeneralRe: to develop web based helpdesk application (visual studio 2005) Pin
sk_ko16-Nov-11 22:10
sk_ko16-Nov-11 22:10 
GeneralRe: to develop web based helpdesk application (visual studio 2005) Pin
Pete O'Hanlon16-Nov-11 22:21
mvePete O'Hanlon16-Nov-11 22:21 
GeneralRe: to develop web based helpdesk application (visual studio 2005) Pin
sk_ko16-Nov-11 22:43
sk_ko16-Nov-11 22:43 
GeneralRe: to develop web based helpdesk application (visual studio 2005) Pin
Pete O'Hanlon16-Nov-11 22:52
mvePete O'Hanlon16-Nov-11 22:52 
GeneralRe: to develop web based helpdesk application (visual studio 2005) Pin
Richard MacCutchan16-Nov-11 23:28
mveRichard MacCutchan16-Nov-11 23:28 
QuestionExe Reading Pin
Member 814633716-Nov-11 17:18
Member 814633716-Nov-11 17:18 
AnswerRe: Exe Reading Pin
Richard Andrew x6416-Nov-11 17:22
professionalRichard Andrew x6416-Nov-11 17:22 
Yes, that can be easily done.

First, load the assembly with Assembly.Load

Then, call GetTypes on the assembly that you just loaded,

Then, for each type in the Type array, check if it "is" a "Form" like so:

C#
foreach ( Type T in typeArray)
   if (T is Form)
      Do stuff....




The difficult we do right away...
...the impossible takes slightly longer.

GeneralRe: Exe Reading Pin
Mycroft Holmes16-Nov-11 21:53
professionalMycroft Holmes16-Nov-11 21:53 
GeneralRe: Exe Reading Pin
Richard Andrew x6417-Nov-11 3:06
professionalRichard Andrew x6417-Nov-11 3:06 
GeneralRe: Exe Reading Pin
Mycroft Holmes17-Nov-11 11:09
professionalMycroft Holmes17-Nov-11 11:09 
GeneralRe: Exe Reading Pin
Richard Andrew x6417-Nov-11 11:15
professionalRichard Andrew x6417-Nov-11 11:15 
GeneralRe: Exe Reading Pin
Member 814633721-Nov-11 3:06
Member 814633721-Nov-11 3:06 
QuestionImplementing Interfaces Pin
Richard Andrew x6416-Nov-11 16:29
professionalRichard Andrew x6416-Nov-11 16:29 
AnswerRe: Implementing Interfaces Pin
ekolis16-Nov-11 16:43
ekolis16-Nov-11 16:43 
GeneralRe: Implementing Interfaces Pin
Richard Andrew x6416-Nov-11 16:46
professionalRichard Andrew x6416-Nov-11 16:46 
GeneralRe: Implementing Interfaces Pin
ekolis17-Nov-11 3:52
ekolis17-Nov-11 3:52 
AnswerRe: Implementing Interfaces Pin
Not Active16-Nov-11 16:45
mentorNot Active16-Nov-11 16:45 
GeneralRe: Implementing Interfaces Pin
Richard Andrew x6416-Nov-11 16:49
professionalRichard Andrew x6416-Nov-11 16:49 
GeneralRe: Implementing Interfaces Pin
Not Active16-Nov-11 16:51
mentorNot Active16-Nov-11 16:51 
GeneralRe: Implementing Interfaces Pin
Richard Andrew x6416-Nov-11 16:53
professionalRichard Andrew x6416-Nov-11 16:53 
AnswerRe: Implementing Interfaces Pin
Wayne Gaylard16-Nov-11 17:07
professionalWayne Gaylard16-Nov-11 17:07 
GeneralRe: Implementing Interfaces Pin
Richard Andrew x6416-Nov-11 17:10
professionalRichard Andrew x6416-Nov-11 17:10 
GeneralRe: Implementing Interfaces Pin
Wayne Gaylard16-Nov-11 17:17
professionalWayne Gaylard16-Nov-11 17:17 
AnswerRe: Implementing Interfaces Pin
BillWoodruff16-Nov-11 19:28
professionalBillWoodruff16-Nov-11 19:28 

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.