HT1338 Printing graphics

Since updates installed on August 4, I am unable to print on my Epson Stylus PX730WD from files generated in Quark 10.2. When I try, any graphics come out corrupted or Quark crashes. I am able to print text only files and I am able to print from PDFs of the files but not from the originals.
Quark are working on this but so far have found no solutions. I note that my 'About my Epson Stylus PX730WD' window shows the printer as 'Printer Proxy' version 9.4'. Do I, therefore, have a problem with my printer software, rather than a problem with Quark?

Dear Matthias,
Thank you for your continued interest. I am pleased to report that I believe the problem of printing graphics from Quark original files is now resolved.
The trouble was with fonts. I was working with Extensis Suitcases Version 4 which apparently does not support Quark 10.2. When I upgraded to Suitcases Version 5 yesterday, all seemed to be in order.
I hope that this information will be useful to you and to other customers who may have had similar experiences. Once again, my thanks for your time.
Kind regards,
Diana

Similar Messages

  • I cannot get my HP officejet 4215 all-in-one to print graphics

    how do i get my HP officejet 4215 all-in-one to print graphics. as an example if i print my visa statement the visa logo and bank logos don,t print

    bamajim,
    Here is a link to a page for your printer that may help with your issue.
    The document provides steps to troubleshoot printouts that do not match the screen while printing from the web.
    Does this also happen when printing graphics from somewhere other than the web ?
    Once you give these steps a try let us know what happens.
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • URGENT.PLEASE HELP!!!Print graphics problem

    Hi,
    Please help me in this one.I try to print Graphics but I can't.
    1) Spooling lasts too long
    2) After spooling , printing does not continue
    3) An empty page is printed instead
    4) Printing process takes about 60 Mbytes of RAM to perform (??!!!)
    Here is my code :
    class MyDrawings extends JPanel implements Printable
    private Image offImage;
    private Graphics2D offGraphics2D;
    private init_graphics()
    offImage = this.createImage ( 200,200 );
    offGraphics2D = (Graphics2D)offImage.getGraphics();
    public void paint(Graphics g)
    Graphics2D g2 = (Graphics2D)g;
    if (offGraphics2D == null) return;
    // Paint the backgroung
    offGraphics2D.setColor(Color.black)
    offGraphics2D.fillRect(0,0,getWidth(),getHeight());
    g2.drawImage(offImage,0,0,null);
    void jButton3_actionPerformed(ActionEvent e) // 'Print' Button was pressed
    PrinterJob pj = PrinterJob.getPrinterJob();
    RepaintManager.currentManager(this).setDoubleBufferingEnabled(false);
    if (pj.printDialog())
    try
    pj.setPrintable(this);
    pj.print();
    catch (Exception PrintException) {PrintException.printStackTrace();}
    RepaintManager.currentManager(this).setDoubleBufferingEnabled(true);
    public int print(Graphics g, PageFormat pf, int pageIndex)
    if (pageIndex != 0 )
    return NO_SUCH_PAGE;
    Graphics2D g2 = (Graphics2D) g;
    double wscale = pf.getImageableWidth() / this.getWidth();
    double hscale = pf.getImageableHeight()/ this.getHeight();
    g2.scale(wscale, hscale);
    g2.translate(pf.getImageableX(), pf.getImageableY());
    paint(g2);
    return PAGE_EXISTS;
    I use JDK 1.4.0 and Win2000.
    Thank you so much for your help!

    Change the construnctor and the paint as follow
    class MyDrawings extends JPanel implements Printable
         private Image      offImage;
         private Graphics2D offGraphics2D;
    private MyDrawings()
    public void paint(Graphics g)
         Graphics2D g2 = (Graphics2D)g;
         if (offImage == null)
              offImage      = this.createImage(getWidth(),getHeight());
              offGraphics2D = (Graphics2D)offImage.getGraphics();
         offGraphics2D.setColor(Color.black);
         offGraphics2D.fillRect(0,0,getWidth(),getHeight());
         g2.drawImage(offImage,0,0,null);
    void jButton3_actionPerformed(ActionEvent e) // 'Print' Button was pressed
    .

  • Printing graphics - URGENT!

    Hi all,
    I am trying to send a Java2D graphics to a printer. I am reading the file name from JFileChooser. Here is my code:
         if(jfc.getFileFilter().getDescription() == psFileFilterDescription){
              File psfile=new File(jfc.getCurrentDirectory(),jfc.getSelectedFile().getName() + ".ps");
              FileOutputStream out = new FileOutputStream(psfile);
              int w=getSize().width;
              int h=getSize().height;
              System.out.print("Writing PS File "+psfile+"\nw:"+w+" h:"+h);
              BufferedImage mImage=new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
              Graphics2D gBuff=mImage.createGraphics();
              paint(gBuff);
         sendToPrinter(mImage);
    private void sendToPrinter(BufferedImage bImage){
    PrinterJob pj = PrinterJob.getPrinterJob();
    // show the print dialog and conditionally proceed
    // with printing if the dialog returns true
    if (pj.printDialog()) {
    // get the default page format
    PageFormat pf = pj.defaultPage();
    // show the page configuration dialog
    // note - this doesn't work in Solaris/JDK1.2beta4
    pj.pageDialog(pf);
    // create a book
    Book b = new Book();
    b.append((Printable)bImage, pf);//How can I convert a BufferedImage to support Printable interface
    // arrange for this book to be the source for our printer job
    pj.setPageable(b);
    // actually invoke the printing
    try {
    pj.print();
    catch (PrinterException ex) {
    ex.printStackTrace(System.err);
    // provide a print method for this component. This implements
    // the Printable interface,
    public int print(Graphics g, PageFormat form, int page) {
    // check for a Graphics2D and apply the page orientation and
    // printable area transforms to it
    if(page == 0) {
    if (g instanceof Graphics2D) {
    AffineTransform tr = new AffineTransform(form.getMatrix());
    tr.translate(form.getImageableX(), form.getImageableY());
    ((Graphics2D)g).transform(tr);
    super.paint(g);
    return PAGE_EXISTS;
    else
    return NO_SUCH_PAGE;
    Does anyone have any ideas on what I should do here?
    Thanks,
    Payam.

    i have a problem with this code.
    public void actionPerformed(ActionEvent e)
              if(e.getSource()==openItem)
                   JFileChooser chooser = new JFileChooser();
                   chooser.setCurrentDirectory(new File("."));
                   chooser.setFilefilter(new javax.swing.filechooser.FileFilter()
                   { public boolean accept(File f)
                        String name = f.getName().toLowerCase();
                        return name.endsWith(".gif")
                        ||name.endsWith(".jpg")
                        ||name.endsWith(".png")
                        ||f.isDirectory();
                   public String getDescription()
                        return "Image files";
              int r = chooser.showOpenDialog(this);
              if(r==JFileChooser.APPROVE_OPTION)
                   String name =chooser.getSelectedFile().getAbsolutePath();
                   panel.loadImage(name);
    all variables used have been allocated memory.

  • K550 won't print graphics - Help!

    Working great till one day suddenly stopped printing graphics.  Prints text copy fine.  Photos, clip art, etc missing from print.  Ran Diagnostics - okay; ran Configuration page - okay.   Laptop prints fine when connected to another printer,  which eliminated a 'computer' issue; definately a printer setting problem.   Help!!  I'm out of warranty :-(

    As near as I can tell, the printer is not the problem. I have tried three different printers, all with the most up-to-date drivers, and even tried Adobe Acrobat 9 Pro, which should bypass all of the above. The graphic elements that worked perfectly in my previous system simply disappear in Snow Leopard. My workaround is to send them to an "older" Mac NOT running Snow Leopard, then convert them to PDF files, then print from Snow Leopard, and all is well. Absolutely frosted! I have publishing deadlines to meet!

  • SMARTFORMS printing graphics from URL

    I do not find anything yet to print graphics on SMARTFORM using variable name from a url NOT via SE78 Graphics Administration Document Server. 
    There is solution to load SE78 Document Server via BDC but I am looking for solution where Document Server is not loaded with excessive images AND NOT solution writing over a single image there; I want it actually redirected to another url address.
    I do understand that I will maintain a table having the url address AND that I can even display from SMARTFORM; I am asking for solution that actually prints the stored image.

    Dear Michael,
    good to see you..
    I am facing the same problem for using the image from URL in SMARTFORM...
    If you got solved the problem please give me the suggestions how you had done this....
    Please,....
    Thanks in advance,
    Kruthik

  • Printing graphics

    Hi when i try to print a printable with an image on it , it keeps rendering the page it comes 170 time into the paintroutine , its this possible to it in an other way???
    Greetings Sven

    Sure when i can the print routine below of the panel (= report to be printed) the paint routine is called twice when sending it to the printer but when adding an image to the panel and the print , the paint routine is called 170 times or more
    here is the printroutine called from the printpreview
    void printButton_actionPerformed(ActionEvent e) {
    try {
    PrinterJob prnJob = PrinterJob.getPrinterJob();
    PageFormat pf = prnJob.defaultPage();
    pf.setPaper(paper);
    if (jobType == PRINTABLE_JOB)
    prnJob.setPrintable(m_printable,pf);
    else
    prnJob.setPageable(m_pageable);
    setCursor( Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    if (prnJob.printDialog())
    prnJob.setJobName("Vrex Explorer printing");
    prnJob.print();
    setCursor( Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    dispose();
    catch (PrinterException ex)
    ex.printStackTrace();
    System.err.println("Printing error:");
    the printable is below
    public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException
    if (pageIndex >= m_maxNumPage)
    return Printable.NO_SUCH_PAGE;
    else
    Graphics2D g2 = (Graphics2D) g;
    // RepaintManager.currentManager(this).setDoubleBufferingEnabled(false);
    setDoubleBuffered(false);
    paint(g2);
    // RepaintManager.currentManager(this).setDoubleBufferingEnabled(true);
    setDoubleBuffered(true);
    System.gc();
    return Printable.PAGE_EXISTS;
    public void paint(Graphics2D g)
    paintBackground(g);
    private void paintBackground(Graphics2D g)
    g.setColor(new Color(210,212,215));
    int width = (int)pf.getImageableWidth();
    int height =(int) pf.getImageableHeight()-getPoints(0.5);
    int x = (int) pf.getImageableX();
    int y = (int) pf.getImageableY();
    // vertical shadowbalk
    g.fillRect(x,y,(int)width/2,height);
    g.setColor(new Color(15,40,70));
    g.fillRect(x,y+getPoints(1.5),width,getPoints(1.5));
    g.setFont(tfnt);
    int titelorigin = getPoints(0.5);
    fm = g.getFontMetrics(g.getFont());
    int h = fm.getHeight();
    g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    g.setColor(new Color(103,127,156));
    g.drawString("DESIGN",x+titelorigin,y+getPoints(0.75)+(fm.getAscent()- fm.getDescent())/2);
    fm = g.getFontMetrics(g.getFont());
    h = fm.getHeight();
    g.setColor(new Color(166,169,175));
    g.drawString("OPPORTUNITIES",x+titelorigin,y+getPoints(2.25)+(fm.getAscent()- fm.getDescent())/2);
    g.setColor(new Color(255,255,255));
    g.setFont(t2fnt);
    fm = g.getFontMetrics(g.getFont());
    h = fm.getHeight();
    g.drawString("DFA",x+titelorigin+width/4,y+height- getPoints(0.5)- (fm.getAscent()- fm.getDescent())/2);
    try{
    System.out.println("imageheight"+imageheight);
    // g.drawImage(image,x+titelorigin,y+height -getPoints(0.5)-imageheight,imagewidth,imageheight,null);
    catch( Exception ex)
    with the g.drawimage ----->>> line enabled the paint is called 170 times
    the image is constructed in the constructor of the page
    like this
    try
    imagewidth = image.getWidth(this);
    imageheight = image.getHeight(this);
    MediaTracker mt = new MediaTracker(this);
    mt.addImage(image,0);
    mt.waitForID(0);
    catch (Exception e)
    e.printStackTrace();
    tia Sven

  • Printing graphics object in Landscape or portrait mode

    Hello,
    I have a graphics 2d object (a Tree Diagram) which is inside a JScrollPane,and the JSCrollPane is on a JPanel. it's length and width is more than one page. I am using a printable object to print the object. The task I need to do is,
    (1). compress the width and length of the diagram, so that if can fit into one page, else split the diagram into pages, so that each part of it can be printed on different pages(page size A4) and then later those pages can be merged accordingly.
    I am not able to find, how to split the graphic object(the tree diagram into pages), shoul d I try doing it using x and y co ordinate of the graphic object.

    * PrintUtilities.java
    * Created on January 17, 2007, 7:25 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package action.vector.bam;
    * @author serjith
    import java.awt.*;
    import javax.swing.*;
    import java.awt.print.*;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    /** A simple utility class that lets you very simply print
    * an arbitrary component. Just pass the component to the
    * PrintUtilities.printComponent. The component you want to
    * print doesn't need a print method and doesn't have to
    * implement any interface or do anything special at all.
    * <P>
    * If you are going to be printing many times, it is marginally more
    * efficient to first do the following:
    * <PRE>
    * PrintUtilities printHelper = new PrintUtilities(theComponent);
    * </PRE>
    * then later do printHelper.print(). But this is a very tiny
    * difference, so in most cases just do the simpler
    * PrintUtilities.printComponent(componentToBePrinted).
    * 7/99 Marty Hall, http://www.apl.jhu.edu/~hall/java/
    * May be freely used or adapted.
    public class PrintUtilities implements Printable {
    private Component componentToBePrinted;
    public static void printComponent(Component c) {
    new PrintUtilities(c).print();
    public PrintUtilities(Component componentToBePrinted) {
    this.componentToBePrinted = componentToBePrinted;
    public void print() {
    PrinterJob printJob = PrinterJob.getPrinterJob();
    PrintRequestAttributeSet set = new HashPrintRequestAttributeSet();
    PageFormat pgFormat = printJob.pageDialog(set);
    printJob.setPrintable(this,pgFormat);
    //printJob.setPrintable(this);
    if (printJob.printDialog())
    try {
    printJob.print();
    } catch(PrinterException pe) {
    System.out.println("Error printing: " + pe);
    public int print(Graphics g, PageFormat pageFormat, int pageIndex) {
    if (pageIndex > 0) { // requires change since it is bigger than a single page
    return(NO_SUCH_PAGE);
    } else {
    Graphics2D g2d = (Graphics2D)g;
    g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
    disableDoubleBuffering(componentToBePrinted);
    int W = componentToBePrinted.getWidth();
    int H = componentToBePrinted.getHeight();
    //Component newComp = componentToBePrinted.getGraphics().clipRect();
    System.out.println("WorkSpace Height "+H+" Width "+W);
    pageFormat.getHeight();
    pageFormat.getWidth();
    pageFormat.setOrientation(PageFormat.LANDSCAPE);
    //componentToBePrinted.paint(g2d);
    componentToBePrinted.printAll(g2d);//.paintAll(g2d);
    enableDoubleBuffering(componentToBePrinted);
    return(PAGE_EXISTS);
    /** The speed and quality of printing suffers dramatically if
    * any of the containers have double buffering turned on.
    * So this turns if off globally.
    * @see enableDoubleBuffering
    public static void disableDoubleBuffering(Component c) {
    RepaintManager currentManager = RepaintManager.currentManager(c);
    currentManager.setDoubleBufferingEnabled(false);
    /** Re-enables double buffering globally. */
    public static void enableDoubleBuffering(Component c) {
    RepaintManager currentManager = RepaintManager.currentManager(c);
    currentManager.setDoubleBufferingEnabled(true);
    =============================================================
    Please find this code, which I am trying to use, here I am passing the JPanel
    try{                   
    PrintUtilities.printComponent(actWorkSpace);
    }catch(Exception ex){
    ex.printStackTrace();
    the actWorkSpace is a JPanel with graphics as mentioned above, which is being passes to PrintUtilities.printComponent();
    the output is only just a single page with just a portion of the graphics on the JPanel, pls help...... it is urgent....

  • Prints graphics, but not text. Firefox 3.5.10

    I can only print graphics - can not print text part of page or email from Firefox. Prints OK from Wordperfect, wordpad, notepad and a print screen from XP. Canon Pixma MP780, XP SP2 As far as I can tell all settings are correct for the printer in the control panel.
    == This happened ==
    Every time Firefox opened
    == just started

    Hi,
    Try printing a Supply Status report, can you see any of the colors printed correctly? (Black, Magenta, Cyan and Yellow) or there may some missing colors?
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02017194&cc=us&dlc=en&lc=en&product=3422472&tmp...
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Printing graphics in Adobe forms

    Hi,
    I have a requirement in adobe forms where I need to print graphics stored as standard text (SO10) or on document server (SE78) by calling them inside a long text.
    The client was doing this in legacy with SAP script and it was working fine but adobe form does not support this feature (as far as I know)
    Is there any way we can print graphics by calling them inside long text?
    Any inputs will be appreciated.
    Regards.

    Hi,
    To print the graphic from SE78 in Adobe form you need to do the following steps.
    1. Convert the graphic into graphic_content(XSTRING) using
    call method cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
    2. Create Graphic node in Context in Adobe form with the properties
    Grphic type as graphic content
    Field as graphic_content(XSTRING)
    MIME type as 'BMP'
    3. In layout create an image field and bind it to graphic node created in context.
    Regards,
    Raju.

  • One pjob.print( ) call, 3 print (Graphics...) called

    Hi everyone. Can I ask if my explanation is right?
    In my app, there is one pjob.print ( aset ) called (where 'pjob' is
    the printer job acquired from PrintJob's static method getPrinterJob( ),
    and 'aset' is HashPrintRequestAttributeSet object.)
    For 1 call of above, I get 3 print (Graphics g,PageFormat pf, int pgIdx)
    called; 2 with 'pgIdx'=0 and 1 'pgIdx'=1.
    In my W98 system, the printer and the scanner are connected to the
    parallel port in daisy chain fashion. Also there are 2 printers registered
    to the system although only 1 printer is physically connected.
    So 2 calls with 'pgIdx'=0 are for the printer and the scanner, one for
    each, while the 3rd with 'pgIdx'=1 is for unconnected printer.
    Is my explanation right?
    I don't think it is right because it doesn't make sense that 'pgIdx'=1 is
    called while I specify the 1st entry in the printer list in the printer job
    dialog. If print( ) is called to all printers connected, what is the printer
    selection (from the printer entry) for?
    Can anyone explain, please?

    Hallo,
    the reason for calling the method
    public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException
    }has nothing to do with how many printers are connected. The number of render-cycles depends on how much should be printed(how much memory is neeeded).
    For example, if you print out some text the print-method is called 2 times -->
    but when you print some text with transparency the print-method is called up to 24 times!
    The only problem I have with your description is that your pageIndex increases to 1.
    If you print out one page it should be 0, although it is rendered 3 times.

  • Print Graphics from GFW_PRES_SHOW_MULT

    Hi,
    does anybody know how to print Graphics using  GFW_PRES_SHOW_MULT. I'm not used with OO otherwise I would go this way. Thanx in advance.

    Hi everybody,
    I've found a solution:
    1) Copy the Functiongroup SGFW to Z namespace and also
       FB GFW_PRES_SHOW_MULT
    2) de-comment the following lines in the FB: (DATA-Part)
            evtcode_list           TYPE cntl_simple_events,
            simple_event           TYPE cntl_simple_event.
    insert :
    simple_event-appl_event = 'X'.
    simple_event-eventid = if_graphic_proxy=>co_evt_value_changed.
    append simple_event to evtcode_list.
    use system event (no PAI processing) for customizing changes:
    *simple_event-appl_event = space.
    simple_event-eventid = if_graphic_proxy=>co_evt_custom_changed.
    append simple_event to evtcode_list.
    (comming from Report GFW_DEMO_PRES1 directly below Start-of-Selection) under the DATA declarations in the FB
    3) change the method-call in the FB as follows:
            IF content IS REQUESTED.
              CALL METHOD graphic_proxy-ref->init
                EXPORTING
                  parent       = parent_container
                  dc           = dc_inst_pres
                  prod_id      = cl_gui_gp_pres=>co_prod_export
                  force_prod   = gfw_true
                  evtcode_list = evtcode_list
                IMPORTING
                  retval       = local_retval.
            ELSE.
              CALL METHOD graphic_proxy-ref->init
                EXPORTING
                  parent       = parent_container
                  top          = top
                  left         = left
                  height       = height
                  width        = width
                  dc           = dc_inst_pres
                  evtcode_list = evtcode_list
                IMPORTING
                  retval       = local_retval.
            ENDIF.
    The parameter evtcode_list is just added.
    That's it! Right-Click works now on Graphics and printing is only one new possibility!
    Greets Olaf

  • 2 weeks ago, Firefox changed. It will not print graphics in a web page or show them in print preview. It also does not provide the ability to select options in "print forms". they are now grayed out.

    I am using www.investools.com
    It prints the graphics in the normal page fine
    but when I switch to prophetcharts, which loads javascript, the graphs do not display or print.
    The text on the left side of the display show but graphs do not, even when I reduce printing size to 30%.
    I am using an HP 8500 Pro Officejet.
    Everything works in IE fine (but I don't want to use IE).

    Hi ArielAce , thanks for getting back to me!
    I would recommend downloading and running the HP Print and Scan Doctor.
    Please keep me posted!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Snow Leopard won't print graphics in Word 2008

    When I updated to Snow Leopard and Office 2008, everything seemed to work perfectly, open, and run well. However, my .doc files previously created in Office X that include graphics from the draw program will print ONLY text and text boxes--no graphics. I get the same in compatibility mode (.doc), when I "save as" to DocX format, and when I try to save as a PDF--text floating in a sea of non-graphic white. I sent the file to my husband's computer running Leopard, and it prints perfectly. Similarly, if I open Word 2008 and create a fresh, native docx file with graphics, those graphics DO print. So this seems to be a Snow Leopard problem with compatibility Word files using graphic elements (nothing fancy--just flow chart stuff.) Any ideas anyone? I am a small educational publisher and do NOT relish the thought of redoing a boatload of work in another program. Help!

    As near as I can tell, the printer is not the problem. I have tried three different printers, all with the most up-to-date drivers, and even tried Adobe Acrobat 9 Pro, which should bypass all of the above. The graphic elements that worked perfectly in my previous system simply disappear in Snow Leopard. My workaround is to send them to an "older" Mac NOT running Snow Leopard, then convert them to PDF files, then print from Snow Leopard, and all is well. Absolutely frosted! I have publishing deadlines to meet!

  • Pages 09 not printing graphics since updating to snow leopard

    I've updated to 10.6.2 but I am unable to print templates with graphics to my Xerox 6520 DP printer. Reloaded the drivers but still not working. Will go ck with Xerox to see if they are issuing a new release driver or not. I tried opening a template within Pages and I get the same result of "error printing" no number along with it. Tried doing a save as PDf and get the same printing error. Anyone have any ideas?

    Repair permission is something I do after a major installation. Do that.
    Are you able to print from other applications, i.e. TextEdit?
    If not, can you print from another account? You can create a new account from Accounts in the System preferences.
    It might be the driver that needs an update but that is outside my knowledge.

Maybe you are looking for

  • Can't Reinstall OS X - is my hard drive shot?

    I have a mid-2011 27" imac running Mavericks (10.9.1). Recently the machine has been performing random resets with no warning, which I got tired of, so I tried to repair the disk but disk utility was unable to do it. Figured this was either an OS pro

  • Cisco WLC 5508 not sending SNMP Traps

    Hello Everyone. I'm having a weird error on our WLC environment. We have an HA with two cisco WLC 5508 and i cannot get SNMP Traps working on a Windows PC running Kiwi Syslog server (free ed.). I can receive correctly Syslog messages, but not traps.

  • Illustrator CS5 javascript JPEG export 300 DPI & max quality

    I new to Illustrator CS5 scripting (javascript) and I'm trying to export an .eps to .jpg.  With image quality 8 and DPI 300. I've seen several post asking about this (only a few with answers).  Those answer aren't working for me though. I also found

  • Cannot launch the wizards of the Datamining Components from JDeveloper

    Hi all, After I create a Work space, project and select Datamining components in the JDeveloper, I get the list of wizards. I can select one of the wizards, but nothing happens, when I press OK. The "Welcome" page as specified in the tutorials do not

  • Should I be worried of my old mac sold?

    I wanted to buy a new Macbook pro, thinking of the information security and all my applications in it. If I sell my mac, what will I do to make sure my personal files are erased and gone from it? And is there a way i can have it on my new one? I have