Using a Photosmart C7180 to create family calendars using MS Publisher. Using the monthly grid to em

bed text boxes and photos. So for a 30 day month we have 30 squares and maybe 20%-50% of the squares has some added data besides the numeric date. I hope I am being clear on how this is set up. The problem arises when I try to print more than one or two copies of that particular grid. Let's say I am printing the month of April. Publisher will give April 2012 and a grid with the numeric date for each day of the week in that month. Now I will insert text boxes to indicate the Sunday that Easter falls on. I will then insert text boxes for several in-law birthdays, a couple of grandchild birthdays, and a wedding anniversary. I will then insert pictures of the people involved into the "box" (date). If I try to print 8 copies of that month the first copy or two will be fine but then the remaining copies will start to drop the text and pictures I put into the grid. The only solution I have found that works is to re-boot the printer by disconnecting power cable and usb cable. That works sometimes. More often than not I have to reboot the whole system; a Dell 8400. It gets a little tedious rebooting the computer every couple pages multiplied by the 12 months that make up the calendar. Any suggestions would be appreciated.

Thx Everyone, I figured that out. It's simple and clear to me.

Similar Messages

  • How do I create a calendar like I did with the Appleworks Assistant?

    How do I create a calendar like I do with the Appleworks Assistant under Starting Points? I don't see any calendar templates in Pages.

    Pages doesn't have any such features. Pages do lack a lot that AW has. Nor can Number do it.
    Go to iworkcommunity.com and search for a calendar template.

  • Calendar Events by position in the month

    Is there a way to set a Calendar Event by postion in the month like every 1st Monday?

    Try the app Week Cal.

  • My calendar events are dropped after the month is over.  How can I stop that from happening?

    My calendar events are dropped after the month is over.  How can I prevent this from happening?

    Settings > Mail, Contacts, Calendars > [scroll way down to the Calendars section] Sync = "All events"

  • Someone used my email address to create an apple id. I changed the password because it is freaking me out. I want to report it to Apple but dont know how to go about it. I want the Apple ID deleted. How do I go about that?

    Someone used my email address to create an Apple ID. I logged in to appleid.apple.com and I changed the password because it is freaking me out. I want to report it to Apple but dont know how to go about it. I want the Apple ID deleted. How do I go about that? Is there also a way to ensure that the email address wont be used again by this person to create another Apple ID?
    This is compounded actually by a Gmail issue. I have had this email address for ages, since the start of the beta. But lately in the last year or so, I am getting mail that seems to be intended for other people but it is using my email address. It is probably one of them who created the Apple ID.

    Contact iTunes support: https://getsupport.apple.com/Issues.action

  • Inputing calendar - say 4th thurs of the month until ***

    hi, i have been using palm for years and have moved to ipod touch last year... since this is the beginning of the year... i have a lot of meetings at work that happens on, say, the 4th thurs of the month... BUT, i don't seem to be able to see that as an option in the calendar of my ipod touch... i only see every day, every month, every 2 weeks, every year...
    please help!!!! it is unreal to type in all those meetings manually...
    many thanks for all the help.

    No easy way to do that I dont think. I suggest copying and pasting the events if you are using iCal so that you do not need to retype them per se.

  • CREATING A JSLIDER AND PUTTING NAMES OF THE MONTHS ON IT!

    hey!
    i wanna creat a Jslider and put the names of the months on it (starting from Jan to Dec) .i tried but all in vain.
    i want some body to please help me.(it is the third slider in my code)
    thanks!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.text.SimpleDateFormat;
    public class Grid extends JFrame /*implements ActionListener*/
    static final int FPS_INIT = 15; //initial frames per second
    static final int FPS_INIT2=2000;
    //THIS LINE
    static final double FPS_INIT3=Aug;
    int intframeNumber = 0;
    int delay;
    boolean frozen = false;
    private JPanel date_panel,year_panel, month_panel,day_panel;
    private String time=new String("");
    private Date date=new Date();
    public Grid() {
    time=time + new Date().toString();
    SimpleDateFormat formatter = new SimpleDateFormat("E, MMMM d, yyyy") ;
         time = formatter.format(date) ;
              date_panel=new JPanel();
              year_panel=new JPanel();
              month_panel=new JPanel();
              day_panel=new JPanel();
              JSlider framesPerSecond = new JSlider(JSlider.HORIZONTAL,
              1, 31, FPS_INIT);
         JSlider framesPerSecond2 = new JSlider(JSlider.HORIZONTAL,
              1990, 2010, FPS_INIT2);
    //THIS LINE
         JSlider framesPerSecond3 = new JSlider(JSlider.HORIZONTAL,
         Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec, FPS_INIT3);
         date_panel.setLayout(new FlowLayout());
              date_panel.add(new JLabel(time));
    day_panel.setLayout(new FlowLayout());
    day_panel.add(framesPerSecond);
    year_panel.setLayout(new FlowLayout());
    year_panel.add(framesPerSecond2);
    month_panel.setLayout(new FlowLayout());
    month_panel.add(framesPerSecond3);
              // JSlider framesPerSecond = new JSlider(JSlider.HORIZONTAL,
              // 0, 31, FPS_INIT);
    //          framesPerSecond.addChangeListener(new SliderListener());
              //Turn on labels at major tick marks.
              framesPerSecond.setMajorTickSpacing(5);
              framesPerSecond.setMinorTickSpacing(1);
              framesPerSecond.setPaintTicks(true);
              framesPerSecond.setPaintLabels(true);
              framesPerSecond.setBorder(
              BorderFactory.createEmptyBorder(0,0,10,0));
              framesPerSecond2.setMajorTickSpacing(5);
                                  framesPerSecond2.setMinorTickSpacing(1);
                                  framesPerSecond2.setPaintTicks(true);
                                  framesPerSecond2.setPaintLabels(true);
                                  framesPerSecond2.setBorder(
                                  BorderFactory.createEmptyBorder(0,0,10,0));
    framesPerSecond3.setMajorTickSpacing(2);
                                  framesPerSecond3.setMinorTickSpacing(1);
                                  framesPerSecond3.setPaintTicks(true);
                                  framesPerSecond3.setPaintLabels(true);
                                  framesPerSecond3.setBorder(
                                  BorderFactory.createEmptyBorder(0,0,10,0));
    //JPanel contentPane = new JPanel();
              //Create the label for the animation.
              // picture = new JLabel(new ImageIcon("images/doggy/T"
              // + frameNumber
              // + ".gif"),
    // JLabel.CENTER);
              Container contentPane = getContentPane();
              contentPane.setLayout(new GridLayout(4,4));
    contentPane.add(date_panel);
    contentPane.add(year_panel);
    contentPane.add(day_panel);
    contentPane.add(month_panel);
    public static void main(String args[]) {
              Grid gw = new Grid();
         gw.setTitle("Date Slider");
              gw.setSize(400,200);
              gw.setVisible(true);

    Hi there
    It's been a while since you posted this issue but here is one sulotion that could help you or any body else
    xySlider = new JSlider(JSlider.HORIZONTAL, -40, 90, 0);
            ySlider = new JSlider(JSlider.HORIZONTAL, -40, 90, 0);
            xTSlider = new JSlider(JSlider.HORIZONTAL, 0, 99, 0);
            yTSlider = new JSlider(JSlider.HORIZONTAL, 0, 99, 0);
            Hashtable labels = new Hashtable();
            labels.put(new Integer(-40), new JLabel("1/5"));
            labels.put(new Integer(-30), new JLabel("1/4"));
            labels.put(new Integer(-20), new JLabel("1/3"));
            labels.put(new Integer(-10), new JLabel("1/2"));
            labels.put(new Integer(0), new JLabel("1"));
            labels.put(new Integer(10), new JLabel("2"));
            labels.put(new Integer(20), new JLabel("3"));
            labels.put(new Integer(30), new JLabel("4"));
            labels.put(new Integer(40), new JLabel("5"));
            labels.put(new Integer(50), new JLabel("6"));
            labels.put(new Integer(60), new JLabel("7"));
            labels.put(new Integer(70), new JLabel("8"));
            labels.put(new Integer(80), new JLabel("9"));
            labels.put(new Integer(90), new JLabel("10"));
            xySlider.setLabelTable(labels);
            ySlider.setLabelTable(labels);
            xySlider.setPaintLabels(true);
            ySlider.setPaintLabels(true);better late then never
    //Markus

  • How to create a calendar picker that auto populates the date in adobe XI Professional?

    I'm looking to do this in a  form i'm creating.

    There is no built-in date picker (for Acrobat/Reader on Windows/Mac at least) for forms created with Acrobat. I'm hoping that will change someday, but in the mean time you can use the date picker provided by: http://www.formrouter.com/tools/
    There is also a PDF developer (not me) who sells a JavaScript-based date picker using custom dialogs, which is much more convenient. You can PM me if you want contact information.

  • Hi. Regarding iphoto and creating a calendar, I want to change the start day from monday to sunday. Can this be done?

    Hi. I want to create some calenders in iphoto. But I want the weeks to start on a Sunday as opposed to the default Monday currently operating  in my computer in both iCal and iphoto.  Can this be changed??  If so, how?  Thanks for looking.  Currently running Snow Leopard on a 24 imac.  Mark

    Hey baby birch
    You are able to sync purchased content from your iDevice to a new computer as long as the comptuer is authorized
    To authorize the computer follow these steps
    At the topi of the screen next to File- Edit -View, click store then Authorize this computer.
    Enter in your appleID email address and password and click authorize
    **If you do not see the File Edit View option, At the very top left corner you should see a little square click the square and click show menu bar.
    Now that your computer is authorized click the file menu button, then click Devices, then go to your iPhones name and then click Transfer purchases this will allow you to transfer all of your purchased content to the computer
    Now if you want to transfer your non purchased content to the computer you can do so if you have wif and the previous computer on the same network as the new computer with home sharing
    Understaning home sharing - http://support.apple.com/kb/HT3819
    Setting up Home sharing - http://support.apple.com/kb/HT4620

  • Error while creating data set in bi publisher using web service

    This page contains the following errors:
    error on line 3 at column 1: Extra content at the end of the document
    Below is a rendering of the page up to the first error.
    data engine log:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <debugLog>
    - <msg time="2012-02-23T10:34:28.501+05:30" comp_id="AdminServer" type="WARNING" level="1" host_id="L912886GX" host_addr="10.184.238.187" module="oracle.xdo" tid="1577" user="<anonymous>" ecid="a385c714f2238194:53ca0830:1357b232dac:-8000-0000000000018f84" rid="1:16585">
    <attr name="APP" value="bipublisher#11.1.1" />
    <txt>java.io.FileNotFoundException: D:\BITEST_HOME\user_projects\domains\bifoundation_domain\www.webservicex.net\stockquote.asmx?WSDL (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at java.io.FileInputStream.<init>(FileInputStream.java:66) at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70) at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161) at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentEntity(XMLEntityManager.java:653) at com.sun.org.apache.xerces.internal.impl.XMLVersionDetector.determineDocVersion(XMLVersionDetector.java:186) at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:772) at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:737) at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:119) at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:235) at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:284) at weblogic.xml.jaxp.RegistryDocumentBuilder.parse(RegistryDocumentBuilder.java:163) at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:369) at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:420) at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:482) at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361) at java.lang.Thread.run(Thread.java:662)</txt>

    how about pasting the content of your data template here, so that forum members can see what could be the problem.

  • How to create user Exits for selecting ranges of the month

    Hi Bw Experts,
    Right now i need to create a user exits for my report which is coming from Infocube which has 12 months and 12 qtys. But if my client want to see the content of the report for e.g 1 to 3 months in selection screen means then we need to create a variable and user exit to accomplish this problem or is there any solution by which we can solve the problem. Try to suggest me and steps to achieve.
    Thanks in advance,

    Hi,
    Thanks for your input. But the questions is 12 amounts and 12 qtys not 12 months sorry for the typoerror. We are not carrying month field. But the User want to see the for e.g 1 to 3 months data means then how it is possible to accomplish this issue. Try to suggest me.
    Thanks in advance
    Message was edited by:
            mano_biw durai

  • I'm using iWeb 08. When I make a change and publish to the folder on the desktop the file remains highlighted in red in iWeb. When I used to publish to Mobile Me the change would be saved and revert to blue. Anyone know what's going on?

    Problem publishing website changes from iWeb08

    Are you publishing the changes to the same folder on your hard drive? See this tutorial for what I'm referring to.
    OT

  • Creating a Calendar View using alternative date fields

    I have a Sharepoint 2007 calendar list that includes the standard Start and End Date fields.  I also have "Suggested Start Date" and "Suggested End Date" fields that are utilized by users to recommend the Start and End Dates for
    the event.
    I can create a Calendar view that displays the events according to the Start and End dates.
    I cannot create a Calendar view that displays the events according to the Suggested Start and Suggested End date fields.
    In practice, all items are not displayed on this second calendar view that should be displayed even though you can choose these fields as Time Interval values when establishing the calendar.
    Is there a way to create a Calendar View that will use date fields other than the default Start and End date fields?
    Thanks,
    Chris Mang>> JDA Software Group, Inc.

    Hello,
    It seems problem with time value. Have you included time value in custom datatime column wile creating? What happens when you select "date only" from column settings?
    You can also try below suggestion to include "IncludeTimeValue" parameter in CAMl query by designer:
    http://stackoverflow.com/questions/18362853/how-do-i-filter-by-today-and-time-in-sharepoint-list-view
    OR else create two more calculated column and save date only in those columns then filter by them.
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to create a calendar in Calendar

    Is there a way to create a calendar in Calendar on my iPad 2? I would like to create a calendar on my iPad using Calendar, but I only want it on my iPad. I don't want to have to use another program, like Google Calendars, to create the calendar, then have to sync it with my iPad. I already use Google Calendar for several calendars as part of a workgroup, but I would like to have a personal calendar as well on Calendar.

    No.
    You can create more than one calendar in google and not share it. Likewise, you can create one on your computer.

  • Creating a calendar event

    I'm trying to create a calendar event or appointment. The first thing to try is using Siri. I tell it to create an appointment on such and such a date and it says "okay, Here's your event. Would you like me to create it?" When I say yes, The response "sorry, I can't do that." Ha ha, very funny, Siri. So then I decided to do it manually,by opening  the calendar program and Tapping on the day and time I want to create the event, but nothing comes up. As a last resort, I open the iPad user guide for iOS 7, and while it has entries for such things as searching for events, changing your views, and setting up invitations via a Microsoft exchange account, there is no entry on how to create an event! How do I do this?

    You should be able to create a event two ways.
    1 Tap the plus sign in the upper right corner, then make you event.
    2 Hold you finger on the calendar day until "new event" and the window appears as in the screenshot below.

Maybe you are looking for

  • Hi, Help Please me

    Hi I am getting the below error on the BizTalk application xlang/s engine event log entry: Uncaught exception (see the 'inner exception' below) has suspended an instance of service 'Smol.OE.ReturnEntry.OEProcessor.Orchs.ReturnsEntryProcessorV1_0(31c7

  • Can't install Skype

    I am trying to install Skype on Windows 7.0.  I get an Access Denied message and then an error 1603.  I have run Microsoft fixit and am still getting the same error messages.  Can anybody help me fix this?  Thanks.

  • I am unable to get into the search communities box

    I am not able to search the communities. as i can't get into the box ( top right) i have tried the online support but so far no joy

  • How to use Javascript Tools? does it has one for each branch?

    I use jt cs5 and test a file like pic show, when run, it told document is not define. what's wrong with it? function is as follow, function f2c(s) {   var test = /(\d+(\.\d*)?)F\b/g;    // 初始   return(s.replace     (test,       function($0,$1,$2) {  

  • Accidentally deleted Microsoft Office:(

    I have a 3000 N200 laptop.  In my eagerness to cleanup my computer, I accidentally deleted Microsoft Office 2007.  Is there any way of reinstallling just Office, without having to reinstall the operating system?  Thanks!