Click here to Skip to main content
15,914,444 members
Home / Discussions / C#
   

C#

 
QuestionPassing IP from client across servers Pin
Gump6194-Sep-07 5:38
Gump6194-Sep-07 5:38 
Questionhow to get a list of all avilable controls in a namespace Pin
Amar Chaudhary4-Sep-07 5:21
Amar Chaudhary4-Sep-07 5:21 
AnswerRe: how to get a list of all avilable controls in a namespace Pin
led mike4-Sep-07 5:39
led mike4-Sep-07 5:39 
QuestionRe: how to get a list of all avilable controls in a namespace Pin
Amar Chaudhary4-Sep-07 6:55
Amar Chaudhary4-Sep-07 6:55 
AnswerRe: how to get a list of all avilable controls in a namespace Pin
Amar Chaudhary4-Sep-07 7:00
Amar Chaudhary4-Sep-07 7:00 
GeneralRe: how to get a list of all avilable controls in a namespace Pin
Giorgi Dalakishvili4-Sep-07 7:18
mentorGiorgi Dalakishvili4-Sep-07 7:18 
GeneralRe: how to get a list of all avilable controls in a namespace Pin
led mike4-Sep-07 7:28
led mike4-Sep-07 7:28 
GeneralRe: how to get a list of all avilable controls in a namespace Pin
Amar Chaudhary4-Sep-07 19:44
Amar Chaudhary4-Sep-07 19:44 
Assembly a = Assembly.LoadWithPartialName("System.Windows.Forms");
Type[] types = a.GetTypes();
foreach (Type t in types)
{

    listBox1.Items.Add(t.ToString());
}
MessageBox.Show(listBox1.Items.Count.ToString());


this is giving result but with warning

Warning 1 'System.Reflection.Assembly.LoadWithPartialName(string)' is obsolete: 'This method has been deprecated. Please use Assembly.Load() instead. http://go.microsoft.com/fwlink/?linkid=14202' E:\important\Articles for code project\Theme Applier for windows forms\EasyUI\UIApplier\UIMaker\ControlBrowser.cs 31 26 UIMaker




I am looking more into it Thanks for your help


It is Good to be Important but!
it is more Important to be Good

QuestionRegEx help for a RegEx Newb Pin
flipdoubt4-Sep-07 5:04
flipdoubt4-Sep-07 5:04 
AnswerRe: RegEx help for a RegEx Newb Pin
Christian Graus4-Sep-07 5:11
protectorChristian Graus4-Sep-07 5:11 
GeneralRe: RegEx help for a RegEx Newb Pin
flipdoubt4-Sep-07 5:14
flipdoubt4-Sep-07 5:14 
GeneralRe: RegEx help for a RegEx Newb Pin
Christian Graus4-Sep-07 6:04
protectorChristian Graus4-Sep-07 6:04 
AnswerRe: RegEx help for a RegEx Newb Pin
Joseph Guadagno4-Sep-07 5:14
Joseph Guadagno4-Sep-07 5:14 
GeneralRe: RegEx help for a RegEx Newb Pin
DavidNohejl4-Sep-07 6:03
DavidNohejl4-Sep-07 6:03 
AnswerRe: RegEx help for a RegEx Newb Pin
ednrgc4-Sep-07 5:38
ednrgc4-Sep-07 5:38 
AnswerRe: RegEx help for a RegEx Newb Pin
Skippums4-Sep-07 12:12
Skippums4-Sep-07 12:12 
QuestionC# Generics - Using operators with generic objects Pin
funkymint4-Sep-07 4:28
funkymint4-Sep-07 4:28 
AnswerRe: C# Generics - Using operators with generic objects Pin
Christian Graus4-Sep-07 4:43
protectorChristian Graus4-Sep-07 4:43 
GeneralRe: C# Generics - Using operators with generic objects Pin
funkymint4-Sep-07 4:54
funkymint4-Sep-07 4:54 
GeneralRe: C# Generics - Using operators with generic objects Pin
DavidNohejl4-Sep-07 6:09
DavidNohejl4-Sep-07 6:09 
AnswerRe: C# Generics - Using operators with generic objects Pin
Urs Enzler4-Sep-07 4:55
Urs Enzler4-Sep-07 4:55 
GeneralRe: C# Generics - Using operators with generic objects [modified] Pin
funkymint4-Sep-07 5:32
funkymint4-Sep-07 5:32 
GeneralRe: C# Generics - Using operators with generic objects Pin
funkymint4-Sep-07 5:51
funkymint4-Sep-07 5:51 
GeneralRe: C# Generics - Using operators with generic objects Pin
Christian Graus4-Sep-07 6:06
protectorChristian Graus4-Sep-07 6:06 
AnswerRe: C# Generics - Using operators with generic objects Pin
Skippums4-Sep-07 12:47
Skippums4-Sep-07 12:47 

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.