Pleas help me with this printing problem

Hey
I have an application that add pages to a serten class, that holds up to 4 pages per obj.
this class is printable and it is the obj of this class that i add to a book.
this book i then print out to the printer.
All things is working fine, the positioning, printing 1-4 pages on one paper and so on.
but the problem is when a page is bigger then the are, then it will only print that area that fitts on a paper.
Say we whant to print 4 pages on one paper, one of the pages that we add is containing so much information that it need not only one page but several. The problem is that the program will only print out the first area that fits into the page are, after this page have been printed, it goes on to the 3 other pages on the sam paper.
am i doing any wrong? do i have to keep track of this thing my self, i mean do i have to theck the size of the page and then add it to so many pages in the book that it requaries, or shold the printer self manage this?
I am not using any standard printing option where you chose page nrs and so on. Maby this is the problem?
//Jimmy

Read the API documentation section java.print.Printable
int the printing method you can get the maximum prontable area if you draw something outsite the area it will not be printed.

Similar Messages

  • How do I save a website created on IWeb 08 on one computer, so that I can open and adjust it on Iweb 08 on a other computer? pleas help me with this.

    How do I save a website created on IWeb 08 on one computer, so that I can open and adjust it on Iweb 08 on a other computer? pleas help me with this.

    Ernst ~ Welcome to the Support Communities. See this post:
    Editing my iWeb page from another computer

  • Could Anybody help me with this Mail problem? (Screenshot attached)

    Hello dudes,
    Is there anychance anyone could help me out with this slight problem? Everytime i try to take my accounts online i get 'Connection Failed' This only started happening yesterday and i just can't seem to get it fixed.
    Thank you!
    Jamie Wright

    Hi Linc,
    I have tried doing that with no luck, I just tried receiving mail through another account on my system and for some reason that seems to be fine. It looks like it is just my Admin account that cannot receive mail.
    Anything you could help me with?
    Thank you.

  • Please help me with this strange problem again!

    Hi gurus,
    I can't, for the life of me, figure out why this does not work in a procedure but works in an anonimous block.
    The XML is like this (part of it),
    <CaseNotification messageProducedDateTime="2005-07-20T13:58:11-05:00" xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">
                   <NotificationAdminHeader caseNumberKey="87CR0569" xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">
                        <CaseCountyIdentifier>87</CaseCountyIdentifier>
                        <CaseLocationText>Yellow Medicine County</CaseLocationText>
                        <BaseCaseTypeText>Adult</BaseCaseTypeText>
                        <CaseCategoryText>Criminal</CaseCategoryText>
                        <PartyIdentifier partyKey="854">
                             <PartyCaseAssociationText>Jurisdiction</PartyCaseAssociationText>
                        </PartyIdentifier>
                        <PartyIdentifier partyKey="123637">
                             <PartyCaseAssociationText>Defendant</PartyCaseAssociationText>
                        </PartyIdentifier>
                   </NotificationAdminHeader>
                   <InterimConditionsNotification>
                        <TriggeredDateTime>2005-07-20T13:57:53-05:00</TriggeredDateTime>
                        <NotificationEvent>InterimConditionsDeleted</NotificationEvent>
                        <InterimConditionsOrder orderEventKey="1760110">
                             <OrderDate>2005-07-20</OrderDate>
                             <OrderedBy judgeKey="00001J">
                                  <JudgeName>
                                       <PersonGivenName>John</PersonGivenName>
                                       <PersonMiddleName>P.</PersonMiddleName>
                                       <PersonSurName>Smith</PersonSurName>
                                       <PersonFullName>Smith, John P.</PersonFullName>
                                  </JudgeName>
                                  <JudicialAgencyIdentifier>MN011015J</JudicialAgencyIdentifier>
                             </OrderedBy>
                             <CourtCaseNumber documentVersion="1" effectiveDateTime="2005-06-06T00:00:00-06:00">
                                  <MNCISCaseNumber>
                                       <CountyNumber>87</CountyNumber>
                                       <CaseType>CR</CaseType>
                                       <YearFiled>05</YearFiled>
                                       <SequenceNumber>69</SequenceNumber>
                                  </MNCISCaseNumber>
                                  <CaseNumberIdentifier caseNumberKey="87CR0569">87-CR-05-69</CaseNumberIdentifier>
                             </CourtCaseNumber>
                             <ConditionSubject>
                                  <Party partyKey="123637" currentNameIndicator="true">
                                       <StandardName>
                                            <PersonGivenName>Clanry</PersonGivenName>
                                            <PersonSurName>Ogavitz</PersonSurName>
                                            <PersonFullName>Ogavitz, Clanry</PersonFullName>
                                       </StandardName>
                                       <PartyCaseAssociationText>Defendant</PartyCaseAssociationText>
                                  </Party>
                             </ConditionSubject>
                             <InterimConditions>
                                  <InterimConditionText>Anger management</InterimConditionText>
                                  <InterimConditionAmount>0</InterimConditionAmount>
                             </InterimConditions>
                             <InterimConditions>
                                  <InterimConditionText>Attend AA (Alcoholics Anonymous)</InterimConditionText>
                                  <InterimConditionAmount>5000</InterimConditionAmount>
                             </InterimConditions>
                        </InterimConditionsOrder>
                   </InterimConditionsNotification>
              </CaseNotification>
    The code is basically the same except that in the procedure the passing clause gets a differnt param, which is the passed in param from the procedure.
    xmltable
                             xmlnamespaces
                             ---     'http://schemas.xmlsoap.org/soap/envelope/' as "saop",
                                  'http://www.courts.state.mn.us/CourtXML/2.0.0' as "ic"
                             'for $ics in //ic:CaseNotification/ic:InterimConditionsNotification/ic:InterimConditionsOrder[@orderEventKey = $val/oeKey]/ic:InterimConditions
                             return
                             <ic:ICS>                    
                                  <ic:ICSText>{$ics/ic:InterimConditionText}</ic:ICSText>
                                  <ic:ICSAmount>{$ics/ic:InterimConditionAmount}</ic:ICSAmount>
                             </ic:ICS>'
                             passing p_XMLDoc, xmlelement("oeKey", v_OEKey) as "val"
                             columns               
                             ICSText          varchar2(100)      path '/ic:ICS/ic:ICSText',
                             ICSAmount     number           path '/ic:ICS/ic:ICSAmount'
    The strange thing is the procedure gets the ic:ICSText with the namespace value, which is http://www.courts.state.mn.us/CourtXML/2.0.0, so the finaly result is
    the whole thing: <InterimConditionText xmlns="http://www.courts.state.mn.us/CourtXML/2.0.0">Anger management</InterimConditionText>.
    I get the correct values when testing with the anonimous code!
    What did I do wrong? Please help!
    Thank you.
    Ben

    Hi gurus,
    OK, I did another test. I ran the same PL/SQL anonymous block that gets the correct element value in 10.2.0.3.0 and it gets the same wrong value: the element name plus the namespace value and the data itself. It gets the correct element value in 10.2.0.1.0 (my local database).
    Could anyone help me with this?
    Thanks!
    Ben

  • Pleasse help me with this subquery

    HI all,
    I,ve a question.I,ve 2 tables.one has to do with jobs where there are many duties.(see table 1).The other table has to do with jobseekers where they want specific dutie(see table 2)
    table 1"jobs"
    job_id duties compagny
    1 wash dishes kersten
    1 sell Kersten
    2 cook burger king
    2 clean burger king
    table 2"jobseekers"
    jobseeker_id duties name
    1 clean caroline
    1 sell caroline
    2 cook reena
    2 wash dishes caroline
    The output has to be this
    dutienr dutie compagny jobseekername
    1 clean Kersten Caroline
    2 sell Kersten Caroline
    1 cook burger king Reena
    2 wash dishes burger king Caroline
    The idea is that I must write a subquerie
    which will find all the jobseekers with the same dutie as wich the job ask for
    select jobseekers_id,jobseekersname,dutie from jobseekers where duties in (select duties from jobs where compagny ="kersten')
    But I have to split the duties like the output above and I don't know how to do that.
    Can someone pleasse help me.
    Caroline

    Caroline wrote:
    which will find all the jobseekers with the same dutie as wich the job ask forBased on what you say there...
    This sounds like you have companies that are requesting jobseekers who can do all the duties that they require. So kersten requires someone who can do both "wash dishes" and "sell" and burger king require someone who can do both "cook" and "clean".
    If I expand the jobseekers data a little, this can be shown as follows...
    SQL> with jobs as (select 1 as job_id, 'wash dishes' as duties, 'kersten' as compagny from dual union all
      2                select 1, 'sell', 'kersten' from dual union all
      3                select 2, 'cook', 'burger king' from dual union all
      4                select 2, 'clean', 'burger king' from dual)
      5      ,jobseekers as (select 1 as jobseeker_id, 'clean'as duties, 'caroline' as name from dual union all
      6                      select 1, 'sell', 'caroline' from dual union all
      7                      select 2, 'cook', 'reena' from dual union all
      8                      select 2, 'clean', 'reena' from dual union all
      9                      select 2, 'cook', 'caroline' from dual union all
    10                      select 1, 'wash dishes', 'caroline' from dual)
    11  -- end of sample data
    12  select jobs.compagny, jobs.duties, jobseekers.name
    13  from jobs, jobseekers
    14     , (select compagny, count(*) cnt from jobs group by compagny) jobs2 -- the number of duties required by the compagny
    15     , (select compagny, name, count(*) cnt from jobs, jobseekers where jobs.duties = jobseekers.duties group by compagny, name) jobseekers2 -- the number of skills each jobseeker has for each compagny
    16  where jobs2.compagny = jobs.compagny
    17  and   jobseekers2.compagny = jobs.compagny
    18  and   jobseekers2.name = jobseekers.name
    19  and   jobseekers2.cnt = jobs2.cnt          -- pick the person if they can do all the duties the compagny requires
    20  and   jobs.duties = jobseekers.duties
    21  order by compagny, name, duties
    22  /
    COMPAGNY    DUTIES      NAME
    burger king clean       caroline
    burger king cook        caroline
    burger king clean       reena
    burger king cook        reena
    kersten     sell        caroline
    kersten     wash dishes caroline
    6 rows selected.
    SQL>So, from my test data, caroline and reena can both do cooking and cleaning so they could both work at burger king, but only caroline can do selling and washing dishes so is the only one suitable for kersten.
    Is that a little closer to what you are after?

  • Help me with this spastic problem on my 5610

    I have not used a nokia phone for the past 5 years.
    Recently I got a Nokia 5610 becasue I need something small for work and can use it for music.
    But I have this irritating problem - If I store a contact (let's say 91234567 under the name Spastic) without the +65 prefix, the sms will not show the associated name. IE, the sms will show its from +6591234567 and not Spastic.
    However, if I store the number as +6591234567, the sms will show the associatd contact name. But when 91234567 calls me, the phone will just show 91234567 and not the name
    Its driving me nuts. Help!!
    How do I get the phone to display the name in both sms and call display?
    Thanks

    I bet you have to live with that. The problem is, that your provider is sending you the Caller ID in a different way then the sender of text messages (as you might know +65 is the international code). One thing you could try is calling your provider.
    Sometimes the solution is closer than you think... sometimes farther

  • Someone please help me with this sync problem

    Ok here we go. I have had my laptop for a little over two years. Ever since i got my iphone 4 last summer it has been such a pain. I have backed up my phone and synced it multiple times on my computer. Every so often though i plug my iphone into the computer and it recognizes it in itunes but asks me to either set as new iphone or restore from back up. I have tried to restore from back up and it says that the back up has failed even though there is obviously a back up on the computer. I have set as new and it works fine for a day or two and then i got to resync and same problem. I have completly unistalled itunes and all its files and redownloaded it and it worked for a week or so and then same problem. I have also had my computer reset to factory settings (for an unrelated issue) and it worked the first time but then stopped working. I have tried everything i can imagine and am at the end of my rope with this phone. im so ready to call it quits and get something different cause this is so frustrating.

    How do you do what? Plug the iPhone into a USB port directly on your computer, or disconnect other USB devices? To disconnect a USB device unplug it from the computer. If it is a disk drive eject it first using the Eject icon in the System Tray. To plug the iPhone into a USB port directly on the computer insert the USB end of the sync cable into a USB port on the computer.
    If you are using all of the ports on your computer get a hub and plug low power devices into the hub (e.g., keyboard, mouse). Or get a hub with its own power supply and plug your high power devices (disk drives, DVD drive) into it.

  • Can you help me with a printer problem?

    Aloha:
    I have been using an HP printer Model B210a for several years with out problems. Recently, right at  the end of a 15 page document, it stopped printing with the black ink.  A new black cartridge did not solve the problem.
    It was suggested that I pull out the power plug for 30 seconds, plug it back in and try again. This worked just fine and all was ok for several days.
    But only for several days.  The problem is back and pulling the plug now, has no effect!
    Is there anyone out there in Apple land, who has experience using an HP printer that might be able to help?
    HP doesn't come close to having anything that compares to this "Apple Support Community", so I thought I would ask the question here

    10.6.8 should probably be installed after backing up:
    http://support.apple.com/kb/DL1399
    then HP's update from Apple, then from HP:
    http://support.apple.com/kb/dl907
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4082&lc=en&cc=us&dlc=en&s w_lang=&product=4021935#N270
    Sometimes applying:
    http://support.apple.com/kb/dl907
    After HP's update works better than before.

  • Pls help me with this installation problem. Your advice is highly needed.

    I am installing oracle 11.1.6.0 on windows xp professional everything was going fine untill there was a pop up that reads below
    INFO: exit-tool: Launch browser
    INFO: saving exit only tools ...
    INFO: no detached only tools in this session
    INFO: exit-only tools are created in single installation
    INFO: no. of sets of tools to be run: 1
    INFO: ca page to be shown: true
    INFO: exitonly tools to be excuted passed: 1
    INFO: Starting to execute configuration assistants
    INFO: Command = C:\WINDOWS\system32\cmd /c call c:\app\doN H\home/bin/netca.bat /orahome c:\app\doN H\home /orahnam OraDb11g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile c:\app\doN H\home\network\install\netca_typ.rsp
    Command = C:\WINDOWS\system32\cmd /c call c:\app\doN H\home/bin/netca.bat has failed
    Execution Error : 'c:\app\doN' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: Configuration assistant "Oracle Net Configuration Assistant" failed
    *** Starting OUICA ***
    Oracle Home set to c:\app\doN H\home
    Configuration directory is set to c:\app\doN H\home\cfgtoollogs. All xml files under the directory will be processed
    INFO: The "c:\app\doN H\home\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    INFO:
    The Runconfig command constructed is C:\app\doN H\home\oui\bin\runConfig.bat ORACLE_HOME=C:\app\doN H\home MODE=perform ACTION=configure RERUN=false $*
    INFO: Since there is an Internal Plugin Invocation or a Java Plugin Invocation tool in the Oracle Home C:\app\doN H\home we use the runConfig Command instead of the plugin's command
    INFO: Created a new file C:\app\doN H\home\cfgtoollogs\configToolFailedCommands
    INFO: Since the option is to overwrite the existing C:\app\doN H\home\cfgtoollogs\configToolFailedCommands file, backing it up
    INFO: The backed up file name is C:\app\doN H\home\cfgtoollogs\configToolFailedCommands.bak
    SEVERE: OUI-25031:Some of the configuration assistants failed/cancelled. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: Yes/OK
    INFO: Starting to execute configuration assistants
    INFO: Command = C:\WINDOWS\system32\cmd /c call c:\app\doN H\home/bin/netca.bat /orahome c:\app\doN H\home /orahnam OraDb11g_home1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile c:\app\doN H\home\network\install\netca_typ.rsp
    Command = C:\WINDOWS\system32\cmd /c call c:\app\doN H\home/bin/netca.bat has failed
    Execution Error : 'c:\app\doN' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: Configuration assistant "Oracle Net Configuration Assistant" failed
    *** Starting OUICA ***
    Oracle Home set to c:\app\doN H\home
    Configuration directory is set to c:\app\doN H\home\cfgtoollogs. All xml files under the directory will be processed
    INFO: The "c:\app\doN H\home\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    INFO:
    The Runconfig command constructed is C:\app\doN H\home\oui\bin\runConfig.bat ORACLE_HOME=C:\app\doN H\home MODE=perform ACTION=configure RERUN=false $*
    INFO: Since there is an Internal Plugin Invocation or a Java Plugin Invocation tool in the Oracle Home C:\app\doN H\home we use the runConfig Command instead of the plugin's command
    INFO: Since the option is to overwrite the existing C:\app\doN H\home\cfgtoollogs\configToolFailedCommands file, backing it up
    INFO: The backed up file name is C:\app\doN H\home\cfgtoollogs\configToolFailedCommands.bak.1
    SEVERE: OUI-25031:Some of the configuration assistants failed/cancelled. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: No
    1...The Netmgr and the ODCA was not properly configured and they are not opening on the windows enviroment.
    2...The sqlplus, whenever called up, aooears and disappears in 1 second
    3...I can not connet to the database. Says adapter error
    4...Will 1 start the listner before i can connect and how?
    Ur contribution is highly needed. TNX

    I am installing oracle 11g on windows xp, everything installed suceessfully except the enterprise control. the error reads
    Jan 14, 2011 5:32:30 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl1' to fully start
    Jan 14, 2011 5:32:40 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl1' to fully start
    Jan 14, 2011 5:32:51 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl1' to fully start
    Jan 14, 2011 5:33:01 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl1' to fully start
    Jan 14, 2011 5:33:11 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl1' to fully start
    Jan 14, 2011 5:33:21 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl1' to fully start
    Jan 14, 2011 5:33:31 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Waiting for service 'OracleDBConsoleorcl1' to fully start
    Jan 14, 2011 5:33:41 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at G:\app\doN_H\cfgtoollogs\dbca\orcl1\emConfig.log for more details.
    Jan 14, 2011 5:33:41 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
    at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:869)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:250)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:213)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:235)
    at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:460)
    at java.lang.Thread.run(Thread.java:595)
    Jan 14, 2011 5:33:41 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to G:\app\doN_H\product\11.1.0\db_1\oui
    It also told me that i can configure it later by running G:\app\doN_H\product\11.1.0\db_1\BIN\emca.script
    Pls help me. I appreciate ur help so far.

  • Pleasse help me with this error in SQL statement

    Please tell me the error in this query:
    the Error given is
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement
    given :
    Databse is MS Access
    In the databse :
    account - text
    number - text
    date - date/time
    vendor - text
    Connection connection = t.getConnection();
    /* t - some object containing a connection*/
    Statement stmt = connection.createStatement();
    stmt.executeUpdate("INSERT INTO Bills (account, number, date, vendor)
    VALUES ('vai', '23', 10/12/2006, 'jaadya')");

    I would imagine the problem is with the date. Different DBs have different date formats. To avoid that problem, use a PreparedStatement.
    java.sql.Date date = ...;
    PreparedStatement ps = con.prepareStatement("INSERT INTO Bills (account, number, date, vendor) VALUES (?, ?, ?, ?)");
    ps.setString(1, "vai");
    ps.setString(2, "23);
    ps.setDate(3, date);
    ps.setString(4, "jaadya");
    ps.executeUpdate();This saves you from having to deal with vendors' various date formats, keeps you from having to escape special characters in strings, and prevents SQL injection.

  • Please please please help me with this bizarre problem!!!

    Hi there,
    I am not an expert on web design and I am also not a complete newbie. I have built web designs before - and used frames and done it all on dreamweaver - however my target frames aren't working on this website and I'm not sure why???
    I have two frames on my index page - one left and one right - the left is the menu and the right is the content of which ever button is selected from the menu in the left frame. However the targets don't work - when clicking on the buttons (links) it makes a new window pop up.
    I have named the frames and saved the frame set as index.html.
    The coding says for the shop button:
    <td><a href="Shop.html" target="_right" onmouseover="MM_swapImage('Image4','','Images/Shop Button RO.jpg',1)" onmouseout="MM_swapImgRestore()"><img src="Images/Shop Button.jpg" name="Image4" width="163" height="56" border="0" id="Image4" /></a></td>
    I have tried renaming the frames - tried a different computer - tried just about everything I can think of - it has always worked for me before but since building this site it doesn't! Have I missed something????
    Please please help me - it's been driving me up the wall for 2 weeks!!!
    Thanks in advance for yourhelp.
    Pink
    xxx

    I haven't used frames since the late 1990s, so can't be of much help  :-)
    Here's a tutorial that may help:
    http://www.dwfaq.com/tutorials/Frames/framesets1.asp
    Page 4 shows how to link pages correctly
    Is there a specific reason why you are still using frames... they are very old hat and hardly used anymore these days  :-)
    Here's the reason why frames are evil:
    http://apptools.com/rants/framesevil.php
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Please help me with this mac problem

    I bought a mac pro without any applications installer (iPhoto, iMovie etc.) Is it really like that? Or there should be one? Btw, i bought OS X v10.

    deggie wrote:
    Did you purchase this computer from an authorized Apple dealer (or Apple Store) new or did you buy it from an individual?
    Yeah that is my question also.
    If bought Used from a Private person then you need to Register it with Apple on the Apple Website.
    You should also check that it is a Late 2011 model as if it is an early 2011 model it may of originally came with Snow Leopard Pre-Installed and that means that is should not of been sold with Lion installed. As if it is a early 2011 model that did come with SL installed then Lion is regisrted to the original buyer of Lion and not to the serial # of that Mac.

  • Please Help me with this flash problem, my life is depending on this!

    If you visit www.fishtv.tv there is a flash document on the
    left side, it is a box with pictures scrolling. I NEED to know how
    what to open it with, and how to add a picture into it. Please if
    you have any information how to accomplish this task reply to this
    thread, OR send me an email at [email protected] It will be
    very much appreciated, thanks.

    SWF is to FLA the same way JPG is to PSD. SWF is the compiled
    (think flattened) format. Like urami
    once said, you can't get the egg back after making the
    omelette. There are SWF decompilers (search
    google or this forum) out there but most will (if not all)
    will merely allow you to obtain the
    "guts" of an swf - you will not really end up with the
    original FLA again. MUCH easier to try and
    locate the FLA or rebuild the site. Surely there's a back-up
    of the source somewhere?
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    willager wrote:
    > i have the swf file, and i open it in flash and it shows
    the final product, I dont know how to get it back to its orginal
    file.

  • Please help me with this ipad problem

    it like some kind of ios error it like it turned in to ipod,iphone ios
    and i cant restore when i try it said an error occured 3194 or 1601 or 1600
    and i try to restore in my ipad it didnt finish yet it is in progress for 1 day now!!!!!!
    and my device is jailbreak but i didnt use installous i only use it for like winterboard and gravipad or barrel i buy all the app
    PLEASE PLEASE HELP ME!!!!!!!!!!

    I'm not good at English (i am thai) and what is op mean and yes you are right this is my other account.
    Next time I will do better แบบทำเนี่ยนเนี่ยนอะไอ้เฟยเรามาขอให้ช่วยอแปไรเราก็ซื้อเองหมดอยากสนับสนุน apple ไม่เคยไช้เลยไอ้app cake ไรนั่นเราใช้แต่โปรแกรมเสริมเช่นwinter board barrel folder lock ไรเงี้ยเพราะ apple ไม่สามารถทำได

  • Help me with this simple problem

    class Sample
         static String m(float i)
              return "float";
         static String m(double i)
              return "double";
         public static void main (String[] args)
              int a1 = 1; long b1 = 2;
              System.out.print(m(a1)+","+ m(b1));
    }On running the above program, it responds with float,float .
    Can anyone tell why ???
    Regards,
    Pradhip

    there are specific rules for finding the right type, i think it might be under "conversions" in the JLS? You can find the JLS here:
    http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html

Maybe you are looking for

  • I need to extract Recipient Email Addresses - is it impossible?

    Hi I spent way too much time tonight trying to solve this problem, I hope someone brilliant can help. I have a web store, and am CC'd on the receipts sent to my customers. So I have accumulated a large mailbox full of emails addressed to recipients o

  • Webpage not showing a flash embeded item on Android.

    I uploaded a .Swf item in wordpress blogpost, Its working fine on pc. but when i try to open it on my android phone (already installed flash player on it) it doesnt shows that animation. What could be the problem?? Edit: I forget to give url. Here is

  • OWA iview

    Hello all, When accessing the Outlook Web Access(OWA)2003 by url, it works fine.  But when I tried to create the url iview and pointing to the same owa url, it does not work.  Did I miss any other configuration? can i integrate the whole OWA into the

  • How can this be done?

    Need a FORMS app with the capability to (1) create form letter "templates" using Word and (2) to associate database variables to be merged with the text (database variables must be selected from a pre-defined set to be made available for this purpose

  • New Command Doubt

    Hi, I have a doubt concerning new commands. When we add a command to the command list after duplicating a command group , where do we actually code for that command to work. Please forgive me if this doubt is a silly one. Also when we are doing in th