How to create custom paper size in Windows?

I have a picture within lightroom 1.0 that is 4.5 in x 7.5 in. The card that I am trying to print this on is 5.5 in x 8.5 in. I would like it centered. For some reason I cannot get the photo to print correctly on this size paper. I am printing to a HP Color Laser 3800n using the 3800 PS print driver. This is driving me crazy and I know that it is something simple. Hopefully somone can help.
thanks

Chalk this up to using a Windows Print driver. As soon as I downloaded the latest driver for this printer from hp.com all my printing problems went away. It printed as it should have within LR.

Similar Messages

  • CR 2008 SDK: how to set custom paper size?

    Dear forum users, I'm trying to use Crystal Reports 2008 SDK to print barcode labels to a Datamax Printer.
    The printer uses a custom page size. Can anyone tell me how to set custom page size and margins using C# and CR2008 SDK?
    Best regards
    Alessandro

    I'm experiencing this problem: I need to print barcode labels which are 4 x 9 cm each (a custom paper size). The report has been build correctly, orientation is right but when I print the labels programmatically by an application I made the label gets printed in a wrong way.
    In particular, orientation and paper size are not correct.
    So I would like to try to force both of them (both the orientation and the custom paper size). How can I do that?
    Best regards
    Alessandro

  • Why can´t I create custom paper sizes in millimeters?

    Since I upgraded to Tiger (?) or since I bought (?) my new Epson printer RX700 I can´t customize paper sizes in millimeters. For example the value 12,1x12,2 gets evened out to 12x12. This happens regardless of programs I try to print from. Epson has no solution to the problem. Is it a cumputer problem?
    iMac G5   Mac OS X (10.4.7)   768 MB, 1,8 GHz

    Thanks for your answer. I was trying in Aperçu, Acrobat Reader and Firefox. After your post, I did try in Safari and had the same rouding problem, as I expected since the custom page size management seems to be an OS X function used by all applications.
    May be the error is in the way I type the paramters in the page size boxes : I type, e.g., "12,5 cm" which is transformed into "13 cm" when I hit another control ?
    I tried other formats whithout success :
    "125 mm" -> "125 cm" !
    "125 pt" -> error message
    "12.5 cm" -> error message
    "4,92 in" -> error message
    "12,5" -> "13 cm"
    I also tried to set System Preferences > International > Formats > Measurement units to "American" instead of "Metric". Then I could enter sizes in inches but non-integer values were also rounded to the nearest integer.
    How do you enter decimal values into the size boxes ?

  • How to print custom paper size with borderless?

    Hi, I want print in custom peper size (6"x13") and i want print with borderless, but the print properties dont have the options to select custom size, any idea how can I do this work? thanks.

    Hi, Its specs says it supports: Left: 3.3 mm (0.13 inch)
    Right: 3.3 mm (0.13 inch)
    Top: 3.3 mm (0.13 inch)
    Bootom: 3.3 mm (0.13 inch) and 12 mm (.47 inch) for the following list of papers: U.S. Letter
    U.S. Legal
    A4
    U.S. Executive
    U.S. Statement
    8.5 x 13.0 inch
    B5
    A5
    Cards
    Custom-sized media
    Photo media Source: http://support.hp.com/au-en/document/c03565793 Regards.  

  • Processing 1.0 How to define CUSTOM paper size?

    Hi all,
    I'm working in processing and I'm looking for a way to define my own paper size.
    This is the most "cleanest" version of the script.
    In fact this part is as good as the exact script from seltar
    So the main focus right now would be the line between the
    four backslash lines.
    // Printer - Jpg and Text (more can easily be implemented)
    // PrintService http://java.sun.com/j2se/1.4.2/docs/api/javax/print/PrintService.html
    // DocFlavor http://java.sun.com/j2se/1.4.2/docs/api/javax/print/DocFlavor.html
    // PrintRequestAttributeSet http://java.sun.com/j2se/1.4.2/docs/api/javax/print/attribute/PrintRequestAttributeSet.html
    // Attribute http://java.sun.com/j2se/1.4.2/docs/api/javax/print/attribute/Attribute.html
    // Yonas Sandbæk - http://seltar.wliia.org
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.MediaSizeName;
    import javax.print.attribute.standard.MediaSize;
    import javax.print.DocFlavor;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.ServiceUI;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.MediaPrintableArea;
    import javax.print.attribute.standard.MediaSize;
    import javax.print.attribute.standard.*;
    import com.sun.image.codec.jpeg.*;
    PrintIt p = new PrintIt();
    void draw(){
    // blabla drawing
    if(keyPressed && key == 'p') p.printJpg(get(0,0,width,height));
    class PrintIt{
      PrintService[] services;
      PrintService service;
      DocFlavor docflavor;
      Doc myDoc;
      PrintRequestAttributeSet aset;
      DocPrintJob job;
      PrintIt(){
        myDoc = null;
        job = null;
        services = null;
        setService(PrintServiceLookup.lookupDefaultPrintService());
        setDocFlavor(DocFlavor.BYTE_ARRAY.AUTOSENSE);
        aset =  new HashPrintRequestAttributeSet();
        //aset.add(MediaSize.findMedia(0.5, 0.5, MediaSize.INCH));
        aset.add(MediaSize(10, 10, Size2DSyntax.MM));
      void setService(PrintService p)
        service = p;
      void setDocFlavor(DocFlavor d)
        docflavor = d; 
      void listPrinters(){
        services = PrintServiceLookup.lookupPrintServices(null, null);
        for (int i = 0; i < services.length; i++) {
         System.out.println(services.getName());
         DocFlavor[] d = services[i].getSupportedDocFlavors();
         for(int j = 0; j < d.length; j++)
         System.out.println(" "+d[j].getMimeType());
    services = null;
    // prints a given image
    void printJpg(PImage img){
    setDocFlavor(DocFlavor.BYTE_ARRAY.JPEG);
    print(bufferImage(img));
    // prints a given string
    void printString(String s){
    setDocFlavor(DocFlavor.BYTE_ARRAY.AUTOSENSE);
    print(s.getBytes());
    boolean print(byte[] b){
    if(!service.isDocFlavorSupported(docflavor)){
    println("MimeType: \""+docflavor.getMimeType()+"\" not supported by the currently selected printer");
    return false;
    boolean ret = true;
    try{
         myDoc = new SimpleDoc(b, docflavor, null);
    catch(Exception e){
         println(e);
         ret = false;
    job = service.createPrintJob();
    try {
         job.print(myDoc, aset);
    catch (PrintException pe) {
         println(pe);
         ret = false;
    return ret;
    // used with printJpg()
    byte[] bufferImage(PImage srcimg){
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    BufferedImage img = new BufferedImage(srcimg.width, srcimg.height, 2);
    img = (BufferedImage)createImage(srcimg.width, srcimg.height);
    for(int i = 0; i < srcimg.width; i++)
         for(int j = 0; j < srcimg.height; j++)
         int id = j*srcimg.width+i;
         img.setRGB(i,j, srcimg.pixels[id]);
    try{
         JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
         JPEGEncodeParam encpar = encoder.getDefaultJPEGEncodeParam(img);
         encpar.setQuality(1,false);
         encoder.setJPEGEncodeParam(encpar);
         encoder.encode(img);
    catch(FileNotFoundException e){
         System.out.println(e);
    catch(IOException ioe){
         System.out.println(ioe);
    return out.toByteArray();

    Hi all,
    I'm working in processing and I'm looking for a way to define my own paper size.
    This is the most "cleanest" version of the script.
    In fact this part is as good as the exact script from seltar
    So the main focus right now would be the line between the
    four backslash lines.
    // Printer - Jpg and Text (more can easily be implemented)
    // PrintService http://java.sun.com/j2se/1.4.2/docs/api/javax/print/PrintService.html
    // DocFlavor http://java.sun.com/j2se/1.4.2/docs/api/javax/print/DocFlavor.html
    // PrintRequestAttributeSet http://java.sun.com/j2se/1.4.2/docs/api/javax/print/attribute/PrintRequestAttributeSet.html
    // Attribute http://java.sun.com/j2se/1.4.2/docs/api/javax/print/attribute/Attribute.html
    // Yonas Sandbæk - http://seltar.wliia.org
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.MediaSizeName;
    import javax.print.attribute.standard.MediaSize;
    import javax.print.DocFlavor;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.ServiceUI;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.MediaPrintableArea;
    import javax.print.attribute.standard.MediaSize;
    import javax.print.attribute.standard.*;
    import com.sun.image.codec.jpeg.*;
    PrintIt p = new PrintIt();
    void draw(){
    // blabla drawing
    if(keyPressed && key == 'p') p.printJpg(get(0,0,width,height));
    class PrintIt{
      PrintService[] services;
      PrintService service;
      DocFlavor docflavor;
      Doc myDoc;
      PrintRequestAttributeSet aset;
      DocPrintJob job;
      PrintIt(){
        myDoc = null;
        job = null;
        services = null;
        setService(PrintServiceLookup.lookupDefaultPrintService());
        setDocFlavor(DocFlavor.BYTE_ARRAY.AUTOSENSE);
        aset =  new HashPrintRequestAttributeSet();
        //aset.add(MediaSize.findMedia(0.5, 0.5, MediaSize.INCH));
        aset.add(MediaSize(10, 10, Size2DSyntax.MM));
      void setService(PrintService p)
        service = p;
      void setDocFlavor(DocFlavor d)
        docflavor = d; 
      void listPrinters(){
        services = PrintServiceLookup.lookupPrintServices(null, null);
        for (int i = 0; i < services.length; i++) {
         System.out.println(services.getName());
         DocFlavor[] d = services[i].getSupportedDocFlavors();
         for(int j = 0; j < d.length; j++)
         System.out.println(" "+d[j].getMimeType());
    services = null;
    // prints a given image
    void printJpg(PImage img){
    setDocFlavor(DocFlavor.BYTE_ARRAY.JPEG);
    print(bufferImage(img));
    // prints a given string
    void printString(String s){
    setDocFlavor(DocFlavor.BYTE_ARRAY.AUTOSENSE);
    print(s.getBytes());
    boolean print(byte[] b){
    if(!service.isDocFlavorSupported(docflavor)){
    println("MimeType: \""+docflavor.getMimeType()+"\" not supported by the currently selected printer");
    return false;
    boolean ret = true;
    try{
         myDoc = new SimpleDoc(b, docflavor, null);
    catch(Exception e){
         println(e);
         ret = false;
    job = service.createPrintJob();
    try {
         job.print(myDoc, aset);
    catch (PrintException pe) {
         println(pe);
         ret = false;
    return ret;
    // used with printJpg()
    byte[] bufferImage(PImage srcimg){
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    BufferedImage img = new BufferedImage(srcimg.width, srcimg.height, 2);
    img = (BufferedImage)createImage(srcimg.width, srcimg.height);
    for(int i = 0; i < srcimg.width; i++)
         for(int j = 0; j < srcimg.height; j++)
         int id = j*srcimg.width+i;
         img.setRGB(i,j, srcimg.pixels[id]);
    try{
         JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
         JPEGEncodeParam encpar = encoder.getDefaultJPEGEncodeParam(img);
         encpar.setQuality(1,false);
         encoder.setJPEGEncodeParam(encpar);
         encoder.encode(img);
    catch(FileNotFoundException e){
         System.out.println(e);
    catch(IOException ioe){
         System.out.println(ioe);
    return out.toByteArray();

  • Can't print using custom paper size for HP6520

    I'm trying to print Hobby Lobby RSVP cards for a wedding. The size is 5.5" X 8.25". My HP6520 keeps giving me an error that the printer has detected a different size of paper and it won't print. I've gone to Custom and set the size to match, but it still won't print. I have the paper in the bottom tray.

    Hi @Saltman1,
    Welcome to the HP Forums!
    I noticed that you cannot print on a Hobby Lobby RSVP card size is 5.5" X 8.25" with your HP Photosmart 6520 on Windows 8. I am happy to look into this for you!
    According to your printer's specifications, this is an unsupported card size for this printer. The supported card sizes are:
    Card type
    Card size
    3 x 5 in Index
    76.2 x 127 mm (3 x 5 in)
    4 x 6 in Index
    101.6 x 152 mm (4 x 6 in)
    5 x 8 in Index
    127 x 203.2 mm (5 x 8 in)
    However, as a workaround, you might be able to assign an alternate driver by going to this post, How to Assign Alternate Print Drivers in Different Versions of Windows, by @Shane_R, and then doing a custom size print by going to this guide, Create Custom Paper Sizes in Windows 7, Windows 8, and Mac OS X.
    Otherwise, I would suggest getting the proper size of paper for this printer as indicated in the chart above.
    Hope this information clears things up for you, and have a great day!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • HP Officejet Pro 8100 ePrinter & custom paper sizes

    Have found all the helpful instructions about creating new custom paper sizes in Windows 7. But am complete novice & need to buy a printer for a charity. Settled on this model because of good reviews but most work will be 1 document of custom paper size. Need to know if the instructions given are fail-proof!! (Before i spend their money.)
    This question was solved.
    View Solution.

    Hello invqn,
       after having performed some detailed research, as well as installing the Pro 8100 (and other products) on a Windows 7 system, we determined the Pro 8100 doesn't support Custom Sizes:  that was by design and intent.
       Note that one of our engineer's proposed using a different set of drivers (from an older device) as a potential work-around, but this is unproven and may serve to limit your overall functionality of the device.
       However, we did confirm that a newer device that is currently out, the HP Officejet Pro 8610 (or 8620 or 8630) e-All-in-One, DOES support custom sizes; these are multi-function printers.
        Using the instructions in the link you sent, you can create new Forms with custom sizes and it will show up in the Printer Properties for you to use/select. It supports custom sizes from 3.00 x 5.00 in. to 8.50 x 14.00 in. 
       Our intent is only to provide information on what we know; you might take a moment and perhaps see if an HP Marketing representative might be able to give you more information, but that's what we have.
       We hope this helps....
    Regards,
    HardCopy (I am employed by HP) [If this was helpful, please mark this 'Solved' or 'Accept as Solution' so others can find this too]
    How to Give Kudos | How to mark as Solved

  • HP Envy 5530 - how do you add a custom paper size

    I'd like to add two custom paper sizes; Halfsheet (8.5" x 5.5") Portrait and Halfsheet (5.5" x 8.5") Landscape.  I create lots of invitations and thank you cards, and have been unsuccessful in figuring out how to add these special or "custom" sizes to my printer.  I end up taking my paper to a friends home to print them so I need to figure out how to remedy the problem.  Any help would be greatly appreciated.  I have Windows 8 if that helps.

    Hi there,
    Great question.  This document on the hp support site should get you started.  Once the page opens, click on the + sign next to Windows 8 and follow the instructions.
    Happy printing!
    Thanks!
    Tara
    **Although I am an HP employee, I am speaking for myself and not for HP.

  • Photosmart C410: How do I associate a custom paper size with the photo tray?

    Our Photosmart 3310 recently broke down and I purchased a C410 to replace it.  I sell a small item online that I ship in 3 5/8 x 6 1/2 envelopes.  With the 3310, I had figured out a way to print the envelopes from the photo tray.  While Word 2007 allows me to select the photo tray, the printer would not print from there until I created a custom paper size in the printer preferences dialog box.
    One of the reasons I got the C410 was for the photo tray.  It's a real pain to have to swap out the regular paper and stick in one evelope every time I want to print another envelope.  Well, unfortunately, that's what I've been doing.  I select the photo tray in Word, but the printer goes right ahead and prints from the main tray.  I had forgotten what I did to make it work on the 3310, so I experimented with that printer's drivers until I figured it out.
    My problem is that the software interface for the C410 is different than that for the 3310.  I can't figure out how to associate a custom paper size with the photo tray.  To test my theory this evening, I told Word that my envelope size was 5 x 7.  The printer didn't hesitate to take an envelope from the photo tray.  Of course the return address went into a dark void because the envelope is not 5 x 7.
    The difference between the two interfaces is that the 3310 has both printing shortcuts as well as "Print Task Quick Sets."  The C410 only has printing shortcuts.
    If anyone can help me, I'll be very grateful!  I've probably spent hours trying to get this figured out, and I have no idea what to do.

    Hi,
    Which Microsoft product (application) are you using ? Printer supports the following custom sizes:
    From ADF: Custom-sized media (ADF) between 127 to 216 mm wide and 241 to 305 mm long (5 to 8.5 inches wide and 9.5 to 12 inches long)
    From input tray: Custom-sized media between 76.2 to 216 mm wide and 101 to 762 mm long (3 to 8.5 inches wide and 4 to 30 inches long)
    You need to select right custom size from the application.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to add a new custom paper size? I am using a HP Deskjet 1000 J 110a printer.

    How to add a new custom paper size? I am using a HP Deskjet 1000 J 110a printer. I am using Windows XP home edition. The Custom option itself is not appearing in the process of selecting paper sizes in Printing preferences. I have installed this printer just today, but I bought it eight months back in Dubai. Could there be chance that since I purchased it in Dubai and I am using it in India, the software's not functioning properly. 
    Can you please help me with this problem immediately? Reply soon...

    Hi RajeshPujara,
    Please refer the link below to know the paper size supported by this printer.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02231304&tmp_task=prodinfoCategory&cc=us&dlc=en...
    May I know the size of paper you are trying to print.
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • How do I get OS X to ask printer for custom paper size

    I am printing postcards.  These are 1/4 of a letter sheet, or 5.5" wide x 4.25" tall.   
    I have a commercial grade HP Laserjet 4350, and I've configured that size in its custom menu for tray 1 (the envelope feeder tray). The printer is happy.
    I've also set a custom paper size in the MacOS, that I've called "Postcard Quarterpage" and I have that selected in the print dialog.  In fact I made it default.
    However, under Paper Handling, it says "Destination paper size: Suggested paper: US Letter" and this is greyed out.  If I check "Scale to fit paper size" which I Do Not Want, then I can pick a variety of sizes.  However my custom size is not in the list. 
    This happens on all applications, so it is definitely OS X Mountain Lion (latest patch).
    Anyway, the upshot is MacOS requests US LETTER size from the printer, so the printer goes "Take this postcard stock out and gimme US LETTER".    The printer can detect paper sizes.  If I try to give it postcards anyway, it blows an error and won't print, which is what it should do.
    How do I get OS X to tell the printer "Gimme 5.5x4.25" like I've instructed it? 

    Hi there Wolf!
    I have a couple of articles here that I believe will help you out with your question. First, here is an article with some information on custom paper sizes:
    OS X Mountain Lion: Manage custom paper sizes
    http://support.apple.com/kb/PH10748
    Note that in that article, it states:
    Custom paper sizes aren’t available for some printers.
    The reason for that is because this is controlled by the driver for the individual printer. You will want to make sure you have the latest version of the printer driver installed on your computer. More information on this can be found in the following article:
    Printer and scanner software available for download
    http://support.apple.com/kb/HT3669
    It might also be helpful to reset your printing system to see if that will resolve the issue. More information on this process can be found here:
    Mac OS X: How to reset the printing system
    http://support.apple.com/kb/HT1341
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • I hooked my P4014n printer up to a new computer with windows 7. I defined my custom paper size

    I hooked my P4014n printer up to a new computer with windows 7.  I defined my custom paper size AND WHEN i PRINT TO IT IT PRINTS AS THOUGH IT IS TRYING TO USE LETTER SIZE PAPER

    See this <br />
    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile

  • How do I print on a greeting card in landscape when I can't save custom paper size?

    I have a J6450 running on XP SP3 with the latest drivers and patches installed.  I have greeting card stock measuring 6.5 by 10.0 inches and a Microsoft Word document with a custom paper size matching the that stock prints in landscape mode.  The printer error is "Paper Mistmatch.  Paper size or type is incorrect."  I have followed the suggestions on the HP support page, changing the Print, Properties, Features options to show "Other greeting card", but can't define a custom paper size to match the stock.  The Save option is not available.  What do I need to do to make this work? 

    Here is a link to a HP document for adjusting several settings that may help with your issue.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01824353&tmp_task=solveCategory&cc=us&dlc=en&la...
    Dave M.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution.
    I am an HP employee.

  • Custom Paper Size

    Is there a limit on the paper size, trying to convert a Power Point presentation  - paper size is W 48in and H 36in, but I can't get adobe to maintain that paper size, I've gone into every setting I could find and create a custom paper size, in adobe, distiller, the adobe printer printing preferences, I almost got it but get to 36x27.... can't get the 48x36 at one point almost got it but the content went beyong the size and only captured 90% of the page the left and rights sides were cut off.
    Help

    Hello jilliank!
    Welcome to the Canon Forums, and thanks for your post!
    To have a better understanding of your issue, please let everyone know what operating system (Windows Vista/7/8 or Mac OS 10.X) you are using and if you are connected via USB or WI-FI. That way, the community will be able to assist you with suggestions appropriate for your product.
    Any other details you'd like to give will only help the Community better understand your issue!
    If this is a time-sensitive matter, our US-based technical support team is standing by, ready to help 24/7 via Email at http://bit.ly/EmailCanon or by phone at 1-800-OK-CANON (1-800-652-2666) weekdays between 10 AM and 10 PM ET (7 AM to 7 PM PT).
    Thanks!

  • Photosmart Duplex with Custom Paper Size

    I've recently bought a Photosmart Premium C310a for a personal project where I needed a photo printer that could handle duplex printing and custom sized paper, which according to the spec this printer does. 
    However, when you try to do this the printer driver in Windows Vista tells me that custom sizing is not compatible with duplex printing, rendering the Photosmart Premium a large lump of plastic and wiring that I have no use for.
    Has anyone got any ideas of how I can make this work?
    Thanks,
    Mark

    Radlett wrote:
    I am looking to print on 160mm x 160mm using 250 gsm paper.  Any ideas of how I could do this or can you suggest a photo printer (or similar quality) that would print duplex using this paper?
    Thanks,
    Mark
    OK, the paper weight is outside that "supported" for duplexing as shown in the user manual but it might work.
    I do not have a c310a set up to test with but I tried with a c309a I have here.  What exactly did you try?  I set a custom paper size in the Printing Preferences, Features tab and then selected automatic two sided printing and it seems to work.  Are you trying to print full borderless photo's in duplex mode?  That is not supported and I do not know any way to make it work.  It is also not supported (and will not work) to print with photo media selected and printing in duplex mode.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

Maybe you are looking for

  • Macro to open and save as a value in a cell

    How can I create a macro (I've named it Test) that will: 1.bring up the open dialogue box (to allow the user to choose a file) 2.save the file, with the file name determined by the text in cell A3 in .xlsx format I have two pieces code that seem to w

  • How to ping mysql database in JSP

    Hi guys, I am working on a JSP based application that sends data over to a remote mysql databse over port 5656 . I am intrested in writing a code sequence in JSP that will first check whether the remote mysql databse is working or not. If not, Then t

  • IWeb Hyperlinks coming up wrong

    Really weird thing happening. When i hyperlink to one of my iweb pages it comes up wrong. I paste the link (whihc I have checked to be correct) but when i then click on the hyperlink it comes up as a missing page because is adds a "25" before the num

  • Issue Mac OS 10.7.2 with Lotus Notes 8.5.3 menus

    Is anyone having a problem with Mac OS 10.7.2 and Lotus Notes 8.5.1 or now 8.5.3 where the menu items and Apple Menu no longer drop down? All other items on the main window of Notes seem to work, just can't select any of the main menus at the top of

  • Mp4 win to mac

    I have all my files on my windows based computer and I am thinking about switching over to a mac. Will all my mp4 files play on the mac if I copy them over? I heard there is some kind of tag each system throws on the file. Any help would be great.