Click here to Skip to main content
15,919,567 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# combo box Pin
Mohamad Al Husseiny13-Sep-05 6:52
Mohamad Al Husseiny13-Sep-05 6:52 
QuestionAuthenicating remote user using Tokens Pin
akshayswaroop12-Sep-05 18:58
akshayswaroop12-Sep-05 18:58 
AnswerRe: Authenicating remote user using Tokens Pin
Dave Kreskowiak13-Sep-05 4:39
mveDave Kreskowiak13-Sep-05 4:39 
GeneralRe: Authenicating remote user using Tokens Pin
Anonymous13-Sep-05 19:29
Anonymous13-Sep-05 19:29 
GeneralRe: Authenicating remote user using Tokens Pin
Dave Kreskowiak14-Sep-05 1:16
mveDave Kreskowiak14-Sep-05 1:16 
QuestionPreviewWord Pin
Anonymous12-Sep-05 18:40
Anonymous12-Sep-05 18:40 
QuestionHow can I start and close GPRS connect Pin
sp04.tw12-Sep-05 17:31
sp04.tw12-Sep-05 17:31 
QuestionHow to let user input the URL of the web service?? Pin
KT19823812-Sep-05 17:19
KT19823812-Sep-05 17:19 
AnswerRe: How to let user input the URL of the web service?? Pin
Andy Brummer12-Sep-05 17:49
sitebuilderAndy Brummer12-Sep-05 17:49 
QuestionNeed Help With Accessing Web Page Pin
Thaynann12-Sep-05 15:24
Thaynann12-Sep-05 15:24 
AnswerRe: Need Help With Accessing Web Page Pin
Andy Brummer12-Sep-05 17:55
sitebuilderAndy Brummer12-Sep-05 17:55 
QuestionRe: Need Help With Accessing Web Page Pin
Thaynann12-Sep-05 19:14
Thaynann12-Sep-05 19:14 
AnswerRe: Need Help With Accessing Web Page Pin
Andy Brummer13-Sep-05 6:09
sitebuilderAndy Brummer13-Sep-05 6:09 
GeneralRe: Need Help With Accessing Web Page Pin
Thaynann13-Sep-05 12:15
Thaynann13-Sep-05 12:15 
QuestionC# Removing Excel object from Task Manager Pin
dsrao12-Sep-05 14:24
dsrao12-Sep-05 14:24 
AnswerRe: C# Removing Excel object from Task Manager Pin
LeenaSo12-Sep-05 19:59
LeenaSo12-Sep-05 19:59 
AnswerRe: C# Removing Excel object from Task Manager Pin
minhpc_bk12-Sep-05 21:18
minhpc_bk12-Sep-05 21:18 
AnswerRe: C# Removing Excel object from Task Manager Pin
miah alom13-Sep-05 5:37
miah alom13-Sep-05 5:37 
GeneralRe: C# Removing Excel object from Task Manager Pin
dsrao13-Sep-05 8:23
dsrao13-Sep-05 8:23 
GeneralRe: C# Removing Excel object from Task Manager Pin
dsrao13-Sep-05 8:50
dsrao13-Sep-05 8:50 
GeneralRe: C# Removing Excel object from Task Manager Pin
Anonymous13-Sep-05 15:22
Anonymous13-Sep-05 15:22 
QuestionRead deadlock on child process Pin
brucemo12-Sep-05 13:36
brucemo12-Sep-05 13:36 
AnswerRe: Read deadlock on child process Pin
S. Senthil Kumar12-Sep-05 18:44
S. Senthil Kumar12-Sep-05 18:44 
GeneralRe: Read deadlock on child process Pin
brucemo12-Sep-05 20:04
brucemo12-Sep-05 20:04 
QuestionIssue with Form Sizing Pin
DeepToot12-Sep-05 11:57
DeepToot12-Sep-05 11:57 
I have two forms:

Form1 - loads as startup form.
Form2 = Loads when I push a button on Form1

I set the BorderStyle of Form2 as a FixedToolWindow via code AND properties grid.

I set the height and width via code AND properties grid. The height is 528, and the width is 886.

Again, I set this twice. 1) in code on the Form Load. 2) in the properties grid

When I click the button on Form1 to launch Form2 it shows up full screen.
I have the StartPosition set to 'CenterScreen' and WindowState to 'Normal'

I also tried setting the height and width of Form2 after I created a new instance of it:

Form2 frm2 = new Form2()
frm2.height = 528;
frm2.width = 886;
frm2.Show();

Still goes full screen.

But, another twist. It only does it once. Like the first time I load the app and launch it this is what happens. If I close form2 and open it back up without closing the whole application, works fine.

Any suggestions?



Steve Welborn
Software Architect

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.