Which martix printer can print out the chinese charaters in SAP .?

Dear all ,
I want to buy so me NETWORK martix printer which can print out the chinese charaters in SAP ( NOT IN FrondEND ) mode .....
Can you recommand some model to me ???
Many thanks ..
Carlos Zhang

Hi Kishan,
Thank you for your very quick reply but I found another solution.
I made one add-on device type, copying from 'JPSAPWIN',  one add-on spool format, copying from 'DINA3' A3-format spool formant SAP provides, and modified them so as to output correctly both in size and in fonts.

Similar Messages

  • Remove navigation panel and the section says " you can fill out the following form"

    Hi all,
    I need to remove navigation panel on the left side and also
    the section which is below toolbar and above actual pdf starts which says " you can fill out the following form and save the data.
    Can I hide or remove them using JavaScript? How?
    Regards
    Vas

    Not Possible

  • Can I print out the contacts in paper?

    Can I print out the contact from mobile in paper?

    stong2011 wrote:
    Thank for your info. Yes, I can't find this function in ovi suite. So I'd try to other program which can sync with these datas can print it out.
    ..As mentioned above, whats your phone model ? Is it compatible with the PC Suite ? If 'YES', then you do not need anything else...

  • How can i print out the waveform chart?

      hello everybody,
    how can i print out the "waveform chart". can i do it just push the button. ( example; stop button is stop the program etc..)
    i checked the NI examples but i can't understand. i'm new to the Labview.
    pls help me.
    i added the my program
    look forward your reply
    regards from turkey...
    Message Edited by hknmkt on 05-29-2008 04:15 AM
    Attachments:
    29.05.2008_11.vi ‏37 KB

        hi jim,
    i tried the program but it's not running. When i run the program, it's print out without run the program
    i added the printed file.
    look forward your reply
    hakan
    Attachments:
    error8.JPG ‏8 KB

  • I am trying to print a PDF file to a legal size paper and I would like for it to fill up the page. How do I do this? I went into the settings and changed it from letter to legal, but it's still printing out the same size. Can someone help me, please?

    I am trying to print a PDF file to a legal size paper and I would like for it to fill up the page. How do I do this? I went into the settings and changed it from letter to legal, but it's still printing out the same size. Can someone help me, please?

    Are you trying to Print to PDF or are you trying to Print a PDF file to a physical printer?

  • I can't seem to Print out the Object I made in this Map. Any ideas?

    Well here's my problem I'm trying to print out the Key's and Value's associated in the following MutliMap.
    The code formating seems to screw up < and >. My datastructure is a Multi Map, the Key is a String Object and
    the Value associated with that String Key is an ArrayList of an object of type Message I defined below.
    Map<String,List<Message>> = new HashMap<String,List<Message>>();
    Here's my code for where I try to Print everything (in the function print() ) .
    The Print just either prints out the KEY and no value, if I take out my ((Message)value) cast, it will print the Message class, like
    43343@Message because I'm assuming its wondering how to Print something that is an object I defined.
    Thats why I defined my own print function and I also override the toString() function but both don't work it seems.
    package parser;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.io.*;
    //this class should store all the Messages or "Events" and
    //you can access them based on their Serial key.
    public class MessageDB
         //database to hold the information
         //     holds the Alerts/messages
         Map<String, List<Message>> AlertMap;
         //Constructor
         MessageDB()
              AlertMap = new HashMap<String, List<Message>>();
         //print, outputs the contents of the hashMap
         public void print()
            //want to print out the Key and all the Messages
              //associated with that key
              Set keys = AlertMap.keySet();          // The set of keys in the map.
              Iterator keyIter = keys.iterator();
              System.out.println("The map contains the following associations:");
              while (keyIter.hasNext()) {
                    Object key = keyIter.next();  // Get the next key.
                    Object value = AlertMap.get(key);  // Get the value for that key.
                    System.out.println( "Serial (key): " + key + "\n");
                    System.out.println("value: " + ((Message)value).toString() + "\n");
                    //((Message)value).print();
         //overloaded print to print to user screen.
         public  void print(PrintWriter out)
              //want to print out the Key and all the Messages
              //associated with that key
              Set keys = AlertMap.keySet();          // The set of keys in the map.
              Iterator keyIter = keys.iterator();
              out.println("The map contains the following associations:");
              out.flush();
              while (keyIter.hasNext()) {
                    Object key = keyIter.next();  // Get the next key.
                    Object value = AlertMap.get(key);  // Get the value for that key.
                   //out.flush();
                   /* out.println( "   (" + key + "," + value + ")" );
                   out.flush();*/
                   // out.println("------------------\n");
                   out.println("EntityID: " + key + "\n"
                                 + "Message: " + value + "\n");
                   //out.println("------------------\n");
                   out.flush();
         void add(Message msg)
              //getting the position of the List by EntityID if avaiable
              List<Message> AlertList = AlertMap.get(msg.Serial);
              //checking to see if there is a unique Key already in the Map.
              if (AlertList == null)
                   //if there isnt a key in the map, add a new key, and a new List mapping
                   //to the key EntityID;
                     AlertList = new ArrayList<Message>();
                     AlertMap.put(msg.Serial, AlertList);
                     AlertList.add(msg);
              else
              //adding message to List
                   AlertList.add(msg);
    }Here's my message class:
    package parser;
    //this class will hold the Event/Message
    import java.util.List;
    import java.util.HashMap;
    import java.util.Map;
    import java.util.ArrayList;
    import java.util.Set;
    import java.util.Iterator;
    public class Message {
         String Identifer;
         String Serial;
         String Node;
         String NodeAlias;
         String Manager;
         String Agent;
         String AlertGroup;
         String AlertKey;
         String Severity;
         String Summary;
         String StateChange;
         String FirstOccurance;
         String LastOccurance;
         String InternalLast;
         String EventId;
         String LocalNodeAlias;
         Message()
               Identifer = "";
               Serial = "";
               Node = "";
               NodeAlias = "";
               Manager = "";
               Agent = "";
               AlertGroup = "";
               AlertKey = "";
               Severity = "";
               Summary = "";
               StateChange = "";
               FirstOccurance = "";
               LastOccurance = "";
               InternalLast = "";
               EventId = "";
               LocalNodeAlias = "";
         void print()
              System.out.println("Identifer: " + this.Identifer + '\n'
                        + "Serial: " + this.Serial + '\n'
                        + "Node: " + this.Node + '\n'
                        + "NodeAlias: " + this.NodeAlias + '\n'
                        + "Manager: "  + this.Manager + '\n'
                        + "Agent: " + this.Agent + '\n'
                        + "AlertGroup: " + this.AlertGroup + '\n'
                        + "AlertKey: " + this.AlertKey + '\n'
                        + "Severity: " + this.Severity + '\n'
                        + "Summary: " + this.Summary + '\n'
                        + "StateChange: " + this.StateChange + '\n'
                        + "FirstOccurance: " + this.FirstOccurance + '\n'
                        + "LastOccurance: " +      this.LastOccurance + '\n'
                        + "InternalLast: " + this.InternalLast + '\n'
                        + "EventId: " + this.EventId + '\n'
                        + "LocalNodeAlias: " + this.LocalNodeAlias + '\n');
         public String toString()
              return ("Identifer: " + this.Identifer + '\n'
                        + "Serial: " + this.Serial + '\n'
                        + "Node: " + this.Node + '\n'
                        + "NodeAlias: " + this.NodeAlias + '\n'
                        + "Manager: "  + this.Manager + '\n'
                        + "Agent: " + this.Agent + '\n'
                        + "AlertGroup: " + this.AlertGroup + '\n'
                        + "AlertKey: " + this.AlertKey + '\n'
                        + "Severity: " + this.Severity + '\n'
                        + "Summary: " + this.Summary + '\n'
                        + "StateChange: " + this.StateChange + '\n'
                        + "FirstOccurance: " + this.FirstOccurance + '\n'
                        + "LastOccurance: " +      this.LastOccurance + '\n'
                        + "InternalLast: " + this.InternalLast + '\n'
                        + "EventId: " + this.EventId + '\n'
                        + "LocalNodeAlias: " + this.LocalNodeAlias + '\n');
    }I'm correctly populating my Messages sent to me from the client, I tested it and it works but iterating over them once the messages are inserted into the map is my issue.
    I'm not getting an error, just no output for the values
    here's how I'm adding the Messages to the MessageDB
    //This string is coming from a client
    String str = in.readLine();
    // creating a scanner to parse
    Scanner scanner = new Scanner(str);
    Scanner scannerPop = new Scanner(str);
    //Creating a new message to hold information
    Message msg = new Message();
    //place Scanner object here:
    MessageParser.printTokens(scanner);
    MessageParser.populateMessage(scannerPop, msg);
    System.out.println("-------PRINTING MESSAGE------\n");
    msg.print();
    System.out.println("----------END PRINT----------\n");
    System.out.println("-------Accessing data from Map----\n");
    MessageDB testDB = new MessageDB();
    testDB.add(msg);
    testDB.print();I know this code is ugly, I should make accessor and modifer functions for my Message class but for now I'm just trying to see if I this method is even going to work then I'm going to go about making it more protected.
    Also here is my output:
    that long mess is the incoming string from the client, and im parsing it up into tokens and assigning my message object certain values.
    Address of server: 0.0.0.0/0.0.0.0
    Server is bound to port: 2222
    Echo :UPDATE: "GATEWAY:@barneyfifedisconnectedMon Jun 11 16:46:12
    2007",446,"barneyfife","","ConnectionWatch","","Gateway","GATEWAY:",0,"A
    GATEWAY process  running on barneyfife has disconnected as username
    gateway",06/11/07 16:50:12,06/11/07 16:46:12,06/11/07 16:46:12,06/11/07 16:46:12,0,1,1,0,0,"",65534,0,0,0,"",0,0,0,"","",0,0,"",0,"",0,0,"","","","","","","","",0,
    0,"","","NCOMS",446,""
    Token [0]UPDATE: "GATEWAY:@barneyfifedisconnectedMon Jun 11 16:46:12 2007"
    Token [1]446
    Token [2]"barneyfife"
    Token [3]""
    Token [4]"ConnectionWatch"
    Token [5]""
    Token [6]"Gateway"
    Token [7]"GATEWAY:"
    Token [8]0
    Token [9]"A GATEWAY process  running on barneyfife has disconnected as username gateway"
    Token [10]06/11/07 16:50:12
    Token [11]06/11/07 16:46:12
    Token [12]06/11/07 16:46:12
    Token [13]06/11/07 16:46:12
    Token [14]0
    Token [15]1
    Token [16]1
    Token [17]0
    Token [18]0
    Token [19]""
    Token [20]65534
    Token [21]0
    Token [22]0
    Token [23]0
    Token [24]""
    Token [25]0
    Token [26]0
    Token [27]0
    Token [28]""
    Token [29]""
    Token [30]0
    Token [31]0
    Token [32]""
    Token [33]0
    Token [34]""
    Token [35]0
    Token [36]0
    Token [37]""
    Token [38]""
    Token [39]""
    Token [40]""
    Token [41]""
    Token [42]""
    Token [43]""
    Token [44]""
    Token [45]0
    Token [46]0
    Token [47]""
    Token [48]""
    Token [49]"NCOMS"
    Token [50]446
    Token [51]""
    Entering populate mssage inside case 0
    case 0: UPDATE: "GATEWAY:@barneyfifedisconnectedMon Jun 11 16:46:12 2007"
    case 1: 446
    case 2: "barneyfife"
    case 3: ""
    case 4: "ConnectionWatch"
    case 5: ""
    case 6: "Gateway"
    case 7: "GATEWAY:"
    case 8: 0
    case 9: "A GATEWAY process  running on barneyfife has disconnected as username gateway"
    case 10: 06/11/07 16:50:12
    case 11: 06/11/07 16:46:12
    case 12: 06/11/07 16:46:12
    case 13: 06/11/07 16:46:12
    DEFAULT: 0
    DEFAULT: 1
    DEFAULT: 1
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: 65534
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: 0
    case 24: ""
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: 0
    DEFAULT: 0
    case 37: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: 0
    DEFAULT: 0
    DEFAULT: ""
    DEFAULT: ""
    DEFAULT: "NCOMS"
    DEFAULT: 446
    DEFAULT: ""
    -------PRINTING MESSAGE------
    Identifer: UPDATE: "GATEWAY:@barneyfifedisconnectedMon Jun 11 16:46:12 2007"
    Serial: 446
    Node: "barneyfife"
    NodeAlias: ""
    Manager: "ConnectionWatch"
    Agent: ""
    AlertGroup: "Gateway"
    AlertKey: "GATEWAY:"
    Severity: 0
    Summary: "A GATEWAY process  running on barneyfife has disconnected as username gateway"
    StateChange: 06/11/07 16:50:12
    FirstOccurance: 06/11/07 16:46:12
    LastOccurance: 06/11/07 16:46:12
    InternalLast: 06/11/07 16:46:12
    EventId: ""
    LocalNodeAlias: ""
    ----------END PRINT----------
    -------Accessing data from Map----
    The map contains the following associations:
    Serial (key): 446As you see it is printing the correct Serial, but it seems like it isn't even entering into the printing the value associated with that key.
    NOTE: if you need more code I can supply my parsing functions as well.
    Thanks!
    Message was edited by:
    lokie
    NOTE: the code formating screws up the < >
    it should be HashMap<String,List<Message>>();
    Message was edited by:
    lokie
    Message was edited by:
    lokie
    Message was edited by:
    lokie

    Thanks Good Idea :)
    Heres a small version of the same problem:
    MainTest
    package ds;
    public class MainTest {
         public static void main(String []args)
              //create a new message object, assign it some values.
              //note: Serial is the key to the map.
              Message m1 = new Message();
              m1.Identifer = "Test Message";
              m1.Serial = "222";
              m1.Agent = "AgentTest";
              m1.Identifer = "IdentiferTest";
              //test to see if it assigned right.
              m1.print();
              //insert into a map
              MessageDB dbTest = new MessageDB();
              dbTest.add(m1);
              //print key/values
              dbTest.print();
    }Here is the 2 classes that I use, Message and MessageDB.
    The problem is in the MesesageDB i'm getting the following error:
    Exception in thread "main" java.lang.ClassCastException: java.util.ArrayList cannot be cast to ds.Message
         at ds.MessageDB.print(MessageDB.java:43)
         at ds.MainTest.main(MainTest.java:28)
    package ds;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.io.*;
    //this class should store all the Messages or "Events" and
    //you can access them based on their Serial key.
    public class MessageDB
         //database to hold the information
         //     holds the Alerts/messages
         Map<String, List<Message>> AlertMap;
         //Constructor
         MessageDB()
              AlertMap = new HashMap<String, List<Message>>();
         //print, outputs the contents of the hashMap
         public void print()
            //want to print out the Key and all the Messages
              //associated with that key
              Set keys = AlertMap.keySet();          // The set of keys in the map.
              Iterator keyIter = keys.iterator();
              System.out.println("The map contains the following associations:");
              while (keyIter.hasNext()) {
                    Object key = keyIter.next();  // Get the next key.
                    Object value = AlertMap.get(key);  // Get the value for that key.
                    System.out.println( "Serial (key): " + key + "\n");
                    System.out.println("value: " + ((Message)value) + "\n");
                    //((Message)value).print();
         ///adds a message (value) to the map, along with the key.
         void add(Message msg)
              //getting the position of the List by EntityID if avaiable
              List<Message> AlertList = AlertMap.get(msg.Serial);
              //checking to see if there is a unique Key already in the Map.
              if (AlertList == null)
                   //if there isnt a key in the map, add a new key, and a new List mapping
                   //to the key EntityID;
                     AlertList = new ArrayList<Message>();
                     AlertMap.put(msg.Serial, AlertList);
                     AlertList.add(msg);
              else
              //adding message to List
                   AlertList.add(msg);
    }Here is the message class you'll need to use to compile:
    package ds;
         public class Message {
              String Identifer;
              String Serial;
              String Node;
              String NodeAlias;
              String Manager;
              String Agent;
              Message()
                    Identifer = "";
                    Serial = "";
                    Node = "";
                    NodeAlias = "";
                    Manager = "";
                    Agent = "";
              void print()
                   System.out.println("Identifer: " + this.Identifer + '\n'
                             + "Serial: " + this.Serial + '\n'
                             + "Node: " + this.Node + '\n'
                             + "NodeAlias: " + this.NodeAlias + '\n'
                             + "Manager: "  + this.Manager + '\n'
                             + "Agent: " + this.Agent + '\n');
              public String toString()
                   return ("Identifer: " + this.Identifer + '\n'
                             + "Serial: " + this.Serial + '\n'
                             + "Node: " + this.Node + '\n'
                             + "NodeAlias: " + this.NodeAlias + '\n'
                             + "Manager: "  + this.Manager + '\n'
                             + "Agent: " + this.Agent + '\n');
         }It doesn't like this line as I suspected:
    System.out.println("value: " + ((Message)value) + "\n");

  • Why can't I print out the body of my emails,they come out with the right missing.

    When ever I try to print out my emails(gmail) everything under the Mail column prints,but the right side is missing. I have tried everything I know and nothing works. I can't move it over and I can use the print selection. Also I can't print out the entire email if it is more than 1 page.

    First try to reset Firefox printer settings, if you are still unable to print you can then reset '''all '''firefox printer settings.
    ''Reset firefox printer settings:''
    1. In the Location bar, type about:config and press Enter.
    2. In the Filter field, type print.print_printer.
    3. Right-click on the print.print_printer setting and select Reset.
    4. At the top of the Firefox window, click on the Firefox button (File menu in Windows XP) and then click Exit.
    ''The first way was just simple reset of firefox printer settings. However, if it failed to solve the problem then you need a full reset of all firefox printer settings. ''
    1. Open your profile folder: At the top of the Firefox window, click on the Firefox button, go over to the Help menu (on Windows XP, click on the Help menu) and select Troubleshooting Information. The Troubleshooting Information tab will open.
    2. Under the Application Basics section, click on Open Containing Folder. A window with your profile files will open. Note: If you are unable to open or use Fire​fox, follow the instructions in Finding your profile without opening Firefox.
    3. At the top of the Firefox window, click on the Firefox button (File menu in Windows XP) and then click Exit.
    4. In your profile folder, copy the prefs.js file to another folder to make a backup of it.
    5. Open the original prefs.js file in a text editor (such as Wordpad).
    6. Remove all lines in prefs.js that start with print. and save the file.
    See:
    [[Firefox prints incorrectly]]

  • HT4356 I don't have wireless printer. How can I print out the document?

    I don't have a wireless printer. How can I print out the document from regular printer?

    iOS AirPrint Printers  http://support.apple.com/kb/HT4356
    How to Print from Your iPad: Summary of Printer and Printing Options
    http://ipadacademy.com/2012/03/how-to-print-from-your-ipad-summary-of-printer-an d-printing-options
    Print from iPad / iPhone without AirPrint
    http://ipadhelp.com/ipad-help/print-from-ipad-iphone-without-airprint/
    How to Enable AirPrint on a Mac and Use Any Printer
    http://ipadhelp.com/ipad-help/how-to-use-airprint-with-any-printer/
    iPad Power: How to Print
    http://www.macworld.com/article/1160312/ipad_printing.html
    Check out these print apps for the iPad.
    Print Utility for iPad  ($3.99) http://itunes.apple.com/us/app/print-utility-for-ipad/id422858586?mt=8
    Print Agent Pro for iPad ($5.99)  http://itunes.apple.com/us/app/print-agent-pro-for-ipad/id421782942?mt=8   Print Agent Pro can print to many non-AirPrint and non-wireless printers on your network, even if they are only connected to a Mac or PC via USB.
    FingerPrint turns any printer into an AirPrint printer
    http://reviews.cnet.com/8301-19512_7-57368414-233/fingerprint-turns-any-printer- into-an-airprint-printer/
     Cheers, Tom

  • I can't get my printer to print out the claim code. HP7520-e All in one

    Whenever I press the web icon on my printer, it gives me the printers email address, but there is no place to press to get it to print out a claim code.

    I can't get my HP Photosmart 7520 e-All-in-One to print out the claim code, either.  I have had problems ever since they switched from ePrintCenter to HP Connected.
    This is my second HP Photosmart 7520 e-All-in-One, the first one quit printing and they said I would have to buy a new Printhead Assembly ($73.30), and throw away my partially used ink cartridges and buy new ones ($104 to replace my 5 HP 564XL High Yield Original Ink Cartridges!) It made more sense to buy whole a new printer for $200!
    A. I found it at <http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c03379963&lc=en&product=5199463&tmp... under FAQs !!! 
    Truncated piece: product=5199463&tmp_track_link=ot_search#N632>
    See below:
    =======================================================================================
    What if I lose my printer code before registering?
    If you lose your printer code before registering your printer, you can print a new information page to secure a new printer code. Use the following steps to disable and re-enable Web Services to print a new information page.
    On the printer control panel, touch the Web Services icon (). The Web Services window opens.
    Touch Settings, touch Remove Web Services, and then touch Yes.
    Touch the Web Services icon () again. The Web Services window opens.
    Touch Settings, and then touch Enable Web Services.
    Touch Yes to accept the terms of use. The printer prints an information page.
    If the printer does not print an information page, touch Print Report.
    NOTE:The information page contains the printer claim code that you use to register your printer.
    =======================================================================================
    It printed out a page titled: Make the Most of Your Printer
    The printer's claim code is in item number 3.

  • Can we print out the XY GRAPH?

    I 'D like to print out my XY GRAPH results. I know how to print out the xy-plot picture result. but xy-plot picture is not good at differentiating too many curves. (one curve is ok), xy graph is more powerful at differentiating more curves, but i just don't know how to print out the xy-graph only( not the whole vi front panel).

    Hi,
    Recently I've answered on the question how to save image of the graph into the file. See
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=137&HOID=5065000000050000001501010...
    If you want to print image you can do the following things:
    1.Save image into the temporary file with above described technique.
    2.Create "standard" report using "Function->Report Generation->New Report.vi"
    3.Append image file to report using "Function->Report Generation->Append Image toreport.vi"
    4.Print report using "Function->Report G
    eneration->Print report.vi"
    5.Close report using "Function->Report Generation->Dispose report.vi"
    6. And delete temporary file.
    Actually this is just an idea. I haven't test it yet, but I think this will work.
    The example is attached.
    Good luck.
    Oleg Chutko.
    Attachments:
    Print.vi ‏54 KB

  • I'd like to print an 8x12 and cut it in half to make two 4x12 panorama type pictures.  Is there any way to combine two pictures (each cropped to 4x12) into one frame so I can print out the 8x12 and trim it after printing?

    I'd like to print an 8x12 and cut it in half to make two 4x12 panorama type pictures.  Is there any way to combine two pictures (each cropped to 4x12) into one frame so I can print out the 8x12 and trim it after printing?

    To clarify, I want to be able to make a flie I can take to a photo printing place (not for my own printer) so they can print it and I crop it.  The place I used to print at used to print an 8"x12" for the same price as 8"x10" (now they may only do 8x10 and I would need to keep the ratio the same so it would be two 3.3"x10" pics on an 8x10").  Any help is veryappreciated!

  • How do i print out the keyboard viewer?

    I use different languages and need to use the different special characters so am switching among different keyboard layouts frequently.  I use the (on-screen) "Keyboard Viewer", but would like to print out the "Keyboard Viewer" for each language that I frequently use.  I can't see how to do this other than with e.g. screen capture which is less than ideal.  Does anybody know where there are e.g. images of each keyboard layout (including special characters you get by hitting "shift" etc.)?

    TThis page will give you normal and shift
    How to identify keyboard localizations - Apple Support
    FFor the option and option plus shift levels, you will have to use screen capture

  • Print out the contents present in Modal Window on a paper

    Hi,
    Can anyone suggest me how to take print out the contents of a HTML Modal Window.
    Any Inputs on this can be appreciated.
    Thanks
    Ram

    I tried this Finder drag method & discovered that it is very important to set the blank TextEdit document to plain text before the drag (from the format menu or with Cmd-shift-t). If you don't, TextEdit attempts to load the content of the files!
    Once I discovered this, I tried the method with Find (Cmd-F) results & it works for that, too. This means that by choosing the right combination of search location(s) & search criteria, you can extend the method to filter the list to just about any files you want, which could be very handy.
    For instance, set the "Kind" criteria to "QuickTime Movie" & location to "Computer" & you get a list of every QT movie. Or set the search location to the folder containing the movies of interest & you get all of them, including ones in subfolders. You could also use the 'date created' or other search criteria to filter the list to a specific subset of movies (or whatever).
    If you need to do this often, you could create one or more 'Smart Folders' with the criteria preloaded for each search.
    The only drawback I see for either Finder based method is the full path one. If you are getting results from just one or a few folders, Find & Replace can delete any of the path name fairly easily, but it becomes a chore if there are a lot of different ones. Some other text editor, like TexEdit Pro, that supports grep searches would be handy here, but since I'm not up to speed on grep, someone else will have to explain how to use it for this, if they want.

  • Help with printing out the # of quarters, nickels, dimes, and etc... using

    Hi, im new to java and im using a program called blue j.
    anyway heres my question.
    , I recommend you dont do the program for me, but rather help gear me in the right direction of things.
    In this program they want me to have it print out the # of dollars,quarters,nickels,dimes, and pennies.
    They have provided me with a base program to start off with which is this.
    import chn.util.*;
    public class ComputeChange
       *  The main program for the Change class
       * @param  args  The command line arguments - not used
      public static void main(String[] args)
        double purchase, cashPaid, temp;
        int change, remainder, dollars, quarters, dimes, nickels, pennies;
        ConsoleIO keyboard = new ConsoleIO();
        System.out.print("Enter amount of purchase --> ");
        purchase = keyboard.readDouble();
        System.out.print("Enter amount of cash paid --> ");
        cashPaid = keyboard.readDouble();
        temp = cashPaid - purchase;
        dollars = (int) temp;
        temp = temp - (int)temp + 0.0000001;
        change = (int)(temp * 100);
        System.out.println();
        System.out.println("$" + dollars + "." + change);
    }Ive been given the amounts 23.06 for amount of purchase
    and 30.00 for the amount paid. that should give me the difference of $6.94
    It should print out the amount of change as the following
    6 dollars
    3 quarters
    1 dime
    1 nickel
    1 penny.
    IVe tried a few methods for printing out the # of each coin type, but i simply dont get how they are using temp or what type of funciton i need to follow. Any hints or pointings in the right direction would help. Since i need to learn this.
    Thanks a lot and i hope i can get some tips. !
    ~Jbinks

    And here's my contribution to the scratch batch... :o)
    class Coins {
        private java.util.Map<Coin, Integer> count = new java.util.HashMap<Coin, Integer>();
        enum Coin {
            DOLLAR(100), QUARTER(25), DIME(10), NICKEL(5), PENNY(1);
            private final int value;   
            Coin(int value) { this.value = value; }
            public int value() { return value; }
        public Coins(int centsValue) {
            for (Coin c : Coin.values()) {
                count.put(c, centsValue / c.value());
                centsValue %= c.value();
        public void display() {
            for (Coin c : Coin.values()) {
                System.out.println(c + ": " + count.get(c));
    public class CoinsDemo {
        private static java.util.Scanner keyboard = new java.util.Scanner(System.in);
        public static void main(String[] args) {
            int price = getPennies("Enter amount of purchase --> ");
            int paid = getPennies("Enter amount of cash paid --> ");
            new Coins(price - paid).display();
        private static int getPennies(String prompt) {
            System.out.print(prompt);
            double d = keyboard.nextDouble();
            System.out.println();
            return (int)(d * 100);
    }

  • I need to print out the response forms.  How do I do it?

    I need to print out the response forms.  How do I do it?

    They are saved as PDF files, so you just need to install Adobe Reader, which you can download for free: http://get.adobe.com/reader/

Maybe you are looking for

  • I can't uninstall, change or re-install itunes

    i recently removed an unused hard-drive from my computer. it was the old drive from my previous computer that i kept to use for storage. i wiped the drive using dban and then proceeded to use it as strictly a storage drive. later, i purchased a large

  • Project Upgraded from xcode 3.2 to xcode 4.5 give semantic errors

    I upgraded my project from xcode 3.2 to xcode 4.5 My code is platform independent and it compiles sucessfully on Windows and Linux with out any errors But on Mac 10.7.4 and xcode 4.5 it gives semantic errors - "Explicit specialization has extraneous,

  • How to get the Objects which are used in the webi Report.

    Hi Expert, I am trying to get the list of  WebI reports and Objects which are present in the report at  BO 4.0. I can able to get details  for only the list of reports and universes. Could  any one help me to get those details. Regards, Murali S

  • HP Pavillion model # p6654y System Recovery

    I purchased a HP Pavillion model # p6654y about one year ago.  Recently, when my son was using the computer, the system became completely unresponsive. He uses gaming sites, so he may have caught a virus.  I don't know.   I ordered the recovery disks

  • Call Java Method From C#

    I have a complete Java Classes solution working perfectly and i would like to "re-use" it from my new main C# program. Actually, i don't know which process could authorize to invoke Java method from C# method. Can anybody help me ? Thanks in advance