Click here to Skip to main content
15,905,558 members
Home / Discussions / C#
   

C#

 
GeneralRe: Data crypting at C# Pin
_c2h5oh_21-Feb-09 7:01
_c2h5oh_21-Feb-09 7:01 
GeneralRe: Data crypting at C# Pin
harold aptroot21-Feb-09 6:47
harold aptroot21-Feb-09 6:47 
GeneralRe: Data crypting at C# Pin
_c2h5oh_21-Feb-09 7:03
_c2h5oh_21-Feb-09 7:03 
GeneralRe: Data crypting at C# Pin
Dave Kreskowiak21-Feb-09 7:35
mveDave Kreskowiak21-Feb-09 7:35 
GeneralRe: Data crypting at C# Pin
_c2h5oh_21-Feb-09 8:14
_c2h5oh_21-Feb-09 8:14 
GeneralRe: Data crypting at C# Pin
Dave Kreskowiak21-Feb-09 10:48
mveDave Kreskowiak21-Feb-09 10:48 
GeneralRe: Data crypting at C# Pin
_c2h5oh_21-Feb-09 20:38
_c2h5oh_21-Feb-09 20:38 
QuestionChanging properties of more than one control at a time? Pin
High0ctane21-Feb-09 3:50
High0ctane21-Feb-09 3:50 
AnswerRe: Changing properties of more than one control at a time? Pin
Luc Pattyn21-Feb-09 4:26
sitebuilderLuc Pattyn21-Feb-09 4:26 
GeneralRe: Changing properties of more than one control at a time? Pin
Xmen Real 21-Feb-09 7:27
professional Xmen Real 21-Feb-09 7:27 
AnswerRe: Changing properties of more than one control at a time? Pin
thrashead21-Feb-09 4:26
thrashead21-Feb-09 4:26 
AnswerRe: Changing properties of more than one control at a time? Pin
PIEBALDconsult21-Feb-09 10:44
mvePIEBALDconsult21-Feb-09 10:44 
AnswerRe: Changing properties of more than one control at a time? Pin
High0ctane22-Feb-09 8:50
High0ctane22-Feb-09 8:50 
QuestionHow to retrieve image from local resource ? Pin
hdv21221-Feb-09 2:01
hdv21221-Feb-09 2:01 
AnswerRe: How to retrieve image from local resource ? Pin
Kristian Sixhøj21-Feb-09 2:07
Kristian Sixhøj21-Feb-09 2:07 
GeneralRe: How to retrieve image from local resource ? Pin
hdv21221-Feb-09 2:51
hdv21221-Feb-09 2:51 
AnswerRe: How to retrieve image from local resource ? Pin
Luc Pattyn21-Feb-09 2:21
sitebuilderLuc Pattyn21-Feb-09 2:21 
GeneralRe: How to retrieve image from local resource ? Pin
hdv21221-Feb-09 2:54
hdv21221-Feb-09 2:54 
AnswerRe: How to retrieve image from local resource ? Pin
Anthony Mushrow21-Feb-09 3:03
professionalAnthony Mushrow21-Feb-09 3:03 
GeneralRe: How to retrieve image from local resource ? Pin
hdv21221-Feb-09 4:44
hdv21221-Feb-09 4:44 
QuestionPlace Form windows at certain position in MDI Application Pin
hardsoft21-Feb-09 1:48
hardsoft21-Feb-09 1:48 
AnswerRe: Place Form windows at certain position in MDI Application Pin
paas21-Feb-09 5:28
paas21-Feb-09 5:28 
In the Activate or Shown Event of the child form you could probably include code like the following:

this.Location = new Point(this.ParentForm.Width - (this.Width + 10), 0);


Of course, if you put the code in the Activate event you will want to ensure the code only executes the first time the form activates. That should get your MDI child in the ballpark of the right corner of the parent form. You might have to play around with the value you add to this.Width a little bit.

Good luck.
QuestionHow determine redirect url Pin
Meysam Mahfouzi21-Feb-09 1:31
Meysam Mahfouzi21-Feb-09 1:31 
QuestionGenerate WM_DROPFILES and send it to a Control Pin
steffen_dec21-Feb-09 0:24
steffen_dec21-Feb-09 0:24 
AnswerRe: Generate WM_DROPFILES and send it to a Control Pin
pipicato18-Oct-11 23:48
pipicato18-Oct-11 23:48 

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.