Click here to Skip to main content
15,897,371 members
Home / Discussions / C#
   

C#

 
Generalread binary registry key Pin
peterchen3-Apr-03 12:12
peterchen3-Apr-03 12:12 
GeneralRe: read binary registry key Pin
J. Dunlap4-Apr-03 7:08
J. Dunlap4-Apr-03 7:08 
GeneralProblems with ".Equals()" in listview code Pin
vlusardi3-Apr-03 12:08
vlusardi3-Apr-03 12:08 
GeneralCrystal Report distribution Pin
Mmithat3-Apr-03 12:05
Mmithat3-Apr-03 12:05 
GeneralConnection Gateway Pin
0siris3-Apr-03 11:49
0siris3-Apr-03 11:49 
QuestionTreeView and right click select? Pin
se99ts3-Apr-03 10:17
se99ts3-Apr-03 10:17 
AnswerRe: TreeView and right click select? Pin
mikasa3-Apr-03 11:02
mikasa3-Apr-03 11:02 
AnswerRe: TreeView and right click select? Pin
Leon van Wyk6-Apr-03 11:22
professionalLeon van Wyk6-Apr-03 11:22 
Use the MouseUp Event for the TreeView and get the current mouse position.
Then you can Use the TreeView.GetNodeAt(X,Y), here follows the code.

The TreeView was called FolderTreeView!


private void FolderTreeView_MouseUp
(object sender ,System.Windows.Forms.MouseEventArgs e)
{//MouseButton Released

try
{
//Select the Node Under the Mouse Cursor as Current Node
FolderTreeView.SelectedNode = FolderTreeView.GetNodeAt(e.X,e.Y);
}
}

Leon v Wyk
GeneralCalling C# function within javascript Pin
gekoscan3-Apr-03 8:26
gekoscan3-Apr-03 8:26 
GeneralRe: Calling C# function within javascript Pin
David Stone3-Apr-03 9:33
sitebuilderDavid Stone3-Apr-03 9:33 
GeneralProgramming Crystal Report that as Web Service... Pin
frontad3-Apr-03 8:21
frontad3-Apr-03 8:21 
GeneralMS Officeto XML Pin
theJazzyBrain3-Apr-03 8:04
theJazzyBrain3-Apr-03 8:04 
GeneralRe: MS Officeto XML Pin
Feng Qin4-Apr-03 2:13
Feng Qin4-Apr-03 2:13 
GeneralRe: MS Officeto XML Pin
theJazzyBrain6-Apr-03 21:56
theJazzyBrain6-Apr-03 21:56 
GeneralRe: MS Officeto XML Pin
Feng Qin7-Apr-03 18:11
Feng Qin7-Apr-03 18:11 
QuestionHow do you apply attributes to parameters? Pin
Kevin McFarlane3-Apr-03 6:30
Kevin McFarlane3-Apr-03 6:30 
AnswerRe: How do you apply attributes to parameters? Pin
David Stone3-Apr-03 7:20
sitebuilderDavid Stone3-Apr-03 7:20 
GeneralRe: How do you apply attributes to parameters? Pin
Kevin McFarlane3-Apr-03 10:23
Kevin McFarlane3-Apr-03 10:23 
GeneralRe: How do you apply attributes to parameters? Pin
David Stone3-Apr-03 13:40
sitebuilderDavid Stone3-Apr-03 13:40 
GeneralC# / XML attributes and values Pin
econner3-Apr-03 2:44
econner3-Apr-03 2:44 
GeneralRe: C# / XML attributes and values Pin
Oleksandr Kucherenko3-Apr-03 4:28
Oleksandr Kucherenko3-Apr-03 4:28 
GeneralRe: C# / XML attributes and values Pin
econner3-Apr-03 6:54
econner3-Apr-03 6:54 
QuestionCan this be done ? Pin
Steve Murrell3-Apr-03 1:36
Steve Murrell3-Apr-03 1:36 
AnswerRe: Can this be done ? Pin
neroknights3-Apr-03 9:23
neroknights3-Apr-03 9:23 
GeneralRe: Can this be done ? Pin
Steve Murrell3-Apr-03 21:30
Steve Murrell3-Apr-03 21:30 

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.