Click here to Skip to main content
15,896,457 members
Home / Discussions / C#
   

C#

 
GeneralRe: The path is not a legal form Pin
Heath Stewart16-Jan-04 5:19
protectorHeath Stewart16-Jan-04 5:19 
QuestionWhen is my window hidden? Pin
Rhodri Jenkins15-Jan-04 23:02
Rhodri Jenkins15-Jan-04 23:02 
AnswerRe: When is my window hidden? Pin
occcy16-Jan-04 0:51
occcy16-Jan-04 0:51 
You can test the window against each other window of your MDI Application.
Calculate the boundary rectangle of the window and check, wether the boundary rectangle of the window to test is covered:


<br />
Rectangle testrect=new Rectangle(testwin.Left,testwin.Top,testwin.Width,testwin.Height);<br />
<br />
foreach(Form f in MDIChildren)<br />
{<br />
  Rectangle winrect = new Rectangle(f.Left,f.Top,f.Width,f.Height);<br />
  <br />
  // some code to check, wether the testrect intersects winrect or lies entirely within the winrect<br />
  // if((winrect.left<=testrect.left)&& ...<br />
<br />
}<br />

GeneralRe: When is my window hidden? Pin
Jeremy Kimball16-Jan-04 6:52
Jeremy Kimball16-Jan-04 6:52 
GeneralSmtpMail question Pin
Mazdak15-Jan-04 21:59
Mazdak15-Jan-04 21:59 
GeneralRe: SmtpMail question Pin
Heath Stewart16-Jan-04 4:38
protectorHeath Stewart16-Jan-04 4:38 
GeneralRe: SmtpMail question Pin
Mazdak16-Jan-04 4:48
Mazdak16-Jan-04 4:48 
GeneralRe: SmtpMail question Pin
Heath Stewart16-Jan-04 4:52
protectorHeath Stewart16-Jan-04 4:52 
GeneralRe: SmtpMail question Pin
Mazdak16-Jan-04 5:13
Mazdak16-Jan-04 5:13 
GeneralRe: SmtpMail question Pin
Rocky Moore16-Jan-04 8:35
Rocky Moore16-Jan-04 8:35 
GeneralRe: SmtpMail question Pin
Mazdak16-Jan-04 8:39
Mazdak16-Jan-04 8:39 
GeneralRe: SmtpMail question Pin
Rocky Moore16-Jan-04 19:13
Rocky Moore16-Jan-04 19:13 
GeneralRe: SmtpMail question Pin
Mazdak16-Jan-04 19:19
Mazdak16-Jan-04 19:19 
GeneralRe: SmtpMail question Pin
Rocky Moore16-Jan-04 19:34
Rocky Moore16-Jan-04 19:34 
GeneralRe: SmtpMail question Pin
Mazdak16-Jan-04 20:39
Mazdak16-Jan-04 20:39 
GeneralRe: SmtpMail question Pin
Mazdak16-Jan-04 22:14
Mazdak16-Jan-04 22:14 
GeneralRe: SmtpMail question Pin
Mazdak22-Jan-04 20:43
Mazdak22-Jan-04 20:43 
GeneralRe: SmtpMail question Pin
Mazdak22-Jan-04 20:43
Mazdak22-Jan-04 20:43 
GeneralRe: SmtpMail question Pin
Rocky Moore23-Jan-04 3:30
Rocky Moore23-Jan-04 3:30 
GeneralRe: SmtpMail question Pin
Mazdak23-Jan-04 4:21
Mazdak23-Jan-04 4:21 
Generalauthorize.net Pin
Biebster15-Jan-04 21:55
Biebster15-Jan-04 21:55 
GeneralRe: authorize.net Pin
Heath Stewart16-Jan-04 4:16
protectorHeath Stewart16-Jan-04 4:16 
GeneralConfigure folder permission and virtual directory Pin
SandyJ15-Jan-04 21:07
SandyJ15-Jan-04 21:07 
GeneralRe: Configure folder permission and virtual directory Pin
Mazdak15-Jan-04 22:10
Mazdak15-Jan-04 22:10 
GeneralOffice development problem Pin
miniztry15-Jan-04 14:55
miniztry15-Jan-04 14:55 

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.