Click here to Skip to main content
15,907,497 members
Home / Discussions / C#
   

C#

 
GeneralCombo Box in Datagrid Cell Pin
Glaivas9-Feb-05 23:02
Glaivas9-Feb-05 23:02 
GeneralWMI Win32_Process Pin
skrishnasarma9-Feb-05 21:51
skrishnasarma9-Feb-05 21:51 
GeneralCapturing global keystrokes Pin
SnuhEyeless9-Feb-05 21:12
SnuhEyeless9-Feb-05 21:12 
GeneralRe: Capturing global keystrokes Pin
SnuhEyeless9-Feb-05 21:29
SnuhEyeless9-Feb-05 21:29 
GeneralRe: Capturing global keystrokes Pin
Stefan Troschuetz9-Feb-05 21:51
Stefan Troschuetz9-Feb-05 21:51 
Generalcreate a screen program same as like report from a xml file Pin
dhol9-Feb-05 19:35
dhol9-Feb-05 19:35 
GeneralRe: create a screen program same as like report from a xml file Pin
Dave Kreskowiak10-Feb-05 5:17
mveDave Kreskowiak10-Feb-05 5:17 
GeneralRe: create a screen program same as like report from a xml file Pin
dhol10-Feb-05 16:36
dhol10-Feb-05 16:36 
GeneralRe: create a screen program same as like report from a xml file Pin
Michael P Butler10-Feb-05 8:18
Michael P Butler10-Feb-05 8:18 
GeneralRe: create a screen program same as like report from a xml file Pin
dhol10-Feb-05 16:36
dhol10-Feb-05 16:36 
Generalretreiving metadata information of s database Pin
padvit9-Feb-05 18:10
padvit9-Feb-05 18:10 
Generalwebservice needed for sending sms from web 2 mob Pin
iramg9-Feb-05 17:48
iramg9-Feb-05 17:48 
GeneralRe: webservice needed for sending sms from web 2 mob Pin
S. Senthil Kumar9-Feb-05 19:25
S. Senthil Kumar9-Feb-05 19:25 
GeneralRe: webservice needed for sending sms from web 2 mob Pin
Dave Kreskowiak10-Feb-05 5:14
mveDave Kreskowiak10-Feb-05 5:14 
GeneralProblem calling Matlab from ASP.net Pin
malcolmmc9-Feb-05 16:53
malcolmmc9-Feb-05 16:53 
QuestionHow to get Messages When Clicking CheckBox in DataGrid? Pin
pubududilena9-Feb-05 16:25
pubududilena9-Feb-05 16:25 
AnswerRe: How to get Messages When Clicking CheckBox in DataGrid? Pin
Gleb Belov9-Feb-05 22:13
Gleb Belov9-Feb-05 22:13 
Generalupdating an edited Datalist to an Access DB Pin
fortyonejb9-Feb-05 16:17
fortyonejb9-Feb-05 16:17 
Questioncan we use two diffrent namespaces Pin
nagarajuepuri9-Feb-05 15:53
nagarajuepuri9-Feb-05 15:53 
AnswerRe: can we use two diffrent namespaces Pin
Dave Kreskowiak9-Feb-05 17:11
mveDave Kreskowiak9-Feb-05 17:11 
General[Resolved] Pin
nagarajuepuri10-Feb-05 6:16
nagarajuepuri10-Feb-05 6:16 
GeneralRe: [Resolved] Pin
Dave Kreskowiak10-Feb-05 6:47
mveDave Kreskowiak10-Feb-05 6:47 
GeneralRe: [Resolved] Pin
Richard Parsons11-Feb-05 5:54
Richard Parsons11-Feb-05 5:54 
GeneralRe: [Resolved] Pin
TRekrap15-Feb-05 3:35
TRekrap15-Feb-05 3:35 
AnswerRe: can we use two diffrent namespaces Pin
Dariush Tasdighi11-Feb-05 6:38
Dariush Tasdighi11-Feb-05 6:38 
Hi Dear, You can use a lot of namespaces if you want, but you must note that if there are two classes with the same name in two namespaces, You must write full address of your classs in your source code:

For example:

Suppose that you have two class with the name of Class1 in two namespaces (namespace1, namespace2) so if you want to use these class in your source code, You must write:

C#
Public Class2
{
  public void SomeFunction()
  {
    namespace1.Class1 object1 = ...;
    namespace2.Class1 object2 = ...;
  }
}


I hope these notes be enough for you.


Dariush Tasdighi
http://www.IranianExperts.com Web Master

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.