Printing my own certificate in landscape

I have been searching for hours and can't find out how to print my own certificate in landscape mode the wdget is printing in portrait mode which in captivate is useless because 99.9% of captivate project have the width much greater than the height.
The only way I found how to do this is by purchasing a $20 widget to print this way.
Is there a different solution than me spending $20 to print the certificate?

None that I know of.  If your time is worth more than $10 per hour, you'd be well advised to buy the widget by now.

Similar Messages

  • Certificate in landscape format

    Hi,
    I'm still wondering that I found nothing  about printing certificats in landscape format.
    I'm not looking for a solution to change the page oriantation. This shouldn't be a big deal. 
    The standards certificate function print each characteristic into a single line including limits value and so on. 
    In the case you have multiple batches and print all on the cert you will get for each batch the block of characteristics.
    I'm wondering that there is a solution to print  the results in kind of table. So the header should be the charcateristic name and limits for example.  And each line shows all the information for a batch.
    example :
    batch                         *  mic1  *    mic2   *    mic3          *...
    limit range                  *  2 -4   *   <200   *    100 - 500  *
    unit of measurement *  ms     *      g      *    Ohm          *
    batch A                    *  2,4    *    pass    *     425         *
    batch B                    *  2,2     *    pass    *     435         *
    batch C                    *  3,1    *    pass    *     250          *
    Is there a way get the output in that format?
    Thanks for your feedback.
    Jens
    Edited by: Jens Hoene on Jun 9, 2010 4:22 PM

    HI FireFighter,
    good to know that I wasn't blind about that. And that was nearly that what I  was looking for.
    But you mentioned a interesting way to get this done. Currently we use our own SAP script  for the special requirements we have (only some canges from standard form)
    But based on the line by line style for the characteristics I wasn't sure how to create the landscape style. So I started the idea to change the print program, because I would like still to have the fexibility from the cert profile. But I was not very happy about this idea.
    But I like your idea only to change the SAP script. The numbers of column will not very high and I think this should work if the printout is done in landscape mode, but what column is printed will be different from printout to printout and that is the reson that I would like to use the functon of cert profile.
    At the moment I think an "matrix" could work, but not checked yet if this is possible within SAPscript. To work only with hard defined numbers ov SAP script veriable will be very taff, because of the numbers of batches that could be printed on a cert.
    So the best case would be if there could be used a dynamic matrix in SAP script. Do you know if this is possible?
    Thanks
    Jens
    Edited by: Jens Hoene on Jun 15, 2010 1:22 PM

  • Printer Setup for HTML reports (Landscape)

    I'm trying to print an HTML report in Landscape, the Report Orientation VI only works with Standard Reports, and I can't find anything that will let me modify the "Printer Setup"
    Anyone done this?

    Jeff,
    To print an HTML report it first has to be rendered. To render HTML, you need a browser. For example, you can render HTML in either Internet Explorer or Firefox or Opera, and all three might render the same data slightly differently. To simplify the situation let's say that you're using IE. Once IE renders the HTML, you then have to get it to send the rendered output to the printer. So you can see why it isn't time or cost-effective for NI to try and necessarily support these functions. For the end user however, I'd guess that quite a few people have had this problem.
    I have had to do a lot of digging around to get HTML reports to print right. My solution has been to use an ActiveX container with an IWebBrowser2 object (Internet Explorer). This will let you load and print HTML reports programatically however (glancing back over some old code) I don't see immediately how you can print a report in Landscape. With an ActiveX container however you can call the IE print preview function which will let you (the user) modify the report printing to Landscape. It's not a programmatic solution since you have to interact with the GUI but it works. Also, once you set the setting to Landscape, everything printed afterwards using your ActiveX container will also print in Landscape.
    Something else which may not apply to you (but maybe--I'll at least mention it) is printing a landscape single image... that's usually why I needed to print landscape... to print out a full page screenshot of a graph or something. I do this in portrait mode by just attaching the control image but rotating it first and adding the HTML code to make it 100% of the vertical page.
    Last but not least, if you are 100% set on using a programmatic implementation to print a landscaped report (no user interaction), the best thing to do would be to build on an ActiveX implementation so that your report is being loaded and printed from an embedded IWebBrowser2 object. With the IWebBrowser2 object there is an option for using a pre-defined print template. This option is NOT for the faint of heart and requires you basically to re-program the whole IE print-preview functionality. However, it's not impossible either, it just takes the time of learning basically how the IE print preview interface works and then adapting it to your application (in this case, landscaped printouts). This is also the ONLY way to change HTML report headers and footers. The print preview interface in IE is written entirely in javascript--you can get details on msdn (search for "print preview templates"). However, there isn't really enough info there to do things with any ease. So....
    If you get to the point where you get an ActiveX container working and want to fool with the IE print preview javascript templates, let me know. I have extracted the entire template and associated images from the windows DLL it is stored in so I could adapt it and change the headers and footers for my reports and things of that nature.
    Now that I mention it, I believe that is the only way also to actually set landscape or portrait--by programmatically changing the printing margins (so it prints 11x8.5 instead of vice versa).
    Anyway, hope that helps...

  • Print SSRS Server Report in landscape or portrait mode directly(without report viewer control)

    Hello,
    .Net 4.0\VS2010\C#\ssrs 2008 on Sql Server 2008R2
    Having a problem printing a Server report while controlling the orientation and the size of the emf rendered to the physical page.
    I have the report cutting off in both landscape and portrait modes. I'm passing the following deviceinfo to the render function:
    string DeviceInfo =
    @"<DeviceInfo>
    <OutputFormat>EMF</OutputFormat>
    <PageWidth>8.5in</PageWidth>
    <PageHeight>11in</PageHeight>
    <MarginTop>0.25in</MarginTop>
    <MarginLeft>0.25in</MarginLeft>
    <MarginRight>0.25in</MarginRight>
    <MarginBottom>0.25in</MarginBottom>
    </DeviceInfo>";
    return DeviceInfo;
    string mimeType;            string fileExtension;            Stream pageStream = serverReport.Render("IMAGE",  deviceInfo, firstPageParameters, out mimeType, out fileExtension);
    No other settings seem to have an affect on controlling the output to printer or pdf.  i.e. The deviceinfo params fed to server report's render function are all you get.  I think my original code comes from an MSDN or CodeProject example. I'm not
    inventing anything new here.
    Links below indicate similar problems but they are looking at the issue from just landscape mode. Seems like I ought to be able to squash or expand the image to whatever size I specify, separate from the 'page' size.  Please let me know what i need
    to know to make these reports print without bleeding onto 2 pages or slicing off the right side of the document image.
    http://stackoverflow.com/questions/25652415/cant-print-ssrs-rdlc-report-in-landscape-mode-directly-to-printer-using-suggest
    https://social.technet.microsoft.com/Forums/sqlserver/en-US/06a9b432-c8a5-4952-a07c-867742a26c47/print-rdlc-without-report-viewer-either-in-portrait-or-landscape?forum=sqlreportingservices
    print ssrs rdlc report in landscape mode directly
    Thanks!

     Hi
    FraterJoanni,
    Thanks for posting in MSDN forum.
    I am not expert in SSRS. You should get better response in SQL Server > SQL
    Server Reporting Services, Power View forum.
    After take a look at the similar threads links as you posted above.
    The conclusion is we needn’t tell the program o this report is landscape not portrait. If the width is larger than the height, the report will be printed in landscape; otherwise, it will be printed in portrait.
    >>Links below indicate similar problems but they are looking at the issue from just landscape mode.
    But in C# forum, we only from the point of code, code looks OK to me.
    A similar blog talking about this
    Controlling Page Size in a Reporting Services Report
    And  I have got the default page size in the US is Letter, 8.5in x 11in.  In other parts of the world A4 (8.3in x 11.7in) is the standard. 
    65: //build the device settings (A4 8.3 × 11.7)
    66: string deviceInfo = string.Format("<DeviceInfo><PageHeight>{0}</PageHeight><PageWidth>{1}</PageWidth></DeviceInfo>", "11.7in", "8.3in");
    67:
    68: //get report bytes
    69: result = rs.Render(format, deviceInfo, out extension, out encoding, out mimeType, out warnings, out streamIDs);
    70:
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to use mdb to print my own struct info on sparc10?

    Hi All,
    I'm debugging a system panic coredump on sparce10. I tried to print my own struct with command address::print -t my_struct or address$<my_struct, but both of them didn't work. but on x86, it could work.
    I have googled on internet, maybe i need to write a .mdbrc files? could anybody give me a help?
    thanks a lot!
    Toosic

    This came from a guy named Jonathan.
    This worked fine for me on Sol 10 x86 with the gcc compiler.
    So, in my test.so file, you load it into mdb...
    ::load ./test.so
    then use it
    <address>::MR
    wr
    +++++++++++++
    Solaris compiles it's dmods with the following GCC invocation:
    /usr/sfw/bin/gcc -fident -finline -fno-inline-functions -fno-builtin
    -fno-asm \
    -nodefaultlibs -D__sun -fno-strict-aliasing -fno-unit-at-a-time
    -fno-optimize-sibling-calls -O2 -m64 -mtune=opteron -Ui386 -U__i386
    -Wall -Wno-unknown-pragmas -Wno-missing-braces -Wno-sign-compare
    -Wno-parentheses -Wno-uninitialized
    -Wno-implicit-function-declaration
    -Wno-unused -Wno-trigraphs -Wno-char-subscripts -Wno-switch -Werror
    -std=gnu89 -gdwarf-2 -std=gnu89 -fno-dwarf2-indirect-strings -fPIC
    -DTEXT_DOMAIN="SUNW_OST_OSCMD" -D_TS_ERRNO -D_ELF64 -D_KERNEL
    -ffreestanding -c -o test.o test.c
    (I'm sure that many of these options aren't needed)
    And then links it with:
    /usr/sfw/bin/gcc -fident -finline -fno-inline-functions -fno-builtin
    -fno-asm
    -nodefaultlibs -D__sun -fno-strict-aliasing -fno-unit-at-a-time
    -fno-optimize-sibling-calls -O2 -m64 -mtune=opteron -Ui386 -U__i386
    -Wall
    -Wno-unknown-pragmas -Wno-missing-braces -Wno-sign-compare
    -Wno-parentheses
    -Wno-uninitialized -Wno-implicit-function-declaration -Wno-unused
    -Wno-trigraphs
    -Wno-char-subscripts -Wno-switch -Werror -std=gnu89 -gdwarf-2
    -std=gnu89
    -fno-dwarf2-indirect-strings -DTEXT_DOMAIN="SUNW_OST_OSCMD"
    -D_TS_ERRNO
    -D_ELF64 -D_KERNEL -ffreestanding -Wl,-Bdirect -shared test.o -o
    test.so
    Do these work for you?
    Cheers,
    - jonathan
    +++++++++++++++++
    test.c file follows...
    #include <sys/mdb_modapi.h>
    #include <errno.h>
    #include <sys/stat.h>
    #include <sys/debug.h>
    #include <sys/types.h>
    #include <sys/cmn_err.h>
    #include <sys/param.h>
    #include <sys/cred.h>
    #include <sys/stream.h>
    #include <sys/stropts.h>
    #include <sys/kmem.h>
    #include <sys/time.h>
    #include <sys/ddi.h>
    #include <sys/modctl.h>
    #include <sys/devops.h>
    #include <sys/sunddi.h>
    #include <malloc.h>
    #include <time.h>
    #include <sys/sysmacros.h>
    #include <sys/utsname.h>
    extern int uname(struct utsname *);
    extern int atoi(const char *);
    static int
    print_ftheader (uintptr_t addr, uint_t flags, int argc, const mdb_arg_t * argv)
    int bytes;
    char *cp;
    if (!(flags & DCMD_ADDRSPEC))
         mdb_warn ("You must specify an address (<address>::FtHdr)\n");
         return (DCMD_ERR);
    mdb_printf ("\nHeader_t Data Structure 0x%lx\n", addr);
    return (DCMD_OK);
    static int
    print_mr (uintptr_t addr, uint_t flags, int argc, const mdb_arg_t * argv)
    int bytes;
    char *cp;
    if (!(flags & DCMD_ADDRSPEC))
         mdb_warn ("You must specify an address (<address>::MR)\n");
         return (DCMD_ERR);
    mdb_printf ("\nMr_t Data Structure 0x%lx\n", addr);
    return (DCMD_OK);
    static int
    print_mControl (uintptr_t addr, uint_t flags, int argc,
              const mdb_arg_t * argv)
    int bytes;
    if (!(flags & DCMD_ADDRSPEC))
         mdb_warn ("You must specify an address (<address>::mControl)\n");
         return (DCMD_ERR);
    mdb_printf ("\nMonControl Data Structure 0x%lx\n", addr);
    return (DCMD_OK);
    * MDB module linkage information:
    * We declare a list of structures describing our dcmds, and a function
    * named mdbinit to return a pointer to our module information.
    static const mdb_dcmd_t dcmds[] = {
    {"mControl", NULL, "Display momControlMsg_t data structure", print_mControl},
    {"FtHdr", NULL, "Display FT header data structure", print_ftheader},
    {"MR", NULL, "Display MR data structure", print_mr},
    {NULL}
    static const mdb_modinfo_t modinfo = {
    MDB_API_VERSION, dcmds, NULL
    const mdb_modinfo_t *
    mdbinit (void)
    return (&modinfo);
    }

  • Printing withholding tax certificates for vendors

    Hi all,
    I am printing withholding tax certificates for vendors. That time it is giving error message "Please maintain entries in layout customizing"
    Please give me clarification. This is very urgent
    Adavancely thanks
    Apparao

    Hi,
    Please maintain your Withholding Tax Certificate layout in the table J_1IEWT_CERT_N. Use Transaction SM30 and maintain the layout in the Table for all the section codes.
    Regards
    Mahendra

  • Printing a Labview graph in LandScape mode ?

    Hello everyone. I have LabView printing an XY graph but it always
    wants to print in Portrait mode. I set the defaults of the printer to
    LandScape mode and still go a Portrait printout. Is there anyway
    to force LabView to print in LandScape mode? This will help the graph
    be more readable.
    Thanks for any help you can give.
    Regards,
    Steve Drake

    On Thu, 11 May 2000 17:39:54 GMT, Steve Drake
    wrote:
    >Hello everyone. I have LabView printing an XY graph but it always
    >wants to print in Portrait mode. I set the defaults of the printer to
    >LandScape mode and still go a Portrait printout. Is there anyway
    >to force LabView to print in LandScape mode? This will help the graph
    >be more readable.
    >
    Hi, well after some playing around and touching things that I though
    shouldn't make a difference I got it to print in Landscape mode. On
    the VI's front panel menu File-Print I switched that to LandScape mode
    and what do you know it printed the graph out in LandScape mode.
    Now I want to manipulate the fonts on the graph. I have messed with
    the cursors and I can put x axis lines
    on the chart with a time value
    but the text I'm putting up is small so I need a bigger font and I
    need to get the text out of the graph itself.
    Is there anyway to print the cursor titles vertical instead of
    horizontal to the x axis. Thought I would ask anyway.
    Thanks to anyone who already knew how to do this.
    Regards,
    Steve Drake

  • KeystoreException : Cannot overwrite own certificate

    Hi,
    I am trying to import reply for request certification, but i have the following exception:
    "Cannot overwrite own certificate"
    The code to create the keystore is as follow :
    keyStore = KeyStore.getInstance(keyStoreType, provider);
    keyStore.load(null, null);
    gen = KeyPairGenerator.getInstance("DSA", provider);
    algo = "SHA1withDSA";
    gen.initialize(512, new SecureRandom());               
    pair = gen.generateKeyPair();
    privKey = (PrivateKey)pair.getPrivate();
    pubKey = (PublicKey)pair.getPublic();
    X509V3CertificateGenerator certGen = new X509V3CertificateGenerator();
    certGen.setSerialNumber(BigInteger.valueOf(System.currentTimeMillis()));
    certGen.setIssuerDN(new X509Principal(attrs));     
    certGen.setNotBefore(new Date(System.currentTimeMillis() - 50000));
    certGen.setNotAfter(date);
    certGen.setSubjectDN(new X509Principal(attrs));
    certGen.setPublicKey(pubKey);
    certGen.setSignatureAlgorithm( algo);
    Certificate[] chain = new Certificate[1];
    try
    X509Certificate cert = certGen.generateX509Certificate(privKey);
    cert.checkValidity(new Date());
    cert.verify(pubKey);
    chain[0] = cert;
    catch (Exception e)
    {return false;
    keyStore.setKeyEntry(alias, privKey, passwd.toCharArray(), chain);
    FileOutputStream out = new FileOutputStream(keyStorePath);
    keyStore.store(out, passwd.toCharArray());
    out.close();
    The code to import the reply to the certification request is as follow :
    InputStream fis = new FileInputStream(keyStorePath);
    keyStore.load(fis, passwd.toCharArray());
    fis.close();
    fisP = new FileInputStream(pathcsr);
    CertificateFactory factory = CertificateFactory.getInstance("X.509");
    java.security.cert.Certificate cert = factory.generateCertificate(fisP);
    this.keyStore.setCertificateEntry(alias, cert);
    fisP.close();
    //Save the new keystore content
    FileOutputStream out = new FileOutputStream(keyStorePath);
    keyStore.store(out, passwd.toCharArray());
    out.close();
    At the flooowing line :
    this.keyStore.setCertificateEntry(alias, cert);
    I have a KeyStoreException at the line in bold with the message "Cannot overwrite own certificate"
    Please, can anyone help me?
    Many thanks.

    The exception is correct. You can't overwrite a key alias with a certificate alias. What
    you need to do is call KeyStore.setKeyEntry again, and overwrite the previous entry.
    Use the same key as before, but now specify the new certificate chain received in the certificate reply.

  • Printing my own photos!  Does anyone know what happened to the area on the left hand side of iPhoto when you went into printing your own photos?  I used to be able to create a page of wallets and print it from my own computer and now I can't find it.Help

    Does anyone know what happened to printing your own photos in iphoto?  There used to be a thing on the left hand side of iphoto that you used to create wallets, 5x7, etc.  Now there is nothing there.  Can anyone help me?  I dont want to order stuff, i want to pirint my own.

    what version of iPhoto?
    LN

  • Printing my own cards

    I want to print my own cards (not send them to Apple for printing) and can't seem to find a way to create double-fold cards (with the cover image on 1/4 of an 8-1/2 by 11 sheet). Can this be done? Also, is there a way to get rid of the Made on a Mac ad on the back? Thanks for any help.

    JeffAB:
    Welcome to the Apple Discussions. First, you can get rid of the apple logo by clicking on the Setting button at the bottom and un-checking the box to "Include Apple logo on the back".
    The cards use 7 x 10 stock. You might be able to find card stock that size somewhere or just trim down letter size card stock to that size. The fold is in the middle so it's easy to accomplish even if it's not pre-scored.
    Start the print process. In the first window select your printer and print quality and then click on the advanced button. Change the Copies and Pages menu option to "Paper Handling". In the next window under "Destination Paper Size" click on the radio button for "Use documents paper size: 7.00 x 10.00 in". Then continue with the print process.

  • How to print a gift certificate

    I bought an electronic gift certificate for i-tunes and wanted to print a gift certificate to put in the card, but there was no option for this. How can i print a gift certificate?

    Thank you so much for sharing this tip.
    It helped me a lot.
    I had kernel panics when I tried to print directly from iTunes.
    Now I was able to get hold of the certificate again, and do a screenshot.
    Merry christmas everyone!

  • Unable to print the TDS certificates

    Dear all,
    I am running j1inmis(tds process) this year(2008 to 2009) instead of lost year(2007 to 2008).
    I have done challana update status and bank challan update status.
    i was unable to print the tds certificates.
    could you update ur valuable  inputs
    Regards
    Raju.k

    Dear all,
    Thanks for early response.
    I have given everything correctly.
    My question is
    Is it possible to run previous year process in this year?
    Could you please update your valuable inputs.
    Regards
    Raju.k

  • Acrobat Professional 8: prints portrait when I want landscape

    In Acrobat Pro 8, I have established 36 in x 48 in. as a custom page size. When I try to print a 36" x 48" Visio drawing that is in landscape orientation, Acrobat Pro 8 will render it, right side up, in portrait orientation (over two pages), even though I tell it "landscape" in the print dialogue box.
    If I try to fake it out by specifying "portrait" in the print dialogue box, it gives me a warning that one or more pages are oriented differently. If I say "Proceed anyway", it will print it, right side up, in portrait orientation, over two pages. So either way, I'm going to get it in portrait orientation.
    If I rotate the Visio drawing 90 degrees and set the Visio page setup to portrait, then tell Acrobat to print it portrait, Acrobat agains warns me that one or more pages is oriented differently (no it's not, I have rotated both the drawing and the page to portrait). If I say "proceed anyway", it will print that portrait image - landscape. On two pages.
    I had this same problem with Acrobat Std 6; I can't find any help topics on this issue. Any ideas?

    I was finally able to get my 36 x 48 document to print to Acrobat correctly, but I still don't think the software is behaving properly.
    I created two custom page sizes; one calld "36 x 48 portrait", in which page width is 36 inches, and another called "36 x 48 landscape", in which the width is 48 inches.
    To print my 36 x 48 landscape page to Acrobat,I chose "36 x 48 landscape", but the only way the page printed correctly was if I also set Adobe PDF Document Properties/Orientation to "Portrait". If I set it to "Landscape", it prints Portrait.

  • Is there any way to re-print a gift certificate? I bought one but could not print it immediately and there isn't any redemption code on my receipt.

    Is there any way to re-print a gift certificate? I bought one but could not print it immediately and there isn't any redemption code on my receipt.

    Try here >  iTunes Gift Options
    To search for printing help on that page, on Windows press Control + F
    On Mac Command + F

  • No option for printing your own Greeting Cards at Home?

    Nothing like a company giving you an option , then taking it away as an "upgrade". They could STILL give us the option of printing our own cards AS WELL as offering the own professional services. How many people use there card printing service anyway?
    Don't get me wrong, I'm a dedicated mac user and there are a are a lot of great upgrades, but tis has really irked me and i WON'T be paying for the '09 upgrade.
    Does anyone know of a good program for printing greeting cards?
    Thanks, Geoff
    <Edited by Moderator>

    Actually the "PRINT" command is still there and still works
    See Old Toad's tutorials #8 and #8a - http://web.mac.com/toad.hall/OldToadsTutorials/Contents.html - for suggestions on using the print command in iPhoto to iprnt cards
    LN

Maybe you are looking for

  • IPad won't finish cancelling sync

    I was syncing my iPad mini on my computer, when the memory filled up as I forgot to untick items, then it automatially started to finish sync, however it still was finishing sync for a while, so I clicked eject but all that did was bring up a separat

  • Why doesn't the Quicktime site have an easy way to report broken links?

    Perhaps Apple thinks this site is perfect? The link to 'The heart is deceitful above all things' has been down for DAYS -- surely something the producers of that movie would not be happy about?? There's no simple way (that I can see) to report such a

  • User cannot see tax amount while creating PO

    Hi All My user cannot see tax amount while creating PO but on displaying the PO after saving he can see the tax amount in the PO. Is there any authorisation issue or what is the proble

  • Arranging events in chronological order

    I am experiencing difficulty in arranging events in chronological order. For instance, if I type in an event for 10 am on a particular day, and later type in an event on the same day at 2 pm, the 2 pm event appears ahead of the 10 am event. When I at

  • Modify Standard Abstract Classes.

    I would like to know what is the approach to extend a Standard Delivered Abstract Class. I tried the following approach, but it doesnt seem to work. I want to add some methods to the standard Abstract Class CL_CRM_AUI_ENTITY. So i created a copy(not