Click here to Skip to main content
15,891,253 members
Home / Discussions / C#
   

C#

 
GeneralRe: On canceling Setup, Application must Exit Pin
Christian Graus19-May-05 17:27
protectorChristian Graus19-May-05 17:27 
GeneralRe: On canceling Setup, Application must Exit Pin
lovelylooney19-May-05 17:44
lovelylooney19-May-05 17:44 
GeneralRe: On canceling Setup, Application must Exit Pin
Christian Graus19-May-05 17:46
protectorChristian Graus19-May-05 17:46 
GeneralRe: On canceling Setup, Application must Exit Pin
lovelylooney19-May-05 18:38
lovelylooney19-May-05 18:38 
GeneralRe: On canceling Setup, Application must Exit Pin
Christian Graus19-May-05 18:39
protectorChristian Graus19-May-05 18:39 
GeneralAdd images to Tree View nodes dynamically Pin
lovelylooney19-May-05 16:42
lovelylooney19-May-05 16:42 
GeneralRe: Add images to Tree View nodes dynamically Pin
pubududilena19-May-05 19:14
pubududilena19-May-05 19:14 
GeneralRe: Add images to Tree View nodes dynamically Pin
Kujtim Hyseni19-May-05 22:39
Kujtim Hyseni19-May-05 22:39 
Well you have to follow some steps first. Create the node and then add the needed parameters

TreeNode tnNew;
TreeView oTv;

tnNew = oTv.Nodes.Add("Text to appear in the node ");
tnNew.Tag = "Tag of the node - it's ID";
tnNew.ImageIndex = 0; // Index of the selected image
tnNew.SelectedImageIndex = tnNew.ImageIndex;
GeneralRe: Add images to Tree View nodes dynamically Pin
lovelylooney19-May-05 23:09
lovelylooney19-May-05 23:09 
GeneralRe: Add images to Tree View nodes dynamically Pin
mav.northwind20-May-05 4:18
mav.northwind20-May-05 4:18 
Questionwhat is the fastest in longterm? (texbox/listbox) Pin
Snowjim19-May-05 14:15
Snowjim19-May-05 14:15 
AnswerRe: what is the fastest in longterm? (texbox/listbox) Pin
rudy.net19-May-05 17:58
rudy.net19-May-05 17:58 
AnswerRe: what is the fastest in longterm? (texbox/listbox) Pin
mav.northwind20-May-05 4:24
mav.northwind20-May-05 4:24 
QuestionTextBox? Pin
Snowjim19-May-05 14:07
Snowjim19-May-05 14:07 
AnswerRe: TextBox? Pin
Christian Graus19-May-05 16:28
protectorChristian Graus19-May-05 16:28 
GeneralRe: TextBox? Pin
Snowjim19-May-05 22:13
Snowjim19-May-05 22:13 
GeneralRe: TextBox? Pin
Christian Graus22-May-05 13:01
protectorChristian Graus22-May-05 13:01 
QuestionThe Mouse??? Pin
oakcool19-May-05 13:38
oakcool19-May-05 13:38 
AnswerRe: The Mouse??? PInvoke way Pin
DavidNohejl19-May-05 14:10
DavidNohejl19-May-05 14:10 
GeneralRe: The Mouse??? PInvoke way Pin
Stefan Troschuetz19-May-05 21:55
Stefan Troschuetz19-May-05 21:55 
GeneralRe: The Mouse??? PInvoke way Pin
DavidNohejl20-May-05 0:48
DavidNohejl20-May-05 0:48 
GeneralRe: The Mouse??? PInvoke way Pin
oakcool20-May-05 17:31
oakcool20-May-05 17:31 
GeneralRe: The Mouse??? PInvoke way Pin
DavidNohejl21-May-05 1:21
DavidNohejl21-May-05 1:21 
AnswerRe: The Mouse??? Pin
Stefan Troschuetz19-May-05 21:58
Stefan Troschuetz19-May-05 21:58 
GeneralVertically sizing RichEdit to match text Pin
tbrewer19-May-05 12:03
tbrewer19-May-05 12:03 

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.