Click here to Skip to main content
15,886,693 members
Home / Discussions / C#
   

C#

 
AnswerRe: form can not disappear after code visible=false Pin
Dave Kreskowiak13-Jun-09 21:49
mveDave Kreskowiak13-Jun-09 21:49 
Questioncrystal report data not showing Pin
neodeaths13-Jun-09 18:35
neodeaths13-Jun-09 18:35 
AnswerRe: crystal report data not showing Pin
KIDYA13-Jun-09 19:20
KIDYA13-Jun-09 19:20 
GeneralRe: crystal report data not showing Pin
neodeaths13-Jun-09 20:27
neodeaths13-Jun-09 20:27 
Questiontablet pc application Pin
radhikasharma13-Jun-09 10:40
radhikasharma13-Jun-09 10:40 
Questionshow tooltip even if treeview doesn't have focus? Pin
FocusedWolf13-Jun-09 9:41
FocusedWolf13-Jun-09 9:41 
AnswerRe: show tooltip even if treeview doesn't have focus? Pin
Mycroft Holmes13-Jun-09 16:23
professionalMycroft Holmes13-Jun-09 16:23 
GeneralRe: show tooltip even if treeview doesn't have focus? Pin
FocusedWolf13-Jun-09 18:58
FocusedWolf13-Jun-09 18:58 
yes in my derived treeview i override OnMouseMove and this code does seem to execute even if the control isnt focused... atleast the breakpoint fires when i slide the mouse over the non-focused control. It's just the call to toolTip.Show(...) which fails to display a tooltip when the control has no focus. hmm.

ok i checked out the Tooltip class with reflector and i see the problem. "IsWindowActive"... microsoft explicitly checks for being "active" before allowing a tooltip to show... i'll do more digging to see if their's an acceptable alternative to being focused.

//from .net framework ToolTip class
public void Show(string text, IWin32Window window, int x, int y)
{
if (window == null)
{
throw new ArgumentNullException("window");
}
if (this.HasAllWindowsPermission && this.IsWindowActive(window))
{
NativeMethods.RECT rect = new NativeMethods.RECT();
UnsafeNativeMethods.GetWindowRect(new HandleRef(window, Control.GetSafeHandle(window)), ref rect);
int pointX = rect.left + x;
int pointY = rect.top + y;
this.SetTrackPosition(pointX, pointY);
this.SetTool(window, text, TipInfo.Type.Absolute, new Point(pointX, pointY));
}
}
GeneralRe: show tooltip even if treeview doesn't have focus? Pin
Mycroft Holmes13-Jun-09 21:07
professionalMycroft Holmes13-Jun-09 21:07 
GeneralRe: show tooltip even if treeview doesn't have focus? Pin
FocusedWolf13-Jun-09 22:01
FocusedWolf13-Jun-09 22:01 
QuestionRead from process Pin
thomaxz.tc13-Jun-09 9:37
thomaxz.tc13-Jun-09 9:37 
AnswerRe: Read from process Pin
Luc Pattyn13-Jun-09 10:12
sitebuilderLuc Pattyn13-Jun-09 10:12 
GeneralRe: Read from process Pin
thomaxz.tc13-Jun-09 12:29
thomaxz.tc13-Jun-09 12:29 
GeneralRe: Read from process Pin
Luc Pattyn13-Jun-09 12:37
sitebuilderLuc Pattyn13-Jun-09 12:37 
GeneralRe: Read from process Pin
thomaxz.tc13-Jun-09 12:47
thomaxz.tc13-Jun-09 12:47 
GeneralRe: Read from process Pin
Luc Pattyn13-Jun-09 13:37
sitebuilderLuc Pattyn13-Jun-09 13:37 
GeneralRe: Read from process Pin
thomaxz.tc13-Jun-09 23:32
thomaxz.tc13-Jun-09 23:32 
Questionload a lot of Images to memory Pin
nryk13-Jun-09 8:57
nryk13-Jun-09 8:57 
AnswerRe: load a lot of Images to memory Pin
Luc Pattyn13-Jun-09 9:37
sitebuilderLuc Pattyn13-Jun-09 9:37 
GeneralRe: load a lot of Images to memory Pin
harold aptroot13-Jun-09 11:55
harold aptroot13-Jun-09 11:55 
GeneralRe: load a lot of Images to memory Pin
Luc Pattyn13-Jun-09 14:29
sitebuilderLuc Pattyn13-Jun-09 14:29 
GeneralRe: load a lot of Images to memory Pin
harold aptroot13-Jun-09 14:36
harold aptroot13-Jun-09 14:36 
GeneralRe: load a lot of Images to memory Pin
Luc Pattyn13-Jun-09 15:17
sitebuilderLuc Pattyn13-Jun-09 15:17 
AnswerRe: load a lot of Images to memory Pin
nryk13-Jun-09 18:05
nryk13-Jun-09 18:05 
GeneralRe: load a lot of Images to memory Pin
Dave Kreskowiak13-Jun-09 21:46
mveDave Kreskowiak13-Jun-09 21:46 

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.