PrintPreview Dialog
-
I have a printpreview dialog,How can I make it be maximize when it create or set size for?It seems that this dialog do not have those properties? Mazy "So,so you think you can tell, Heaven from Hell, Blue skies from pain,... How I wish,how I wish you were here."
Wish You Were Here-Pink Floyd-1975 -
I have a printpreview dialog,How can I make it be maximize when it create or set size for?It seems that this dialog do not have those properties? Mazy "So,so you think you can tell, Heaven from Hell, Blue skies from pain,... How I wish,how I wish you were here."
Wish You Were Here-Pink Floyd-1975According to MSDN it has the Size property available to it. I don't have a project setup where I can test this though. James Sonork ID: 100.11138 - Hasaki "I left there in the morning with their God tucked underneath my arm their half-assed smiles and the book of rules. So I asked this God a question and by way of firm reply, He said - I'm not the kind you have to wind up on Sundays." "Wind Up" from Aqualung, Jethro Tull 1971
-
According to MSDN it has the Size property available to it. I don't have a project setup where I can test this though. James Sonork ID: 100.11138 - Hasaki "I left there in the morning with their God tucked underneath my arm their half-assed smiles and the book of rules. So I asked this God a question and by way of firm reply, He said - I'm not the kind you have to wind up on Sundays." "Wind Up" from Aqualung, Jethro Tull 1971
-
Yes,that exists,but what about Maximize and Minimize? Mazy "So,so you think you can tell, Heaven from Hell, Blue skies from pain,... How I wish,how I wish you were here."
Wish You Were Here-Pink Floyd-1975Set the
WindowState
property toFormWindowState.Maximized
:) James Sonork ID: 100.11138 - Hasaki "I left there in the morning with their God tucked underneath my arm their half-assed smiles and the book of rules. So I asked this God a question and by way of firm reply, He said - I'm not the kind you have to wind up on Sundays." "Wind Up" from Aqualung, Jethro Tull 1971 -
Set the
WindowState
property toFormWindowState.Maximized
:) James Sonork ID: 100.11138 - Hasaki "I left there in the morning with their God tucked underneath my arm their half-assed smiles and the book of rules. So I asked this God a question and by way of firm reply, He said - I'm not the kind you have to wind up on Sundays." "Wind Up" from Aqualung, Jethro Tull 1971James T. Johnson wrote: WindowState I know it James,the point is that I can't find it for PrintPreviewDialog,thats the reason I said it does not exist:( Have you test it for PrintPreviewDialog? Mazy "So,so you think you can tell, Heaven from Hell, Blue skies from pain,... How I wish,how I wish you were here."
Wish You Were Here-Pink Floyd-1975 -
James T. Johnson wrote: WindowState I know it James,the point is that I can't find it for PrintPreviewDialog,thats the reason I said it does not exist:( Have you test it for PrintPreviewDialog? Mazy "So,so you think you can tell, Heaven from Hell, Blue skies from pain,... How I wish,how I wish you were here."
Wish You Were Here-Pink Floyd-1975The documentation shows it being there; but Intellisense doesn't.... Oddly enough this compiles and works correctly.
PrintPreviewDialog foo = new PrintPreviewDialog();
foo.WindowState = FormWindowState.Maximized;I still don't know why some items don't appear in IntelliSense, especially when its parent class contains something and its not changed in the sub-class. James Sonork ID: 100.11138 - Hasaki "I left there in the morning with their God tucked underneath my arm their half-assed smiles and the book of rules. So I asked this God a question and by way of firm reply, He said - I'm not the kind you have to wind up on Sundays." "Wind Up" from Aqualung, Jethro Tull 1971
-
The documentation shows it being there; but Intellisense doesn't.... Oddly enough this compiles and works correctly.
PrintPreviewDialog foo = new PrintPreviewDialog();
foo.WindowState = FormWindowState.Maximized;I still don't know why some items don't appear in IntelliSense, especially when its parent class contains something and its not changed in the sub-class. James Sonork ID: 100.11138 - Hasaki "I left there in the morning with their God tucked underneath my arm their half-assed smiles and the book of rules. So I asked this God a question and by way of firm reply, He said - I'm not the kind you have to wind up on Sundays." "Wind Up" from Aqualung, Jethro Tull 1971
James T. Johnson wrote: I still don't know why some items don't appear in IntelliSense, especially when its parent class contains something and its not changed in the sub-class. Me too. Thanks again James.:) Mazy "So,so you think you can tell, Heaven from Hell, Blue skies from pain,... How I wish,how I wish you were here."
Wish You Were Here-Pink Floyd-1975