Click here to Skip to main content
15,921,542 members
Home / Discussions / C#
   

C#

 
QuestionAdd-in for Outlook not displaying on other users PC´s. Pin
Johan Glysing2-Oct-06 22:33
Johan Glysing2-Oct-06 22:33 
QuestionConsume Vc++ code from c# application Pin
pradsat2-Oct-06 21:46
pradsat2-Oct-06 21:46 
AnswerRe: Consume Vc++ code from c# application Pin
Nader Elshehabi3-Oct-06 1:54
Nader Elshehabi3-Oct-06 1:54 
Question.net 2.0 framework not intalled error Pin
sanki7792-Oct-06 21:37
sanki7792-Oct-06 21:37 
AnswerRe: .net 2.0 framework not intalled error Pin
Rahul.RK3-Oct-06 1:33
Rahul.RK3-Oct-06 1:33 
AnswerRe: .net 2.0 framework not intalled error Pin
Colin Angus Mackay3-Oct-06 2:54
Colin Angus Mackay3-Oct-06 2:54 
QuestionSetting Treeview to another Treeview Pin
smarttom992-Oct-06 18:54
smarttom992-Oct-06 18:54 
AnswerRe: Setting Treeview to another Treeview Pin
Nader Elshehabi2-Oct-06 19:16
Nader Elshehabi2-Oct-06 19:16 
Hello

TreeViews are reference types. That means that TV1 = TV2 will only copy the reference to the same object, but at the end they are still one thing. If you change anything in TV1, it will be also changed in TV2.

To copy the whole NodesCollection of one TreeView to another

TreeNode[] TV1Nodes = new TreeNode[TV1.Nodes.Count];
TV1.Nodes.CopyTo(TV1Nodes, 0);
foreach(TreeNode Tn in TV1Nodes)
    TV2.Nodes.Add(Tn);


RegardsRose | [Rose]

QuestionI need help to learn about C# Pin
slSoftware2-Oct-06 18:39
slSoftware2-Oct-06 18:39 
AnswerRe: I need help to learn about C# Pin
Nader Elshehabi2-Oct-06 19:11
Nader Elshehabi2-Oct-06 19:11 
GeneralRe: I need help to learn about C# Pin
slSoftware2-Oct-06 19:27
slSoftware2-Oct-06 19:27 
GeneralRe: I need help to learn about C# Pin
snowlin3-Oct-06 2:08
snowlin3-Oct-06 2:08 
GeneralRe: I need help to learn about C# Pin
Wolf923-Oct-06 22:45
Wolf923-Oct-06 22:45 
GeneralRe: I need help to learn about C# Pin
snowlin4-Oct-06 2:02
snowlin4-Oct-06 2:02 
QuestionOn what occassions would a form not recognize double click message? Pin
dy132-Oct-06 18:38
dy132-Oct-06 18:38 
AnswerRe: On what occassions would a form not recognize double click message? Pin
Nader Elshehabi2-Oct-06 19:22
Nader Elshehabi2-Oct-06 19:22 
GeneralRe: On what occassions would a form not recognize double click message? Pin
dy132-Oct-06 19:39
dy132-Oct-06 19:39 
GeneralRe: On what occassions would a form not recognize double click message? Pin
Nader Elshehabi3-Oct-06 1:51
Nader Elshehabi3-Oct-06 1:51 
QuestionHow to write a C# dll to be called in Delphi7 Pin
luvcloud2-Oct-06 17:17
luvcloud2-Oct-06 17:17 
AnswerRe: How to write a C# dll to be called in Delphi7 Pin
Nader Elshehabi2-Oct-06 18:28
Nader Elshehabi2-Oct-06 18:28 
GeneralRe: How to write a C# dll to be called in Delphi7 Pin
luvcloud2-Oct-06 18:34
luvcloud2-Oct-06 18:34 
GeneralRe: How to write a C# dll to be called in Delphi7 Pin
Nader Elshehabi2-Oct-06 19:07
Nader Elshehabi2-Oct-06 19:07 
GeneralRe: How to write a C# dll to be called in Delphi7 Pin
Tim Wri2-Oct-06 23:05
Tim Wri2-Oct-06 23:05 
QuestionCrystal Reports single field Pin
StyrofoamSUV2-Oct-06 17:17
StyrofoamSUV2-Oct-06 17:17 
AnswerRe: Crystal Reports single field Pin
StyrofoamSUV4-Oct-06 7:55
StyrofoamSUV4-Oct-06 7:55 

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.