Click here to Skip to main content
15,918,168 members
Home / Discussions / C#
   

C#

 
QuestionHow to change cursor to hand on a specific area of a form or control? Pin
Supra210-Apr-09 22:33
Supra210-Apr-09 22:33 
AnswerRe: How to change cursor to hand on a specific area of a form or control? Pin
Sami Jadoon10-Apr-09 23:20
Sami Jadoon10-Apr-09 23:20 
AnswerRe: How to change cursor to hand on a specific area of a form or control? Pin
Sami Jadoon10-Apr-09 23:22
Sami Jadoon10-Apr-09 23:22 
AnswerRe: How to change cursor to hand on a specific area of a form or control? Pin
Henry Minute11-Apr-09 0:34
Henry Minute11-Apr-09 0:34 
GeneralRe: How to change cursor to hand on a specific area of a form or control? Pin
Supra211-Apr-09 1:47
Supra211-Apr-09 1:47 
GeneralRe: How to change cursor to hand on a specific area of a form or control? Pin
Henry Minute11-Apr-09 2:29
Henry Minute11-Apr-09 2:29 
GeneralRe: How to change cursor to hand on a specific area of a form or control? Pin
Supra211-Apr-09 5:37
Supra211-Apr-09 5:37 
Questiongetting a list of all classes from a referenced dll. Pin
NetQuestions10-Apr-09 22:11
NetQuestions10-Apr-09 22:11 
I created a console application called "InputDLL" and added reference to
it in my second application called "Tester"

InputDLL application has one class called "Class1".

Here instead of hardcoding the name of the class, is there any way
I can get the name of the class programatically?

Following is my code:
---------------------

using InputDLL;

namespace Tester
{
class Program
{
static void Main(string[] args)
{
Type type = typeof(InputDLL.Class1);

foreach (MethodInfo methodInfo in type.GetMethods())
{
Console.WriteLine("{0}", methodInfo.Name);
}
}
}
}

Thanks,
NetQuestions
AnswerRe: getting a list of all classes from a referenced dll. Pin
Eddy Vluggen10-Apr-09 23:31
professionalEddy Vluggen10-Apr-09 23:31 
GeneralRe: getting a list of all classes from a referenced dll. Pin
NetQuestions11-May-09 5:24
NetQuestions11-May-09 5:24 
Questionexcel.to web form Pin
kapilsahrawat10-Apr-09 21:19
kapilsahrawat10-Apr-09 21:19 
QuestionRetrieve Image from database using textbox Pin
ciqing10-Apr-09 20:29
ciqing10-Apr-09 20:29 
AnswerRe: Retrieve Image from database using textbox Pin
Anubhava Dimri10-Apr-09 21:17
Anubhava Dimri10-Apr-09 21:17 
GeneralRe: Retrieve Image from database using textbox Pin
ciqing11-Apr-09 6:33
ciqing11-Apr-09 6:33 
GeneralRe: Retrieve Image from database using textbox Pin
Anubhava Dimri12-Apr-09 18:14
Anubhava Dimri12-Apr-09 18:14 
QuestionEmbedded resource Pin
Karmendra Suthar10-Apr-09 20:19
Karmendra Suthar10-Apr-09 20:19 
QuestionUsing an image as a link.......How to? Pin
Rajdeep.NET is BACK10-Apr-09 19:44
Rajdeep.NET is BACK10-Apr-09 19:44 
AnswerRe: Using an image as a link.......How to? Pin
MNantu10-Apr-09 22:17
MNantu10-Apr-09 22:17 
QuestionClosing the curent process Pin
mrithula810-Apr-09 19:24
mrithula810-Apr-09 19:24 
AnswerRe: Closing the curent process Pin
Anubhava Dimri10-Apr-09 20:52
Anubhava Dimri10-Apr-09 20:52 
AnswerRe: Closing the curent process Pin
Luc 64801111-Apr-09 0:31
Luc 64801111-Apr-09 0:31 
QuestionHow to create Control array? Pin
12Code10-Apr-09 19:21
12Code10-Apr-09 19:21 
AnswerRe: How to create Control array? Pin
a.hamidy10-Apr-09 20:06
a.hamidy10-Apr-09 20:06 
QuestionHow to create banner maker windows application. Pin
Ch.Gayatri Subudhi10-Apr-09 19:01
Ch.Gayatri Subudhi10-Apr-09 19:01 
AnswerRe: How to create banner maker windows application. Pin
Eddy Vluggen11-Apr-09 0:20
professionalEddy Vluggen11-Apr-09 0:20 

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.