Click here to Skip to main content
15,880,405 members
Home / Discussions / C#
   

C#

 
GeneralRe: How should I call an exe file using C# Pin
Saqib Razzaq29-Dec-03 22:30
Saqib Razzaq29-Dec-03 22:30 
GeneralExpand/Collapse feature in c# Pin
pc_2k1129-Dec-03 19:35
pc_2k1129-Dec-03 19:35 
GeneralRe: Expand/Collapse feature in c# Pin
Heath Stewart30-Dec-03 5:40
protectorHeath Stewart30-Dec-03 5:40 
GeneralChanging the paper size at run time Pin
Yaron K.29-Dec-03 19:32
Yaron K.29-Dec-03 19:32 
GeneralRe: Changing the paper size at run time Pin
Mazdak29-Dec-03 23:42
Mazdak29-Dec-03 23:42 
GeneralRe: Changing the paper size at run time Pin
Mehdi Moshtaghi30-Dec-03 0:27
Mehdi Moshtaghi30-Dec-03 0:27 
GeneralRe: Changing the paper size at run time Pin
Yaron K.30-Dec-03 2:25
Yaron K.30-Dec-03 2:25 
GeneralRe: Changing the paper size at run time Pin
Heath Stewart30-Dec-03 5:35
protectorHeath Stewart30-Dec-03 5:35 
You have to construct a new PaperSize like so:
private void pd_PrintPage(object sender, PrintPageEventArgs e)
{
  // I don't rem
  e.PageSettings.PaperSize =
    new PaperSize("Custom", 11.69 * 100, 16.54 * 100);
}
You should also take a look at the PrinterSetttings.PaperSizes documentation. This is a collection that contains each PaperSize that the printer supports. You can enumerate and determine if the printer supports A3 and then get that PaperSize:
foreach (PaperSize size in PrinterSettings.PaperSizes)
  if (size.Kind == PaperKind)
    return size;
return null; // or throw an Exception that A3 is not supported


 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralRe: Changing the paper size at run time Pin
IntegraSoft31-Dec-03 9:37
IntegraSoft31-Dec-03 9:37 
GeneralRe: Changing the paper size at run time Pin
Heath Stewart31-Dec-03 9:40
protectorHeath Stewart31-Dec-03 9:40 
GeneralRe: Changing the paper size at run time Pin
IntegraSoft31-Dec-03 9:46
IntegraSoft31-Dec-03 9:46 
GeneralRe: Changing the paper size at run time Pin
Heath Stewart31-Dec-03 11:04
protectorHeath Stewart31-Dec-03 11:04 
GeneralRe: Changing the paper size at run time Pin
IntegraSoft1-Jan-04 7:50
IntegraSoft1-Jan-04 7:50 
GeneralRe: Changing the paper size at run time Pin
Heath Stewart1-Jan-04 9:29
protectorHeath Stewart1-Jan-04 9:29 
GeneralRe: Changing the paper size at run time Pin
Mazdak30-Dec-03 6:26
Mazdak30-Dec-03 6:26 
Generalinterop - array of structs with embedded strings Pin
lavinder29-Dec-03 17:45
lavinder29-Dec-03 17:45 
GeneralRe: interop - array of structs with embedded strings Pin
Heath Stewart30-Dec-03 5:26
protectorHeath Stewart30-Dec-03 5:26 
Generalserial por comunications Pin
pedropj29-Dec-03 17:00
pedropj29-Dec-03 17:00 
GeneralRe: serial por comunications Pin
Heath Stewart30-Dec-03 5:16
protectorHeath Stewart30-Dec-03 5:16 
GeneralNavigation in multiple forms Pin
Hayat29-Dec-03 16:51
Hayat29-Dec-03 16:51 
GeneralRe: Navigation in multiple forms Pin
Mehdi Moshtaghi30-Dec-03 0:37
Mehdi Moshtaghi30-Dec-03 0:37 
GeneralRe: Navigation in multiple forms Pin
Heath Stewart30-Dec-03 5:10
protectorHeath Stewart30-Dec-03 5:10 
GeneralRe: Navigation in multiple forms Pin
Hayat31-Dec-03 16:12
Hayat31-Dec-03 16:12 
GeneralRe: Navigation in multiple forms Pin
Mehdi Moshtaghi31-Dec-03 21:52
Mehdi Moshtaghi31-Dec-03 21:52 
GeneralThis is probably a silly question, Pin
Nick Seng29-Dec-03 16:41
Nick Seng29-Dec-03 16:41 

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.