"print" command in Mathscript not saving plots in BMP format!

Hi guys,
i am trying to create a vi that will automatically generate a pdf report for my project. I found a way to save the report directly as pdf (that is, i "print" my report to a virtual PDF printer (PDFCreator) that saves the file automatically to a specific folder with the date/time as its name. So this was the first step to making the procedure automatic).
I am stuck in the next level, which is adding to the report not labview's bad-looking graphs, but the plots generated through the Mathscript.
So, after adding as input "a" my data to the mathscript node, i use the following commands:
figure
plot(a)
print image
Now, what this sequence does is make a nice plot of my data and then save it as "image.eps" in the default folder.
However, the eps format is not at all useful to me as i cannot import the plot with the "Append Image To Report.vi". This vi supports only BMP, GIF, WMF, EMF and JPG formats.
So, i want to save the plot from mathscript as BMP. This is supposedly possible, however i have not been able to find a way. The "print" command help for Labview 2011 Mathscript reads:
http://zone.ni.com/reference/en-XX/help/373123B-01/lvtextmath/msfunc_print/
Syntax
print
print(a)
print(file)
print(a, file)
Description
Print the plot window or save it into a file in either BMP or EPS format. If the plot window to save is an image plot or a 3D plot, the file must be in BMP format. For other kinds of plots, both BMP and EPS formats are supported.
There is no way for me to choose which format i want and it automatically chooses eps. If i use the command
print image.bmp
it gives me back an error. So, adding the .bmp ending is not the way to go.
All in all, it is crucial for me to export the plot in BMP format (so as to import it in the report generation), but i cannot find a way, althouth it is supposed to work.
Any ideas????
Thanks
PS. I run Labview 2011 SP1
Solved!
Go to Solution.

Thanks a lot ttrr!!

Similar Messages

  • HP Officejet Pro 8600 N911a - Print when Fax is Not Saved

    Can I make it so a fax is printed when it's not saved? I know I can set it to print and save every time, but I rely on HP Digital Fax to save paper. If a fax is not saved, either due to a network error or if the computer that it usually saves to is shut off, can the fax just be printed?

    , it's nice to meet you. I think I found something that may help with your faxing dilemma. This information was in the User Guide for the Officejet Pro 8600 e-All-in-One Printer - N911a; pg 69. Set up backup fax Depending on your preference and security requirements, you can set up the printer to store all the faxes it receives, only the faxes it receives while the printer is in an error condition, or none of the faxes it receives. The following backup fax modes are available:On > The default setting. When Backup fax is On, the printer stores all received faxes in memory. This enables you to reprint up to eight of the most recently printed faxes if they are still saved in memory. NOTE: When printer memory is low, it overwrites the oldest, printed faxes as it receives new faxes. If the memory becomes full of unprinted faxes, the printer stops answering incoming fax calls. NOTE: If you receive a fax that is too large, such as a very detailed color photo, it might not be stored in memory due to memory limitations.
    On Error Only > Causes the printer to store faxes in memory only if an error condition exists that prevents the printer from printing the faxes (for example, if the printer runs out of paper). The printer continues to store incoming faxes as long as there is memory available. (If the memory becomes full, the printer stops answering incoming fax calls.) When the error condition is resolved, the faxes stored in memory print automatically, and then they are deleted from memory.
    Off > Faxes are never stored in memory. For example, you might want to turn off Backup fax for security purposes. If an error condition occurs that prevents the printer from printing (for example, the printer runs out of paper), the printer stops answering incoming fax calls. NOTE: If backup fax is enabled and you turn the printer off, all faxes stored in memory are deleted, including any unprinted faxes that you might have received while the printer was in an error condition. You must contact the senders to ask them to resend any unprinted faxes. For a list of the faxes you have received, print the Fax Log. The Fax Log is not deleted when the printer is turned off. To set backup fax from the printer control panel 1. Touch (right arrow), and then select Setup.2. Touch Fax Setup, and then select Advanced Fax Setup.3. Touch Backup Fax Reception.4. Touch On, On Error Only, or Off. Reprint received faxes from memoryIf you set the Backup fax mode to On, the received faxes are stored in memory, whether the printer has an error condition or not. NOTE: After the memory becomes full, the oldest, printed faxes are overwritten as new faxes are received. If all the stored faxes are unprinted, the printer does not receive any fax calls until you print or delete the faxes from memory. You might also want to delete the faxes in memory for security or privacy purposes. Depending on the sizes of the faxes in memory, you can reprint up to eight of the most recently printed faxes, if they are still in memory. For example, you might need to reprint your faxes if you lost the copy of your last printout. To reprint faxes in memory from the printer control panel 1. Make sure you have paper loaded in the main tray.2. Touch (right arrow), and then select Setup.3. Touch Tools or Fax Tools, and then select Reprint Faxes in Memory. The faxes are printed in the reverse order from which they were received with the most recently received fax printed first, and so on.4. If you want to stop reprinting the faxes in memory, touch the Cancel button.  Please let me know if these steps resolved your issue, or if there is anything else I can do to help.  I look forward to hearing from you!  Thanks, 

  • Image is not saved in jpeg/bmp file but ok with png

    Hi i am unable to save the image in disk in jpeg format.
    Here is the code.
    public void saveImage(){
    //if no filechooser is there means no image file opened.
            if(fileChooser==null){
                if(errorWindow==null)
                    errorWindow=new ErrorWindow(XXX.getPrimaryStage());
                errorWindow.showErrorWindow("There is no image to save !!\n");
            else{
                fileChooser.setTitle("Save The Image");
                File saveFile=fileChooser.showSaveDialog(XXX.getPrimaryStage());
                if(saveFile!=null){
                    System.out.println("saveFile path= "+saveFile);
                    //get the extension of output image to be saved.
                    //XXX: is the main class name(say)
                    outExtension=*XXX*.getImageExtension(saveFile);
                    //if user does not give extension: set default extension as jpg
                    if(outExtension.equalsIgnoreCase(saveFile.getName())){
                        outExtension="jpg";                   
                        String newPath=(saveFile.toString())+".jpg";
                        saveFile=new File(newPath);                   
                    Task task = new Task<Void>() {
                        @Override
                        public Void call() {
                            Platform.runLater(
                                    new Runnable() {
                                        public void run() {
                                            try {
                                                //The image is inside ImageView->inside ScrollPane-> inside TabPane.
                                                Image curImage=XXX.getCurrentImage();
                                                int width=(int)curImage.getWidth();
                                                int height=(int)curImage.getHeight();                              
                                                System.out.println("cur image width= "+width+" ht= "+height);
                                                bufferedImage=new BufferedImage(width, height,BufferedImage.TYPE_INT_ARGB );
                                                //set the current image to awt Buffered Image
                                                SwingFXUtils.fromFXImage(curImage, bufferedImage);
                                                    imageTabPane=xxx.getImageTabPane();
                                                    Tab tab=imageTabPane.getSelectionModel().getSelectedItem();                                    
                                                    TabPane childTabPane=(TabPane)tab.getContent();
                                                    ScrollPane sp=(ScrollPane)childTabPane.getSelectionModel().getSelectedItem().getContent();
                                                    final ImageView imageView=(ImageView)sp.getContent();
                                                    WritableImage wim = new WritableImage(width,height);
                                                    imageView.snapshot(null, wim);
                                                    System.out.println(" snapShot width= "+wim.getWidth()+" ht="+wim.getHeight());                             
                                                    *ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);*
                                                       //<------ its not working  for png,jpeg,bmp,gif                                          
                                                    // the below lines are working only for png and gif
                                                    OutputStream out = new FileOutputStream(saveFile);                                                
                                                    ImageIO.write((RenderedImage) bufferedImage, outExtension, out);
                                                    out.flush();
                                            } catch (Exception ex) {
                                                Logger.getLogger(FileMenuController.class.getName()).log(Level.SEVERE, null, ex);
                                                //ex.printStackTrace();
                                            System.out.println("finished");
                            return null;
                    Thread th = new Thread(task);
                    th.start();
                }else{
                    System.out.println("File is not saved");
        }//saveImageNote: The above code is executed in ubuntu(10.04) using Netbeans 7.2(Javafx(2.2), java(1.7.0_11).
    When i run(from terminal) separately in a new class with an image in an Imageview( inside a Vbox) and take the snapshot
    of the imageview and write into the file using ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);
    with any extension (jpeg,png etc) it is working fine.
    Please help me.
    Any small hint is also helpful.Please feel free to comment or give suggestion.
    Edited by: 963038 on Feb 17, 2013 7:14 PM

    When i omit the line OutputStream out = new FileOutputStream(saveFile);
    and write only
    ImageIO.write((RenderedImage) bufferedImage, outExtension,saveFile);
    //out.flush();
    then saving the image even in "png" also fails.
    The following is the error code:
    Note : FileMenuController is my file where the saveImage() is wrtten.
    javax.imageio.IIOException: I/O error writing PNG file!
    finished
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at *newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)*
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more
    javax.imageio.IIOException: I/O error writing PNG file!
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more

  • Help printing to pdf but not saving

    I am currently using Acrobat X Pro and I need to email out travel orders daily to multiple people. But, I do not have a need to save these files prior to emailing.  Is there a way to send the pdf without saving first ?  Any help would be appreciated. I could do this using pdffactory trial version.

    You cannot do this with pdfactory or any other product. You cannot send out a file that is not on your computer. Pdffactory may be saving the file in a temporary file in a temporary folder that you are unaware of, but the file must exist before it can be sent via email.

  • Not saving as in proper format. new CS6 both macchines

    I have downloaded CS6 on two computers Running 10.7.5. I have been operating on CS5 with no problems.
    Running CS 6 when I open a nef and try to save as it shows png as the save as if I try and change it a jpg it shows as.iff. When I open a tiff and try to do a save as the, format is empty when I click and set as psd it will do the psd. If I try and save as jpg it changes to a .ff file
    This is the same thing on both machines.
    I did try to run pixel bender but it does not operate on cs6. I had akvis lightshop as a plugin but I Got these messages and I Removed it.
    I still have the stand alone akvis but not the plugin.
    I have downloaded the New upgraded Nik software on cs6 on both machines
    I tried to put a sceen shot but this will not accept it
    Dick Lund     email: [email protected]
    file://localhost/Users/dicklunds/Desktop/adobe1.tifffile://localhost/Users/dicklunds/Deskt op/AKVIS1.tifffile://localhost/Users/dicklunds/Desktop/akvis2.tiff
    Need help from Adobefile://localhost/Users/dicklunds/Desktop/adobe1.jpg

    Incompatible plug-ins - the main culprit. Known issue.
    A clean install of CS6 should resolve your issue.
    Please follow the thread R_Kelly has posted to resolve your issue.
    -ST

  • Media selection not saved in Print dialog

    When I select my Media, Quality and Bit Depth in the "Main" window in the Print dialog, they are not saved even though I select Save Current Settings as Preset. They change back to Plain Paper, 300 dpi and 8-bit. This will not work for high quality photo printing on my Canon iPF5000 printer. I've tried many different settings but nothing I have tried will get my settings to be saved and used. What are the "magic words" because the ones I've been using are not working?
    I can print from Photoshop through a Canon 16-bit plug-in using my normal print paper profiles and get excellent results so the printer is working just fine. I am using the latest Canon print driver and firmware. I think if I could get the correct media type, quality and bit depth in the printer driver, I'd get good results as well. I have a new paper profiling device that can only print the test patches through the print driver... so I'm stuck so far.
    Your help is appreciated.
    OS X 10.9.2, Mac Pro 3.33 Ghz 6-core, 24 GB RAM

    I discovered the root of my problem. Canon does not have a printer driver for my iPF5000 that runs under Mavericks. My workaround was to load Mountain LIon on a separate drive and use the Canon supported print driver for OS X 10.8.x. Running under 10.8 worked and I was able to successfully input and send the media type to the printer. I was making printer paper profiles with a new x-rite ColorMunki Photo.
    After creating the paper profile, I copied it over to Mavericks where I use Canon's 16-bit plug-in in Photoshop to send print jobs to the iPF5000. This apparently uses a slightly different print driver than the stand-alone print driver since it works just fine. The profiles create prints that are a very close match to the screen images.
    Whether or not Canon will support Mavericks for the iPF5000 is anybody's guess since it's an older printer.

  • Saving a pdf file using the print command

    I'm having a problem saving a document to pdf using the print command. I'm using an old version of Adobe. it's Adobe Acrobat 6. it is giving me the following error The instruction at "0x775355b2" referenced memory at "0x775355b2". The memory could not be "read". Could someone please help me resolve this issue. Thank you.

    The OS and release version of the source file's authoring application have a significant impact on use of Acrobat 6.
    For example, Acrobat 8.1 is where Vista support begins.
    With MS Office, Acrobat 6 PDFMaker compatiblility is only for Office 97, 2000, XP, and 2003.
    Be well...

  • HP LaserJet Pro 400 M401a Laser Printer Not Saving Downloaded Fonts

    Hi,
    we have recently purchased an HP LaserJet Pro 400 M401a Laser Printer which needs to be used with a system that downloads fonts for correct style printouts. The problem I am having is the fonts download initially which is great, but they are not saved by the printer after 1 printout so the user is having to download the fonts everytime she wants to print something.
    All other printers in the office are HP2055 and work as expected saving the fonts after the initial download. I have asked the support team of the application to have a look at the situation and they say everything is setup correctly so it may be an issue with the printer. Printer is installed on a Windows XP SP3 PC.
    Firware version: 20121205 (15 Dec 2012)
    Driver Version: 61.140.04.14138 (1 Jan 2013)
    Any help would be appeciated, thanks.
    Robert

    If the downloaded soft fonts are definitely not being saved (despite the download presumably terminating with a 'make soft font permanent' escape sequence), then the problem must lie in the firmware - and the only resolution is if HP releases  a new version with a fix.
    To be certain about which PCL5 fonts are resident in the printer, you have presumably printed off a  'PCL5 Typeface List' via the relevant front panel menu (assuming this printer has one).
    Or you could send the following direct to the printer to invoke that report:
    <Esc>%-12345X@PJL COMMENT Print PCL Font List
    @PJL DMINFO ASCIIHEX = "040004010105020402015E"
    <Esc>%-12345X
     where <Esc> represents the non-graphic) Escape control-code character (the character with decimal code 27, or hexadecimal 1B), and each PJL statement is terminated with a LineFeed control-code (decimal 10, hexadecimal 0A).
    Assuming that the printer is USB-connected, you could send the contents of the file (name, say, testfile.prn) holding the above to the printer using the copy command in a command-prompt session:
    copy /b testfile.prn \\computer-name\share-name
     where:
    computer-name is the name of the host workstation
    share-name is a share name of the installed Windows printer instance.
    I don't have access to your model of printer, but I do use a LaserJet Pro 400 Colour MFP 475dn (MFP equivalent of M451 printer), and this does appear to retain downloaded 'permanent' soft fonts - but only until the device goes into 'sleep' mode!
    So it is probably a common 'fault' (or 'design decision'?) across this family (LJ Pro 400) of printers.

  • Printer Presets Not Saving

    It has been discussed on here before without any fixes coming from Apple...
    Essentially the problem is that I'm trying to set one preset for printing all of my documents and another preset that allows me to quickly print photos from Imagebrowser (a Canon program). The problem is that when you think you have saved a preset you really haven't. It just continues to use whatever settings were last used and often a bunch of work has to go in to getting things to print correctly. I know this worked correctly under Tiger. We're at 10.5.4 and Apple still hasn't sorted this out. Does anyone know of a third-party app or Applescripts that could be used to rectify this problem.
    If I missed it, has there been a solution to this problem?

    This issue has been a problem for me since installing Leopard 10.5 upon its release. The fix for me was realizing that the feature settings of the various printers were reset. I had to go into each of the information panels of the print queues and enable Duplex printing, for instance. I do not know why this is not occurring through an automatic query process between the Printer Setup and the Printer itself.
    A serious non-feature I noticed is that a lack of one feature in the Default Printer causes the Preset to lose that feature within an application context. That is, having the Default Printer without Duplex, while having selected a saved Duplex preset will cause the checkbox to be unset and the duplex feature to become unavailable in that preset and application, even after selecting an alternate printer with the Duplex feature designated available. Setting the default printer to the alternate having Duplex and restarting the application (like Preview) causes the Print dialog with Duplex preset to have the checkbox set.
    I checked to see if the preset plist is being overwritten when selecting alternate printers, and it is not.
    It seems that this could be a behavior exhibited by in the Apple Print dialog. It seems to read the Preset one time, perhaps at the first Print command. From there it seems to alter the Preset information, based on the default printer feature set, losing Preset features forever more within that application context. If this is the case, I suggest that Apple maintain a original copy of the Preset plist within the application and merge that upon each alternate printer selection.
    For me, the workaround is to manually designate all of my printers to have Duplex capability.
    I hope you find this useful.
    Sincerely,
    Robert Entriken

  • My blends in Illustrator CS4 are not saving or printing correctly.  Why?

    Why are my blends in Illustrator CS4 not saving or printing correctly???
    SPECS:
    Adobe CS4
    MAC 10.5.8
    I got a outlined Text blend with a drop shadow.  And another text with a drop shadow on top.  Not too complex at all.
    Heres some screenshots of the problem.
    (1) Adobe Illustrator Screenshot
    (1) Screenshot of my saved TIff file.  I saved as a PDF as well and still no luck.
    Any suggestions?

    Mylenium,
    Thanks for you time and suggestions!  You helped alot!  My layers panel was crazy.  I re-arranged, re-organized and stacked according to the graphic.  Solved my problem first try.  Not used to making sure the order is right in illustrator, only in photoshop.
    Thanks again man!
    -NightRed

  • I cannot print from Websites or my college online course. Tries to save files to desktop as an .xps document but nothing happens and I get an error message that print command did not work. Have reinstalled firefox and adobe, no help. Any suggestions?

    Cannot print anything from internet using Firefox as browser. Please advise. I have to use Firefox for internet college courses, cannot print my assignments. I do not have this problem on Mac or using Internet Explorer. Only happens when using Firefox. When I select print a message comes up to save information to desktop as .xps file. Select save, sometimes it is on the desktop but I cannot open the file or it simply does not save file and get an error message that print command failed. What is happening?

    {Ctrl + P} and select your printer in the Printer - Name box near the top of that window.
    http://kb.mozillazine.org/Problems_printing_web_pages

  • PDF Printer not saving files; 9.5.5 (pro) with Windows 7, 64 bit

    I imagine that the root of this issue has to do with compatibility between the OS 64 and and 32 bit application of Acrobat 9.5.5. The installation has been uninstalled, reinstalled, and fully repaired. Initially, while printing from powerpoint (but also any other source, including chrome, firefox, or from acrobat's own interface), the PDF printer would output a generic error about the "current printer setup". After reveiwing the event log, a sidebyside 40 seemed to be causing the problem. I followed the solution posted at http://social.technet.microsoft.com/Forums/windows/en-US/a4c36078-6419-4424-8a43-ff3832786 b59/many-sidebyside-78-errors-with-acrobat-9-designer, but with no luck. I then went and installed the PDF printer manually using the adobePDF.inf file. This removed the generic error, but now when converting using the PDF Printer, no file is saved and no error dialog appears. Nothing is showing in the event viewer either. Print-to-pdf works, but the user needs specific formatting that occurs while printing. Any ideas what may be occuring?
    Running 9.5.5 Adobe Pro on a Windows 7 Pro 64 bit system.

    Let's step back a bit. First, since you have apparently been successful at installing the printer let us see if it works. Open and application and go to the print menu and select Print-to-file for the Adobe PDF printer. Assuming that is successful, open the file that is created (usually a PRN extension, though it is a PS file) in Distiller. Do you get a PDF now, or errors about the creation?
    If the PDF is created, use ctrl-alt-del>task manager to see if Acrotray is running in the background. If not, go to the Acrobat (or Distiller) folder and start it. If you can not start it then Acrotray is the problem that you are having. It might be that it will work if installed in a 32-bit compatibility mode.

  • Print Driver Settings Not Saving at Print Dialog [IDCS3, Vista]

    Hi. On our only design machine that runs Vista, when the user tries to print something from InDesign CS3 and has to turn on duplexing in the printer driver setup, on clicking OK, those settings immediately go away, and thus the document will not print duplexed. It works fine on our XP machines.
    A workaround is to set such printer driver settings via Vista's Control Panel, and this does work, however it's a bit cumbersome, since we print all kinds of documents.
    Pertaining Specs:
    - Adobe InDesign CS3 (5.0.3) for Windows
    - Vista Home SP1 (I think)
    - Konica-Minolta Bizhub C500
    - EFI Fiery 2.01 Driver for Vista / PostScript / Image Controller 405
    It's similar to this issue, but the specs differ:
    Michael C Stone, "Indesign documents reset printer settings IDCS2 XPSP2" #, 14 Jun 2008 5:19 pm

    It does say, "Double-sided: Yes," in Windows' printer properties for the Bizhub PS (and PCL) Fiery driver(s) -- in fact, this may have been from me turning it on for the PS driver in Windows Registry, as it was off for some reason, but seemed to make no real difference anyway -- but I think the duplexing option would have been grayed-out in the Fiery driver's dialog if not available as some various other options are -- the driver has the capability to poll the device for such options availability -- and I don't actually see anything duplexing-related on the Installable Options tab, but the Installed list is identical to one of our XP computers with no apparent issues with printing to the drivers from InDesign -- although at one point, if a Vista user printed an InDesign document and saved it (and thus the printer settings), XP users for some reason couldn't print the document without forcing a change in the print driver settings, but I believe this was due to using the same drivers but different TCP/IP port configurations per machine (Vista doesn't need the IP_ prefix as XP seems to).

  • Adobe Reader 8.1.2 : can not change Printer Command

    Hello all,
    I encounter the following problem with Acrobat Reader 8.1.2, installed on Debian GNU/Linux, trying to print :
    When I choose a printer (within the list given by a CUPS server) I can not change the Printer Command which prevents me from printing : the default printing options (-o InputSlot -o PageSize ...) are not compliant with my LPRng printing system.
    Note that I was able to do it with 7.0.5 and 8.1.1 versions.
    Would you please help me to resolve this problem ?
    Regards,
    Jean-Noel BOUVIER

    Hello Jean-Noel,
    The print command text box (in the Printer properties dialog) has been made read-only to avoid confusion and discrepancies with the drop-downs available to modify the options.
    If you want a particular print command to be used you could try out the Custom printing option. The command typed there is remembered between different sessions of the Reader.
    Hope this helps.
    Sincerely,
    Neha

  • What is the command to verify the configuration that are not saved or sent to local controllers?

    Q: What is the command to verify the configuration that are not saved or sent to local controllers?
    A: We can execute the command that is shown in below image to check the status of the configuration that has been made.
    Note: For example I made changes to the default VAP profile and executed the command "show master-configpending" which shows the pending configuration to be saved/sent to local controllers.

    But that jar file loads without images and icons when it is in other directory.Images should be accessed via a URL rather than using a filename because they will exist as entries in the jar archive not as files. Typically this URL would be obtained by using the Class method [getResource()|http://java.sun.com/javase/6/docs/api/java/lang/Class.html#getResource(java.lang.String)]. There are details in this [Java World article|http://www.javaworld.com/javaworld/javaqa/2002-11/02-qa-1122-resources.html].

Maybe you are looking for

  • E 63 Youtube viewing problem

    E 63 Youtube viewing problem. When i click on the youtube movie clips first Real Player opens for a second and then it shows First tries to connect. "Unable to connect"  after that it shows "Rtsp Temp" not saved. Save now? and gives a Yes and No opti

  • What can be streamed w/ airplay?

    Can keynote presentations be streamed to an Apple TV with AirPlay? And can you play music on a TV? How about movies (or at least the audio from it) on speakers? If you can play the music on an Apple TV, do you see the album artwork?

  • Basic WSDL, composite, and BPEL Update Processe in SOA Project

    I need to locate some documentation/answers on basic SOA application activities, especially utilizing JDeveloper. Specifically, if a developer updates a method response in a WSDL, then will other objects will need to be manually updated? For example,

  • AIR application and database connectivity (using JAVA)

    Hi I am creating AIR application and I want to connect with the database using java database connectivity (JDBC). Can any body give me the some suggestion on how to how to do that. Please give me any reference for creating AIR application for databas

  • Do I need java 1.6?

    I have Limewire and when I updated it to version 5, it won't open now on my computer because it says this: This application requires Java 1.6 or later, but only the following Java versions are installed: 1.5.0, 1.4.2, 1.3.1, 1.5, 1.3, 1.4. Updating t