Click here to Skip to main content
15,904,416 members
Home / Discussions / C#
   

C#

 
GeneralRe: HTTP URL question Pin
Dave Kreskowiak19-Aug-04 5:46
mveDave Kreskowiak19-Aug-04 5:46 
GeneralRe: HTTP URL question Pin
Angel Reyes19-Aug-04 19:03
Angel Reyes19-Aug-04 19:03 
GeneralRe: HTTP URL question Pin
eggie519-Aug-04 11:36
eggie519-Aug-04 11:36 
GeneralRe: HTTP URL question Pin
Angel Reyes19-Aug-04 18:56
Angel Reyes19-Aug-04 18:56 
GeneralDROP a database with users connected Pin
Christian Graus18-Aug-04 13:55
protectorChristian Graus18-Aug-04 13:55 
GeneralRe: DROP a database with users connected Pin
Nick Parker19-Aug-04 5:52
protectorNick Parker19-Aug-04 5:52 
GeneralRe: DROP a database with users connected Pin
Christian Graus19-Aug-04 11:52
protectorChristian Graus19-Aug-04 11:52 
GeneralRe: DROP a database with users connected Pin
Nick Parker19-Aug-04 12:41
protectorNick Parker19-Aug-04 12:41 
GeneralRe: DROP a database with users connected Pin
Christian Graus19-Aug-04 12:52
protectorChristian Graus19-Aug-04 12:52 
GeneralVisual Inheritance Problem Pin
jawwadalam18-Aug-04 11:10
jawwadalam18-Aug-04 11:10 
GeneralHierarchical DataGrid Pin
dekhle18-Aug-04 9:55
dekhle18-Aug-04 9:55 
GeneralRe: Hierarchical DataGrid Pin
Nick Parker18-Aug-04 11:00
protectorNick Parker18-Aug-04 11:00 
GeneralAutomation add-in inherited functions: van Drimmelen Pin
cestetson18-Aug-04 9:36
cestetson18-Aug-04 9:36 
GeneralRe: Automation add-in inherited functions: van Drimmelen Pin
Nick Parker18-Aug-04 10:29
protectorNick Parker18-Aug-04 10:29 
GeneralRe: Automation add-in inherited functions: van Drimmelen Pin
cestetson18-Aug-04 13:14
cestetson18-Aug-04 13:14 
GeneralUsing one dataSet for many forms. Pin
CIBIS18-Aug-04 8:49
CIBIS18-Aug-04 8:49 
GeneralRe: Using one dataSet for many forms. Pin
sreejith ss nair18-Aug-04 17:12
sreejith ss nair18-Aug-04 17:12 
GeneralDrag and drop problem.... Pin
LongRange.Shooter18-Aug-04 7:23
LongRange.Shooter18-Aug-04 7:23 
GeneralRe: Drag and drop problem.... Pin
LongRange.Shooter20-Aug-04 3:17
LongRange.Shooter20-Aug-04 3:17 
GeneralStartPosition=CenterParent doesn't work half the time Pin
elena1234518-Aug-04 6:43
elena1234518-Aug-04 6:43 
GeneralRe: StartPosition=CenterParent doesn't work half the time Pin
LongRange.Shooter18-Aug-04 7:27
LongRange.Shooter18-Aug-04 7:27 
GeneralRe: StartPosition=CenterParent doesn't work half the time Pin
Nick Parker18-Aug-04 7:59
protectorNick Parker18-Aug-04 7:59 
GeneralRe: StartPosition=CenterParent doesn't work half the time Pin
partyganger18-Aug-04 12:44
partyganger18-Aug-04 12:44 
Exactly. If you set the CenterParent property before the parent is known, it will have no effect.

For instance If you set the CenterParent in the designer, it will be set when the constructor calls the designer generated code, at which point the parent is still unknown. The way to go here is either:

Create a constructor that takes the parent form as a parameter, and then set the Parent property before calling the designer generated code

Or:
When you create the child form in the parent form, first set the Parent Property, then the StartPosition property and then call the Show(Dialog) method.
GeneralSyntax Error Pin
DotNet18-Aug-04 6:43
DotNet18-Aug-04 6:43 
GeneralRe: Syntax Error Pin
leppie18-Aug-04 7:10
leppie18-Aug-04 7:10 

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.