IDE Controls Help
-
Hi all, Is there someone who know how make these 2 things 1: make a tooltip over over the cursor when someone enter a function name like in VStudio ? 2: how make a listbox appear when someone enter a "." at the end of a variable name like in VStudio ? Thanks a lot BLaZeX
-
Hi all, Is there someone who know how make these 2 things 1: make a tooltip over over the cursor when someone enter a function name like in VStudio ? 2: how make a listbox appear when someone enter a "." at the end of a variable name like in VStudio ? Thanks a lot BLaZeX
BLaZiNiX wrote: 2: how make a listbox appear when someone enter a "." at the end of a variable name like in VStudio ? You could handle events like TextChanged and according to waht was typed, pop up menus. Jared jparsons@jparsons.org www.prism.gatech.edu/~gte477n
-
BLaZiNiX wrote: 2: how make a listbox appear when someone enter a "." at the end of a variable name like in VStudio ? You could handle events like TextChanged and according to waht was typed, pop up menus. Jared jparsons@jparsons.org www.prism.gatech.edu/~gte477n
-
and how exactly I can find that the string I typed is the name of a variable and after I wrote a "." pop the list at the current cursor position ?
Look at :
this.GetType().FindMembers()
MYrc : A .NET IRC client with C# Plugin Capabilities. See http://sourceforge.net/projects/myrc for more info. :-D -
Look at :
this.GetType().FindMembers()
MYrc : A .NET IRC client with C# Plugin Capabilities. See http://sourceforge.net/projects/myrc for more info. :-DTo add :) Generally the
System.Reflection
namespace should provide most of the answers you need. :) MYrc : A .NET IRC client with C# Plugin Capabilities. See http://sourceforge.net/projects/myrc for more info. :-D