Making a Card in PSE9

I have attempted to create a card with PSE9 and HP 7700.The application prints all of the artwork and photo on the page and as I am not an Origami expert I am unable to fold it to create a card.What am I doing wrong?

If you're using the Kodak templates in Create, you can print them, but it's not easy. Are you using windows or a Mac?
Generally speaking, unless you have pre-scored cards from one of the stationery companies like Avery, it's probably simplest to do it as a four fold card, which will entail turning off the Center Image checkbox and moving the blue print outline to the upper left quadrant of the page.
However, I honestly would start from scratch in the editor without messing with those templates if I wanted to print at home. It's much easier, and the content panel gives you access to all the doodads you'd have in Create, anyway. And if I had Avery or Fellowes ow whatever brand of cardstock, I'd use their templates from their websites in the editor instead of the Create templates, too.

Similar Messages

  • I'm making a card on iphoto. It looks great except one of the borders is red instead of white. I can't figure out how to change it

    I'm making a card on iphoto. It looks great except one of the borders is red instead of white. I can't figure out how to change it. Does anyone know how to do that?

    What theme are you using? Normally one can click on the layout button at the bottom, select the layout and the background color:
    OT

  • When making greeting card the picture comes out real small

    when making a greeting card, the picture comes out real small does not cover card?

    it's impossible to assist you without know some fundamentals such as the offending app, what version of OS X your machine has and a screen shot would really help.

  • Question - making rummy card game applet

    Hi, I am not sure if this is the right place to be putting this, if not please let me know. I'm trying to make an applet for the card game rummy for my final project for school. I was wondering if I could get some help on how to load a card image from a file and randomizing the images for the deal button or if not that then I am also trying a much simpler way due to time constraints. I was trying to make two arrays of strings: one for the facevalue of the card and another for the suit value, then randomize those and draw a string to the correct places for the dealt hand. I can't seem to get this to work well so far. Any help is greatly appreciated. Here is the code for the basic gui that I have now.
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.util.Random;
    import java.lang.*;
    public class CardGame extends Applet implements ActionListener {
         Button Deal;
         Button NewGame;
         Button PutDown;
         Color bgColor;
         Color rectColor;
         Image deck;
         MediaTracker mt;
         CheckboxGroup radioGroup;
         Checkbox radio1;
         Checkbox radio2;
         Checkbox radio3;
         Checkbox radio4;
         Checkbox radio5;
         Checkbox radio6;
         Checkbox radio7;
    **Its hard to tell but the arrays are commented out for now.     
         //String[] faceValue = {"ACE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN", "EIGHT", "NINE", "TEN", "JACK", "QUEEN", "KING"};
    //     String[] suitValue = {"CLUBS", "HEARTS", "SPADES", "DIAMONDS"};
         public void init()
              setLayout(null);
              mt = new MediaTracker(this);
              Deal = new Button("Deal");
              NewGame = new Button("New Game");
              PutDown = new Button("Put Down");
              Deal.setBounds(750, 450, 75, 25);
              NewGame.setBounds(750, 475, 75, 25);
              PutDown.setBounds(750, 425, 75, 25);
              add(Deal);
              add(NewGame);
              add(PutDown);
              Deal.addActionListener(this);
              NewGame.addActionListener(this);
              PutDown.addActionListener(this);
              radioGroup = new CheckboxGroup();
              radio1 = new Checkbox(" ", radioGroup, false);
              radio2 = new Checkbox(" ", radioGroup, false);
              radio3 = new Checkbox(" ", radioGroup, false);
              radio4 = new Checkbox(" ", radioGroup, false);
              radio5 = new Checkbox(" ", radioGroup, false);
              radio6 = new Checkbox(" ", radioGroup, false);
              radio7 = new Checkbox(" ", radioGroup, false);
              add(radio1);
              add(radio2);
              add(radio3);
              add(radio4);
              add(radio5);
              add(radio6);
              add(radio7);
              radio1.setBounds(143, 525, 10, 10);
              radio2.setBounds(222, 525, 10, 10);
              radio3.setBounds(301, 525, 10, 10);
              radio4.setBounds(380, 525, 10, 10);
              radio5.setBounds(459, 525, 10, 10);
              radio6.setBounds(538, 525, 10, 10);
              radio7.setBounds(617, 525, 10, 10);
         public void Randomize()
              //this is where I need the help mostly.
         public void Stop()
         public void actionPerformed(ActionEvent evt)
         if (evt.getSource()== Deal)
                   setBackground(Color.green); //test
              else
                   Deal.setLabel("Not there, here!"); //another test
         if(radio1.getState())
                   setBackground(Color.blue); //just a test to make sure I know how to use the radio buttons
         public void paint(Graphics g) {
              g.drawString("Welcome to Rummy!!", 300, 50 );
              g.drawRect(100, 100, 600, 440);
              g.drawRect(110, 420, 75, 100);
              g.drawRect(190, 420, 75, 100);
              g.drawRect(270, 420, 75, 100);
              g.drawRect(350, 420, 75, 100);
              g.drawRect(430, 420, 75, 100);
              g.drawRect(510, 420, 75, 100);
              g.drawRect(590, 420, 75, 100);
              g.drawRect(110, 120, 75, 100);
              g.drawRect(190, 120, 75, 100);
              g.drawRect(270, 120, 75, 100);
              g.drawRect(350, 120, 75, 100);
              g.drawRect(430, 120, 75, 100);
              g.drawRect(510, 120, 75, 100);
              g.drawRect(590, 120, 75, 100);
              g.drawRect(300, 250, 75, 100);
              g.drawRect(380, 250, 75, 100);
              g.drawString("A S", 220, 445);
    }

    thanks for that...could I use something like this for the playing card class though:
    public class Card {
    public final static int SPADES = 0, // Codes for the 4 suits.
    HEARTS = 1,
    DIAMONDS = 2,
    CLUBS = 3;
    public final static int ACE = 1, // Codes for the non-numeric cards.
    JACK = 11, // Cards 2 through 10 have their
    QUEEN = 12, // numerical values for their codes.
    KING = 13;
    private final int suit; // The suit of this card, one of the constants
    // SPADES, HEARTS, DIAMONDS, CLUBS.
    private final int value; // The value of this card, from 1 to 11.
    public Card(int theValue, int theSuit) {
    // Construct a card with the specified value and suit.
    // Value must be between 1 and 13. Suit must be between
    // 0 and 3. If the parameters are outside these ranges,
    // the constructed card object will be invalid.
    value = theValue;
    suit = theSuit;
    public int getSuit() {
    // Return the int that codes for this card's suit.
    return suit;
    public int getValue() {
    // Return the int that codes for this card's value.
    return value;
    public String getSuitAsString() {
    // Return a String representing the card's suit.
    // (If the card's suit is invalid, "??" is returned.)
    switch ( suit ) {
    case SPADES: return "Spades";
    case HEARTS: return "Hearts";
    case DIAMONDS: return "Diamonds";
    case CLUBS: return "Clubs";
    default: return "??";
    public String getValueAsString() {
    // Return a String representing the card's value.
    // If the card's value is invalid, "??" is returned.
    switch ( value ) {
    case 1: return "Ace";
    case 2: return "2";
    case 3: return "3";
    case 4: return "4";
    case 5: return "5";
    case 6: return "6";
    case 7: return "7";
    case 8: return "8";
    case 9: return "9";
    case 10: return "10";
    case 11: return "Jack";
    case 12: return "Queen";
    case 13: return "King";
    default: return "??";
    public String toString() {
    // Return a String representation of this card, such as
    // "10 of Hearts" or "Queen of Spades".
    return getValueAsString() + " of " + getSuitAsString();
    } // end class Card
    except now how would I make something like this random I know theres a bunch of work before that, but just curious. Thanks

  • Making Greeting Cards in Pages

    I am very frustrated. I am so used to Page Maker and the way it worked. I was able to make greeting cards with it. I seem to not be able to do it with Pages. In Page Maker I divided the document in two. I could print a card on the top half as well as the bottom half. I used guidelines to divide the document in half both horizontally as well as vertically. I would insert my graphic on the right side and be able to move it around where I wanted it. I would also put a text box on the right side and center that as well. For the life of me I cannot get it to do that with Pages. I divided the document in half with guidelines but cannot get my graphic to go on the right side nor can I move it around. My text goes all over the place. I cannot center it on the right side. I am so used to being able to move my graphics and text around. Is there any way I can do in Pages what I used to do in Page Maker? What am I doing wrong? I sure do miss Page Maker.

    Hi Roberta,
    Don't let your frustration wear you down. Pages works great for greeting cards. It seems from your discussion that you're producing either tent or book fold cards. Neither is a problem.
    First for your text. I recommend using the Layout view from the view menu. then click somewhere off the page (but still in the Pages window) so that the text cursor is no longer visible. Once that is done click the Objects icon in the tool bar and select Text. You will notice that a text box shows up on your page with the cursor blinking inside. Open the Inspector and click on the third icon from the left at the top of the inspector. This is the Wrap Inspector. Click in your text box to make sure it is selected, then click "fixed on page" in the inspector. You can then move the text box anywhere on the page you wish (by dragging) and you can rotate and resize it any way you want using commands in the various inspector panels.
    Inserting images is similar. Simply click on the insert menu, and click on choose. Then find the image you want and click on insert. Bingo, the image is on the page. Select the image by clicking anywhere on it and then go to the inspector and make sure "fixed on page" is selected in the Wrap Inspector.
    You can do the same basic operations as many times as you like and once each object is "fixed on page" you can move it or reorient it at will. Another poster in this group advised reading the manual and practicing. I entirely agree and think you will find Pages to be rather straight forward to work with.
    One other thing you may want to consider is creating a template of your cards to save time each time you want to create a new one. The manual (or help system) provides excellent guidance on template creation and saving.
    Andy H.

  • Making a card from blue mountain-will not print

    Using Blue Mountain to make a card and new printer will not print.

    flagman32
    Welcome to the HP Community Forum.
    I checked;  Blue Mountain is apparently an e-card service.  I am not willing to check that far into that; I don't sign / check / click anything in which I have no interest or need for the product.  You might want to check what others have to say about the service.
    I can perhaps help you get your printer ready to print.
    If you have not done so, please install the Full Feature Software for your Printer:
    Install Full Feature Software – Printer
    More:
    Printing Preferences
    Printing Preferences help your printer know what to expect -- for example, when you are printing cards, photos, or mixed content, it is important that you tell your Printer which tray to use, what kind of paper you are using, and what size and thickness of paper to to expect (Media type).
    When you print card stock, you want to make sure the printer expects "thick" paper --you might try Media type Brochure matte or something similar.
    Click the Kudos Thumbs-Up to show you appreciate the help.
    Click Accept as Solution when the Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • I am making a card game....

    and using Swing for the graphics. First, thanks to all for reading my post and
    for their help. My problem, is, I can display hands that should be oriented
    horizontally (North/South, for example) correctly, but I am having difficulties
    displaying hands that should be oriented vertically (East/West). To display
    hands of 13 cards, I first wrote a HorizontalHandDisplay class. This works
    perfectly and displays exactly what I want. You can see it here:
    http://home.austin.rr.com/jorus5/HHandDisplay.jpg
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.geom.*;
    public class HorizontalHandDisplay extends JPanel{
      private Hand hand;
      private boolean faceup;
      public HorizontalHandDisplay(Hand h,boolean faceup) {
        hand = h;
        this.faceup=faceup;
        setPreferredSize(new Dimension(300,125));
        setBackground(new Color(0,100,0));
        update();
      private void update() { //This puts the card Images on the screen
        MediaTracker tracker = new MediaTracker(this);
        ImagePanel imagePanel;
        for(int i = 0; i<hand.size(); ++i) {
          Card c = hand.getCard(i);
          if (faceup)
         imagePanel = new ImagePanel("cards/" + c + ".gif");
          else
         imagePanel = new ImagePanel("cards/back.gif");     
          tracker.addImage(imagePanel.getImage(),0);
          try{
         tracker.waitForAll();
          catch(InterruptedException e) {
         throw new Error("" +e);
          add(imagePanel);
        validate();
      public static void main(String[] args) {
        JFrame frame = new JFrame("Horizontal Hand Display Tester");
        Container main = frame.getContentPane();
        main.setLayout(new BorderLayout());
        HorizontalHandDisplay display = new HorizontalHandDisplay(Hand.getRandomHand(),true);
        HorizontalHandDisplay display2 = new HorizontalHandDisplay(Hand.getRandomHand(),true);
        main.add(display,BorderLayout.NORTH);
        main.add(display2,BorderLayout.SOUTH);
        frame.setSize(1000,1000);
        frame.setfaceup(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      public void paintComponent(Graphics g) { //This rotates the JPanel 180
        super.paintComponent(g);               //degrees; it looked wrong
        Graphics2D g2d = (Graphics2D)g;        //upside-down, so I flipped it
        AffineTransform origXform = g2d.getTransform();
        AffineTransform newXform = (AffineTransform)(origXform.clone());
        int xRot = this.getWidth()/2;
        int yRot = this.getHeight()/2;
        newXform.rotate(Math.toRadians(180),xRot,yRot);
        g2d.setTransform(newXform);      
    }As I said, this is perfect. When I resize the panel, the cards stay in the middle
    of the picture, for example. Anyway, my problem came when I tried to make a
    Vertical type of this. I changed very little, yet it doesn't work. Here is what
    I am going for: http://home.austin.rr.com/jorus5/Example.JPG This is just
    cutting and pasting; I have not gotten it to look like this. When I use the code
    I wrote, this is what actually happens: http://home.austin.rr.com/jorus5/VHandDisplay1.JPG
    However, I have noticed that when I resize and make the height small, you can
    see the cards like this: http://home.austin.rr.com/jorus5/VHandDisplay2.JPG
    .(Sorry for the iamge corruption; don't know how that happened; it doesn't really
    look so garbled).
    Anyway, if anyone has any ideas why the Vertical form isn't working, I would be
    incredibly appreciative. I do not know what is wrong, and was hoping another
    set of eyes would help. Here is my code that produces this bad vertical panel:
    Thank you very much!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.geom.*;
    public class VerticalHandDisplay extends JPanel{
      private Hand hand;
      private boolean faceup;
      public VerticalHandDisplay(Hand h,boolean faceup) {
        hand = h;
        this.faceup=faceup;
        setPreferredSize(new Dimension(125,300)); //Here is one of the few lines that changes going from Horizontal to Vertical
        setBackground(new Color(0,100,0));
        update();
      private void update() { //This is what displays the cards
        MediaTracker tracker = new MediaTracker(this);
        ImagePanel imagePanel;
        for(int i = 0; i<hand.size(); ++i) {
          Card c = hand.getCard(i);
          if (faceup)
         imagePanel = new ImagePanel("cards/" + c + ".gif");
          else
         imagePanel = new ImagePanel("cards/back.gif");
          tracker.addImage(imagePanel.getImage(),0);
          try{
         tracker.waitForAll();
          catch(InterruptedException e) {
         throw new Error("" +e);
          add(imagePanel);
        validate();
      public static void main(String[] args) {
        JFrame frame = new JFrame("Vertical Hand Display Tester");
        Container main = frame.getContentPane();
        main.setLayout(new BorderLayout()); 
        VerticalHandDisplay vd = new VerticalHandDisplay(Hand.getRandomHand(), true);
        VerticalHandDisplay vd2 = new VerticalHandDisplay(Hand.getRandomHand(), true);
        main.add(vd,BorderLayout.WEST);
        main.add(vd2,BorderLayout.EAST);   
        frame.setSize(1000,1000);
        frame.setfaceup(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      public void paintComponent(Graphics g) { //This rotates the panel 90
        super.paintComponent(g);               //degrees, so that it is
        Graphics2D g2d = (Graphics2D)g;        //oriented vertically instead
        AffineTransform origXform = g2d.getTransform(); //of horizontally
        AffineTransform newXform = (AffineTransform)(origXform.clone());
        int xRot = this.getWidth()/2;
        int yRot = this.getHeight()/2;
        newXform.rotate(Math.toRadians(90),xRot,yRot);
        g2d.setTransform(newXform);
    }PS The ImagePanel class is just a class that extends JPanel and in it's paintComponent(Graphics g)
    method has a g.drawImage() line. Here is the code for it, just in case: import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Image.*
    public class ImagePanel extends JPanel {
      Toolkit toolkit = Toolkit.getDefaultToolkit();
      Image image;
      String imageName;
      MediaTracker tracker;
      public ImagePanel (Image image){
        this.image=image;
        tracker = new MediaTracker(this);
        tracker.addImage(image,0);
        try{
          tracker.waitForAll();
        catch(InterruptedException e) {
          throw new Error("" + e);
        setSize(image.getWidth(this),image.getHeight(this));
      public ImagePanel(String s) {
        image = toolkit.getImage(s);
        imageName = s;
         tracker = new MediaTracker(this);
        tracker.addImage(image,0);
        try{
          tracker.waitForAll();
        catch(InterruptedException e) {
          throw new Error("" + e);
        setSize(image.getWidth(this),image.getHeight(this));
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.drawImage(image,0,0,this);
      public int getWidth() {
        return image.getWidth(this);
      public int getHeight() {
        return image.getHeight(this);
      public Image getImage() {
        return image;
      public String getImageName() {
        return imageName;

    You need to learn more about threading in swing. here is exellent chapter with example how to use timed paint in swing.
    http://developer.java.sun.com/developer/Books/javaprogramming/threads/chap9.pdf
    Here are links to articles in swing connection. You will be interested in topics about threads and using swing timer:
    http://java.sun.com/products/jfc/tsc/articles/
    It will greatly improve your app.
    Regards

  • Help making holiday cards -- do I have a bug in iPhoto 11?

    I'm attempting to make holiday cards with photos and text but when I go to 'buy' it says I am using default text and then says I have text or photo boxes that are empty that MUST be filled before I finish. Can someone help?

    Each card theme has text boxes that you can fill in or not with text of your choice.  If you don't put in any text you will get that error message.  The cards have different layout, some with text boxes and some without.  Check to see what layout you're using and select the one without a text box or enter text into the text box.
    Happy Holidays

  • How do I delete the title while making a card?

    Hi everybody,
    I want to be able to take out the title as part of my Christmas card as shown....
    We don't need a title there and we love our card as it is so we don't want to change the theme either.  If this is possible to take out the title text box, can I also make the regular body text box much larger?  I only want it on that half of the card but not that small.  Thanks for all your help!

    You can not "take the title out" - Just Place a single space in the title so nothing prints
    If you search the forums there have been posts describing how to modify text boxes in books - thoses might apply to cards too - give it a try
    And
    Before ordering your card preview it using this method - http://support.apple.com/kb/HT1040 - and save the resulting PDF for reference - the delivered card(s) will match it.
    LN

  • Making contact card name clickable?

    I've asked this to some of our internal folks who said it's not possible, but as I search around, it seems like it should be!
    When I hover over someone's name in Outlook, the business card pops up. Currently the name of that user is not "clickable" - I can only highlight/copy, etc. I have seen examples where these names can hyperlink to user profile sites. It looks like
    it can be done via registry setting?
    I'd love the chance to prove the naysayers wrong - can anyone help?

    Hi,
    In Office 2013, you can customize Contact Cards to turn off certain features and specify where presence icons are displayed. For the
    Contact tab on the Contact Card, you can replace labels and values. For your reference:
    http://technet.microsoft.com/en-in/library/ff631135(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/bb446002.aspx
    I'm not sure if your request is possible, I've tried but didn't managed to do it. You can post in Outlook for Developers forum to confirm this:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    The reason why we recommend posting appropriately is you will get the most
    qualifiedpool of respondents,
    and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How Do You Print Business Cards in PSE9?

    I'm trying to print my design on business cardstock.  How do you print to Avery Cardstock or Avery Address Labels in PSE 9?
    Thanks in advance.

    http://www.avery.com/avery/en_us/Templates-%26-Software/Templates/Cards/Business-Cards/Bus iness-Card-_-Wide-8-per-sheet-_Adobe-Photoshop.htm?N=0&refchannel=c042fd03ab30a110VgnVCM10 00002118140aRCRD
    There are available several Avery  templates (for download) which open in Photoshop and PS Elements. directly.

  • I'm making title cards, need suggestions re: fonts, etc.

    h'lo all,
    after getting (very) frustrated with iMHD6 title durations, I realized I could make my own white-on-black title cards in PhotoShop by creating a white typ/black background jpeg, which I could drag in to iMHD6, then set whatever length I chose. It works pretty well, except that fonts that look great in PhotoShop get pretty "soft" when they come in to iMHD6. I've been trying the following:
    320 x 240, 150ppi
    Times New Roman, 10 point
    save as jpeg, max quality.
    Any suggestions on changing the font, size, resolution, etc?
    many thanks

    Bill Myers wrote:
    .. 320 x 240, 150ppi
    Times New Roman, 10 point..
    .. which is about a quarter of the res, NTSC offers.. so iM 'blows-up' your painting and esp. the serifs of your font get blurry .. addtional increased by the high contrats of plain b/w.
    720x480 (dpi is of no use for video, doesn't matter 300 or 5...) as res - if your project is 'Standard' not HiDef or widescreen..
    avoid, if you use serif fonts, too small font size.. 30-40 pix is perhaps a benchmark => otherwise the tiny serifs at the 'feed' of a typo gets 'sub pixel' = flimmer in video..

  • IPhoto freezes when I'm making a card.

    Ive created many projects over the years.Iphoto freezes.
    Ive rebuilt iPhoto, but it is still happening. ??

    What theme are you using? Normally one can click on the layout button at the bottom, select the layout and the background color:
    OT

  • I updated the Firefox toolbar recently. Since then I've noticed the security symbol (padlock) no longer appears when on secure sites, e.g. making credit card payments card or on my bank website. Can this be corrected as it's reassuring to have it there?

    Nothing to add to question. Hope it's clear?

    Credit the-edmeister
    As of Firefox 4.0, the Statusbar is gone and the "lock" with it. Security information about a web page is shown by the Site Identity Button.
    The old padlock could give users a false sense that a site is secure by not supplying all of the information about a site and only showed that there is a secure connection that didn't guarantee that you are connected to the right server. The Site Identity Button was introduced in Firefox 3.0 to show more complete "identity" information for HTTPS web pages.
    https://support.mozilla.com/en-US/kb/Site+Identity+Button
    You can add a padlock to the location bar with the Padlock add-on- https://addons.mozilla.org/firefox/addon/padlock-icon

  • What Apple software compares to Publisher for making business cards, etc?

    I have found that Pages and NeoOffice are not as intuitive nor are they as user friendly as Publisher. I have weaned myself off Word and PowerPoint and I would like to do the same with Publisher. Also, mail merge doesn't seem as easy using NeoOffice. I would like to think that there is some third party solution for this. Is there?

    Have you looked at this software?
    http://belightsoft.com/products/composer/overview.php
    They also have a program called Swift Publisher
    http://belightsoft.com/products/swiftpublisher/overview.php
    Is it because Pages/Keynote doesn't come with artwork already or don't have layouts, or something else specific that you're looking for?

Maybe you are looking for

  • How do I change my single ap subscription from one ap to a different one?

    I tried playing around with In Design but have decided I'd rather have my single ap be Photoshop. I don't want to upgrade, I just want to switch. I already uninstalled In Design from computer, but how I inform Creative Cloud that I no longer have In

  • Purchase order in the backend system

    hello all, we are using SRM 7.0, classic scenario. we are implementing BBP_CREATE_BE_PO_NEW BAdI to change some data that is transferred to the backend for the purchase order creation. i tried to set external breakpoint for wf-batch. however, it seem

  • Grid Control 에서 새 target node를 추가한 이후에 기존OMS와 새 Agent 간의 HeartBeat fail 해결방

    Grid Control 에서 새 target node를 추가한 이후에 기존OMS와 새 Agent 간의 HeartBeat fail 해결방법 ========================================================================= 다음은 Grid Control 을 설치한 이후에 node를 관리해 오다가 새로운 관리할 Target node를 추가한 이후에 Grid Control 이 있는 node의 OMS와

  • Memory allocation in mobile phone ? pls. help.

    how can i come to know that how much memory is allocated for heap ? through codeing i want to know the heap and other memory allocaion detail. is there any library funcion ? what is difference between Shared Memory for Storage and heap? and what kind

  • X-Fi Elite Pro - What are the inputs behind the soundcar

    Hi, I recently bought the Razer Barracuda headset with 5. input connectors. Behind my soundcard i can see the symbol for microphone but the other inputs says? ,2,3,4 and has speaker symbols on em. How do i know which one is for sub and so on ? I cant