Click here to Skip to main content
15,915,328 members
Home / Discussions / C#
   

C#

 
GeneralRe: Controls across forms? Pin
Brian Olej23-Apr-02 9:27
Brian Olej23-Apr-02 9:27 
GeneralRe: Controls across forms? Pin
James T. Johnson24-Apr-02 2:10
James T. Johnson24-Apr-02 2:10 
GeneralRe: Controls across forms? Pin
Brian Olej24-Apr-02 2:31
Brian Olej24-Apr-02 2:31 
GeneralHit Test Pin
23-Apr-02 6:47
suss23-Apr-02 6:47 
GeneralRe: Hit Test Pin
Nick Parker23-Apr-02 8:00
protectorNick Parker23-Apr-02 8:00 
GeneralRe: Hit Test Pin
Neil Van Note23-Apr-02 8:04
Neil Van Note23-Apr-02 8:04 
GeneralRe: GetChildAtPoint *ADVANCED!* Pin
23-Apr-02 9:36
suss23-Apr-02 9:36 
GeneralRe: GetChildAtPoint *ADVANCED!* Pin
Neil Van Note23-Apr-02 10:10
Neil Van Note23-Apr-02 10:10 
Point pt		= new Point(x, y);
Control parent	= this;
Control child	= parent.GetChildAtPoint(pt);
while (null != child)
{
	pt = parent.PointToScreen(pt);
	pt = child.PointToClient(pt);
	parent = child;
	child = parent.GetChildAtPoint(pt);
}
// parent now contains the control at x,y


BTW, If there is a functional equiv. to the MapWindowPoints API, I am all ears...
GeneralRe: GetChildAtPoint *ADVANCED!* Pin
Neil Van Note23-Apr-02 18:29
Neil Van Note23-Apr-02 18:29 
GeneralA deeper explaination Pin
23-Apr-02 9:49
suss23-Apr-02 9:49 
GeneralConectionStringIII Pin
Mazdak23-Apr-02 5:03
Mazdak23-Apr-02 5:03 
GeneralRe: ConectionStringIII Pin
Neil Van Note23-Apr-02 8:31
Neil Van Note23-Apr-02 8:31 
GeneralRe: ConectionStringIII Pin
Neil Van Note23-Apr-02 8:39
Neil Van Note23-Apr-02 8:39 
GeneralRe: ConectionStringIII Pin
Mazdak23-Apr-02 19:12
Mazdak23-Apr-02 19:12 
GeneralRe: ConectionStringIII Pin
Neil Van Note23-Apr-02 19:20
Neil Van Note23-Apr-02 19:20 
GeneralSystem.Net.dll does not exist! Pin
23-Apr-02 3:58
suss23-Apr-02 3:58 
GeneralRe: System.Net.dll does not exist! Pin
Gavin_Mannion23-Apr-02 4:10
Gavin_Mannion23-Apr-02 4:10 
GeneralRe: System.Net.dll does not exist! Pin
James T. Johnson23-Apr-02 4:19
James T. Johnson23-Apr-02 4:19 
GeneralRe: System.Net.dll does not exist! Pin
23-Apr-02 4:38
suss23-Apr-02 4:38 
GeneralRe: System.Net.dll does not exist! Pin
James T. Johnson23-Apr-02 5:15
James T. Johnson23-Apr-02 5:15 
GeneralRe: System.Net.dll does not exist! Pin
Kannan Kalyanaraman24-Apr-02 2:57
Kannan Kalyanaraman24-Apr-02 2:57 
General!!!Cookies!!! Pin
Gavin_Mannion23-Apr-02 2:49
Gavin_Mannion23-Apr-02 2:49 
GeneralRe: !!!Cookies!!! Pin
James T. Johnson23-Apr-02 5:09
James T. Johnson23-Apr-02 5:09 
GeneralRe: !!!Cookies!!! Pin
Gavin_Mannion23-Apr-02 5:19
Gavin_Mannion23-Apr-02 5:19 
GeneralRe: !!!Cookies!!! Pin
James T. Johnson23-Apr-02 8:36
James T. Johnson23-Apr-02 8:36 

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.