Can't find printer Please help

Just got my MacBook and am trying to find the printer on my home network.
I have called apple, not much help, I have called ATT (my internet/network provider) not much help there either.
I have 2 desktop pc's.The main one has a 2WIRE gateway modem/network wireless adapter, runs Vista and has an HP psc 2410xi printer hooked up with a usb cable directly to it. The other desktop is running XP and can locate the printer on the network without any problems. ( I set it up in control panel>network & sharing center in windows.
Apple did have me download and install the printer driver from HP.
Can someone tell me what steps or what I should do on my MacBook to find this printer on my network? I can connect to the internet using airport without any problems just no printer to be found....
Thanks for your help I hope I posted in the right place.
Shireen

Have you Added the printer via the Print & Fax preferences? Select Mac Help from the Finder's Help menu and search for "add printer" without quotes. Several articles will appear to help you.

Similar Messages

  • Hello everyone, i need Mongolian keyboard layout, how can i find it, please help me, my pc is version OS X Yosemite, 10.10.2

    hello everyone, i need Mongolian keyboard layout, how can i find it, please help me, my pc is version OS X Yosemite, 10.10.2

    CLICKY CLICK---> Multilingual Mac

  • FRM 41215: CAN NOT FIND REPORT - Please help

    Hi,
    I am new to oracle 9i. I am trying to convert the forms in 8i to 9i. While i am doing i have many forms calling reports thru run_product. Now i am changing those into run_report_object. Even though i am getting errors like FRM 41215: CAN NOT FIND REPORT , INVALID REPORT ID.
    declare
    repid report_object;
    v_rep varchar2(100);
    begin
    repid := find_report_object('mrnr0028');
    v_rep := RUN_REPORT_OBJECT(repid);
    end;
    This is the command i have used. Is there anything wrong, or is there any necessity to specify any particular path for report files.
    Pls help me asap.
    Thanks

    I HAVE CREATE THIS PROGRAM UNIT(WITH LOT OF HARD WORK) FOR CHARACTRE AS WELL AS DEFAULT REPORT
    RUNING ON WEB
    -----------------FOR CHARACTER REPORT
    procedure web_report_c ( type varchar2,parameter varchar2) is
    report_id Report_Object;
    report_job_id VARCHAR2(100);
    report_status varchar2(100);
    FILE_NAME VARCHAR2(100);
    web_name varchar2(300);
    user_name varchar2(30);
    BEGIN
    user_name:=get_application_property(username);
    if type='PRINTER' THEN
    report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.RRPT'; --use  in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report TEMPRARY
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing parameter to report
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop --checking report status
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report is finished then make call to report
              --          web_name:='HTTP://logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    ELSIF type='SCREEN' THEN
         report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.txt'; --use txt in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report TEMPRARY
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing report parameter
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id); --checking of report status
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report status is finished then make  call to report
                        --web_name:='HTTP://ORACORP/logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    end if;
    end;
    ------------FOR DEFAULT REPORT
    procedure web_report_c ( type varchar2,parameter varchar2) is
    report_id Report_Object;
    report_job_id VARCHAR2(100);
    report_status varchar2(100);
    FILE_NAME VARCHAR2(100);
    web_name varchar2(300);
    user_name varchar2(30);
    BEGIN
    user_name:=get_application_property(username);
    if type='PRINTER' THEN
    report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.RRPT'; --use  in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing parameter to report
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop --checking report status
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report is finished then make call to report
              --          web_name:='HTTP://logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    ELSIF type='SCREEN' THEN
         report_id:= find_report_object('REPORTNODE');
         file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.txt'; --use txt in case of character mode report
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing report parameter
    report_job_id:=run_report_object(report_id);
         report_status:=REPORT_OBJECT_STATUS(report_JOB_id); --checking of report status
                   while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop
                        report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
                   end loop;
                   IF report_status='FINISHED' THEN --if report status is finished then make  call to report
                        --web_name:='HTTP://ORACORP/logi/'||file_name;
                   WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
                   else
                        MESSAGE('Report has failed. '||'status is -'||report_status);
                   end if;
    end if;
    end;

  • I can't download the Friendly Gaming Simplifier add on. When I click download Firefox tells me it can't find. Please help

    A friend sent me this link: BONUS CHECKER LINK IS: http://www.facebook.com/l.php?u=http%3A%2F%2Ffgs.rzadki.eu%2F&h=5d642
    When I click on the link it takes to fgs, I click Mozilla download gallery, I click Mozilla add on gallery and takes me to add ons with the following message: We're sorry, but we can't find what you're looking for. I have tried download with all add ons disabled and still get the same message. Please help

    Hello, PS81786. 
    Thank you for visiting Apple Support Communities.
    First, try forcing all applications to close and power cycle the device.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If the issue persists, here are some helpful troubleshooting steps when experiencing issues with the iTunes Store.
    Troubleshoot issues on an iPhone, iPad, or iPod touch
    If you haven't been able to connect to the iTunes Store:
    Make sure your date, time, and time zone are correct in Settings > General >Date & Time.
    Note: Time Zone may list another city in your time zone.
    Make sure that your iOS software is up to date by tapping Settings > General> Software Update (iOS 5 or later) or connecting your iOS device to iTunes and clicking Check for Update on your device's Summary page.
    Check and verify that you're in range of a Wi-Fi router or base station. If you're on a device with cellular service, make sure that cellular data is turned on from Settings > General > Cellular.
    Note: If connected to cellular data, larger items may not download. You may need to connect to Wi-Fi to download apps, videos, and podcasts.
    Make sure that you have an active Internet connection. You can check theuser guide for your device for help with connecting to the Internet.
    Make sure that other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
    Try resetting (turning off and then on again) your Wi-Fi router.
    If the issue persists, try troubleshooting your Wi-Fi networks and connections.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    If the issue persists, try changing the Cookie settings via the steps below. 
    iOS: Unable to use webpages or services that require cookies
    http://support.apple.com/kb/TS4207
    Cheers,
    Jason H.

  • TS4006 I used Lost mode on Find my iPHone, since phone returned have been unable to make calls although do have   internet , service provider can't find reason, please help

    I lost my iphone, located it wuth Find my iPHone app activated Lost mode and my phone was returned, but since my phone was returned I have been unable to make any calls, although I can access the internet. my service provider says nothing is wrong. Please help

    If your phone is offline, there is no way to track it. Report the loss to trhe police, your carrier & Insurance company. Change all of your passwords.
    Sorry, but Apple can't help you.

  • Restore to previous icloud settings and photos/video are gone. Still recognized 6 gigs of data but can't find them. please help me rescue my children's precious moments.  Thanks in advance

    Alright people i have a problem and looking for help. Yesterday the iphone started acting funny, a couple apps started crashing and the Iphone reboot a few times on it's own. Things seemed to be back to normal and I notice a "system update" that needed to be install. I thought this update may help the earlier crashing issue. During install, the Iphone froze up and I had to wipe it to factory settings.
    Now I have not backed up the phone on the computer/itunes, because I bought extra storage in ICloud. I reset my phone to the last Icloud setting and rescued my contacts, but not the apps or PHOTO/VIDEOS. I was expecting to have the phone to return back to my previous working phone, but now I have to reinstall the apps. Reinstalling the apps is no big deal, but now I only have 6 pictures and NO videos. The icloud settings tells me I have multiple gigs of data used, but where are the photos and videos?
    I should add that I lost all my previous text history, which I wish to get back too if possible...
    To save some conversation, I researched and didn't find much answers, but found most people were double backing up the photos with Dropbox, Google+, and/or Flickr. I have set up accounts at all three to prevent further issues, but this won't replace the last 6 months of photos that I can not seem to find or reinstate back onto Iphone.
    Android uses an external memory card to prevent this type of data loss. #apple#iphone #icloud
    I should add the wife and I have two accounts: I have an Iphone 5s and she has her own account with an Iphone 5s and Ipad.  We also have a computer running windows vista.
    Thanks in advance for any help...

    Did you ever restore your last iCloud backup?  That contains you camera roll photos & videos, text messages, app data, settings, etc.  It will also redownload your apps and other purchased media.
    If you didn't, follow the steps in this article to restore the backup: https://support.apple.com/kb/ph12521.

  • I turned on auto reply for mms now I can't find it please help methe Ask your question.

    need help to find my mms auto reply option I need to turn it off please help

    And no, since there is no "auto-reply MMS" to turn on, there's nothing to turn off. Do you mean "group MMS"?

  • Elements 7, computer crashed, got back up from carbonite, have all photos but can't find catalog, Please help

    I have tried everything I know, but can't locate the catalog- I do not know where it is or what it would be named or what carbonite would call it. Also, the photos are not at the "same" location. I have over 22,000 photos and can't imagine trying to re-catalog. It is my life and of course, I need something immediately for a family funeral. Not to be too dramatic.... Any suggestions would be greatly appreciated.

    Did you ever restore your last iCloud backup?  That contains you camera roll photos & videos, text messages, app data, settings, etc.  It will also redownload your apps and other purchased media.
    If you didn't, follow the steps in this article to restore the backup: https://support.apple.com/kb/ph12521.

  • How can i find my ipod i looked everywhere i cant find it please help

    how can i find my ipod touch? I looked everywhere and i can't find it please help me

    What To Do If Your iDevice or Computer Is Lost Or Stolen
    If your Mac, iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should do in advance - before you lose it or it's stolen - and some things to do after the fact. Here are some suggestions:
    Reporting a lost or stolen Apple product
    What-To-Do-When-Iphone-Is-Stolen
    Lost or Stolen iPhone? Here’s What to do.
    6 Ways to Track and Recover Your Lost/Stolen iPhone
    Find My iPhone
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
    Find My iPhone
    Setup your iDevice on MobileMe
    OS X Lion- About Find My Mac
    How To Set Up Free Find Your iPhone (Even on Unsupported Devices)
    Third-party solutions for computers:
    VUWER 1.5.4
    Sneaky ******* 0.2.0
    Undercover 4.7
    LoJack for Laptops Premium Mac
    STEM 2.1

  • Hello, i lost my iphone5 32gb and i want to track it but the thing is that in my iphone5 i did not setup the find my iphone application :'( ...so, is there any option where i can track my phone or block it that nobody can use it..please help me out

    Hello, i lost my iphone5 32gb and i want to track it but the thing is that in my iphone5 i did not setup the find my iphone application :'( ...so, is there any option where i can track my phone or block it that nobody can use it..please help me out

    Unfortunately if you did not set up 'Find My iPhone', there is no way to remotely track or wipe the device.

  • I'm downloading Season 3 of Scandal. First two episodes have finished downloading. I cannot find them anywhere!!! Where can I find them so I can start watching? Please help!! .

    I'm downloading Season 3 of Scandal on iTunes. First two episodes have finished downloading. I cannot find them anywhere!!! Where can I find them so I can start watching? Please help!!

    Have you looked in the Videos app? Under the section TV shows (bottom middle button on the tabs)

  • I use Microsoft XP on my PC, where r my pictures from my iPad? I need to know how to send pictures to Walgreens, etc so I can get them printed. Help please!

    I use Microsoft XP on my PC, where r my pictures from my iPad? I need to know how to send pictures to Walgreens, etc so I can get them printed. Help please!

    I am legally blonde and not very tech savvy, so I don't really know how to do that.  I know ur time is valuable, so could u possibly give me a short tutorial?  I would b very grateful! I use the camera kit to get my pics from my sd card to my iPad and also from my iPhone to my iPad. Had I known I would have this problem, I would not have transferred my pics to my iPad until after I took the sd card and had my pics printed.

  • Having successfully reinstalled hp inkjet printer Photosmart 6520 it doesn't show up anywhere on the computer; not can I find Printer Setup. Help! newo

    Having reinstalled an accidentally deleted HP inkjet printer Photosmart 6520, I can't find it anywhere on the computer, nor can I find Printer Setup. Your help valued,
    newo

    Eric, I'm sorry not to be much help. As I'm not technically minded I was finding it hard to follow Paul's questions and he sorted it himself, but did say that it was to do with configuration.
    Elizabeth

  • Printer software will not finishing loading/can not find printer

    received a Canon MX922 as a present. Attempting to connect and install printer to my HP Pavilion 17 notebook.
    The software stops loading in the final 2 to 3 minutes of completion. Using printer on my wireless network.
    All messages say can not find printer!!

    Hello rewing45,
    Welcome to the HP Forums.
    I see that you are having an issue with installing your Canon printer on to your Windows 8 computer.  I see that the computer is an HP.  I suggest that you contact Canon for installation instructions.  They will troubleshoot the printer on the Operating system NOT on the make of the computer.
    Here is the link for Canon Support.
    Thanks for your time.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • I forgot my icloud account and my email how can i recover it please help me icloud maker and icloud password and username holder

    i forgot my icloud account and my email how can i recover it please help me icloud maker and icloud password and username holder

    If you don't know your ID, you can try to find it as explained here: http://support.apple.com/kb/HT5625.  Then you can reset the password as explained here: http://support.apple.com/kb/PH2617.  Of course, you can only do this if it's your ID.

Maybe you are looking for