Time conversion into words

hi friends,
               I want to convert time into words .
               example 17:49 i want to convert it into seventeen forty nine hrs
is there any function module . if so please revert back me

Hi,
there is no Fm for you need but you can write your own fm like this.
data: mytime type t, hour(2) type c,min(2) type c, sec(2) type c.
data: word(10) type c, compword(50) type c.
mytime = '12:25:00'
hour = mytime+0(2).
min = mytime+3(2).
sec = mytime+6(2).
perform getword using hour changing word.
concatenate compword word 'hour and ' into compword.
perform getword using min changing word.
concatenate compword word 'minutes and ' into compword.
perform getword using sec changing word.
concatenate compword word ' seconds' into compword.
write: compword.
form getword using time1(2) type c changing word(10) type c.
case time1.
when '0'.
word = 'zero'.
when '1'.
word = 'one'........upto sixty.
endform.
regards,
Ashok Reddy

Similar Messages

  • FUNCTION MODULE TO CONVERT DATE / TIME INTO WORDS.

    HI EXPERTS,
         FUNCTION MODULE TO CONVERT DATE / TIME INTO WORDS.
    PLS DO HELP.....

    Hiii gita
    we have another FM SPELL_AMOUNT
    regards
    Jaipal

  • I want to manage my pdf conversion to word account, but when I click on manage I get an error message saying Heading too Large.  How do I get into manage

    I want to manage my pdf conversion to word account, but when I click on manage I get an error message saying Heading too Large.  How do I get into manage

    Hi,
    May i know which service you are using?
    Would it be possible for you to send me the screenshot of the error?
    Regards,
    Florence

  • Exporting smartform into word document

    how to export smartform into word document . i tried converting into pdf and then download but it showing run time error that conversion is not possible and also it tells that otf command // missing. is it not possible to export directly to word document instead of pdf.plz give clear description of what to be done exactly with sample codes.
    marks will be rewarded.

    Hi Lavanya,
    Converting the output from Spool to Word is possible.
    Here is the sample code.
    I cut pasted a code from a link i got in the website, see if it helps.
    ZSPOOL2WORD
    Genera un fichero Word a partir de una orden de spool
    MÓDULO : FI *
    TIPO : Listado *
    TITULO : Generación fichero Word
    DESCRIPCION : Genera un fichero Word a partir de una orden de spool
    AUTOR: Andres Picazo FECHA: 24/03/2003 *
    MODIFICACIONES *
    FECHA NOMBRE DESCRIPCION *
    REPORT ZSPOOL2WORD
    NO STANDARD PAGE HEADING
    LINE-COUNT 065
    LINE-SIZE 080.
    INCLUDE OLE2INCL.
    *----TABLAS/ESTRUCTURAS--
    *----TABLAS INTERNAS--
    DATA I_BUFFER(132) OCCURS 1000000 WITH HEADER LINE.
    *----VARIABLES--
    *----PARAMETER/SELECT-OPTIONS EN PANTALLA--
    SELECTION-SCREEN BEGIN OF BLOCK BLK_PAR WITH FRAME TITLE TEXT-SEL. "Pará
    PARAMETERS: P_SPOOL LIKE TSP01-RQIDENT OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK BLK_PAR.
    SELECTION-SCREEN BEGIN OF BLOCK BLK_WOR WITH FRAME TITLE TEXT-WOR.
    PARAMETERS: P_WORD AS CHECKBOX DEFAULT 'X'.
    PARAMETERS: P_FWOR LIKE RLGRAP-FILENAME DEFAULT 'C:MAYOR.DOC'.
    PARAMETERS: P_PLAN LIKE RLGRAP-FILENAME
    DEFAULT 'D:DATOSAPISMAYORPLANTILLA LIBRO MAYOR.DOC'.
    SELECTION-SCREEN END OF BLOCK BLK_WOR.
    SELECTION-SCREEN BEGIN OF BLOCK BLK_FIC WITH FRAME TITLE TEXT-FIC.
    PARAMETERS: P_CTXT AS CHECKBOX DEFAULT ''.
    PARAMETERS: P_FTXT LIKE RLGRAP-FILENAME DEFAULT 'C:MAYOR.TXT'.
    SELECTION-SCREEN END OF BLOCK BLK_FIC.
    LOGICA DEL PROGRAMA
    INITIALIZATION
    INITIALIZATION.
    START-OF-SELECTION.
    START-OF-SELECTION.
    PERFORM LEER_SPOOL.
    IF NOT P_CTXT IS INITIAL.
    PERFORM GRABA_FICHERO.
    ENDIF.
    IF NOT P_WORD IS INITIAL.
    PERFORM LANZA_WORD.
    ENDIF.
    FORMS ADICIONALES
    *& Form LEER_SPOOL
    Lee la orden de spool en el buffer
    FORM LEER_SPOOL.
    CALL FUNCTION 'RSPO_RETURN_ABAP_SPOOLJOB'
    EXPORTING
    RQIDENT = P_SPOOL
    FIRST_LINE = 1
    LAST_LINE = 9999999
    TABLES
    BUFFER = I_BUFFER
    EXCEPTIONS
    NO_SUCH_JOB = 1
    NOT_ABAP_LIST = 2
    JOB_CONTAINS_NO_DATA = 3
    SELECTION_EMPTY = 4
    NO_PERMISSION = 5
    CAN_NOT_ACCESS = 6
    READ_ERROR = 7
    OTHERS = 8.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error' SY-SUBRC
    'al leer la orden de spool' P_SPOOL.
    ENDIF.
    ENDFORM. " LEER_SPOOL
    *& Form GRABA_FICHERO
    Graba el contenido del spool a fichero de texto.
    FORM GRABA_FICHERO.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = ' '
    CODEPAGE = ' '
    FILENAME = P_FTXT
    FILETYPE = 'ASC'
    MODE = ' '
    WK1_N_FORMAT = ' '
    WK1_N_SIZE = ' '
    WK1_T_FORMAT = ' '
    WK1_T_SIZE = ' '
    COL_SELECT = ' '
    COL_SELECTMASK = ' '
    NO_AUTH_CHECK = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    DATA_TAB = I_BUFFER
    FIELDNAMES =
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_WRITE_ERROR = 2
    INVALID_FILESIZE = 3
    INVALID_TABLE_WIDTH = 4
    INVALID_TYPE = 5
    NO_BATCH = 6
    UNKNOWN_ERROR = 7
    GUI_REFUSE_FILETRANSFER = 8
    OTHERS = 9.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error' SY-SUBRC
    'al grabar el fichero' P_FTXT.
    ENDIF.
    ENDFORM. " GRABA_FICHERO
    *& Form LANZA_WORD
    Abre la plantilla de Word y pega el contenido del portapapeles.
    FORM LANZA_WORD.
    DATA: WORDAPP TYPE OLE2_OBJECT,
    DOCUMENT TYPE OLE2_OBJECT,
    SELECTION TYPE OLE2_OBJECT.
    Copia el contenido del buffer en el portapeles
    CALL FUNCTION 'CLPB_EXPORT'
    TABLES
    DATA_TAB = I_BUFFER
    EXCEPTIONS
    CLPB_ERROR = 1
    OTHERS = 2.
    Abre Word
    CREATE OBJECT WORDAPP 'word.application'.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'No se ha podido abrir el Word'.
    ENDIF.
    Lo pone en visible
    SET PROPERTY OF WORDAPP 'Visible' = 1.
    Cogemes el objeto documento
    CALL METHOD OF WORDAPP 'Documents' = DOCUMENT.
    Abrimos el fichero plantilla
    IF P_PLAN IS INITIAL.
    CALL METHOD OF DOCUMENT 'Add'.
    ELSE.
    CALL METHOD OF DOCUMENT 'Open' EXPORTING #1 = P_PLAN.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al leer el fichero plantilla'.
    ENDIF.
    ENDIF.
    Coge el objeto selección
    CALL METHOD OF WORDAPP 'Selection' = SELECTION.
    Pega el contenido del portapapeles
    CALL METHOD OF SELECTION 'Paste'.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al pegar contenido del portapapeles'.
    ENDIF.
    Graba el fichero
    CALL METHOD OF WORDAPP 'ActiveDocument' = DOCUMENT.
    CALL METHOD OF DOCUMENT 'SaveAs' EXPORTING #1 = P_FWOR.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al grabar el nuevo documento'.
    ENDIF.
    Cierra Word
    CALL METHOD OF WORDAPP 'Quit'.
    IF SY-SUBRC NE 0.
    MESSAGE E398(00) WITH 'Error al cerrar Word'.
    ENDIF.
    ENDFORM. " LANZA_WORD
    check this also.................
    By using FM RSPO_RETURN_ABAP_SPOOLJOB you will be able to get the ASCII text of your Spool, which you can download to your local HD and open with M$ Word.
    Check the function module
    CALL FUNCTION 'RSPO_DOWNLOAD_SPOOLJOB'
         EXPORTING
              id    = p_spool
              fname = p_file.
    Give the file extn as .DOC. it will downlaod it as a
    Word doc.But I fear you wont get the table formats and
    all.
    ~~Guduri

  • How to pdf of chinese character into words

    how to converge a pdf file of chinese character into WORD.

    Hi,
    Unfortunately our conversion engine cannot convert text, such as Chinese.  It maybe something that we add in the future however it is not available at this time.
    What languages are supported for OCR by Adobe ExportPDF?
    Adobe ExportPDF supports the following languages for OCR:
    English (US)
    English (UK)
    German
    Spanish
    French
    Italian
    Japanese
    Please refer to the article mentioned below : http://forums.adobe.com/docs/DOC-1812
    ~Pranav

  • Cannot paste any online pictures from any websites into word/powerpoint/onenote 2013

    I cannot paste any pictures/ images copied from any websites into word, powerpoint and onenote.
    Now, i am so stressful because this strange problem occurs with both versions of Microsoft Office (2010 and 2013). I had updated the Microsoft Office from 2010 to 2013
    with the hope that this problem will be solved in 2013 version but I was so disappointed. I was so addicted to onenote and cannot live without onenote. In the past, I always used onenote to store countless handmade-creating articles and so many other information
    found on websites and other resources by simply copying (Ctrl + C) and pasting (Ctrl + V) them into onenote without any problems.
    This strange problem has occurred and resisted approximate 2 months. Now I am almost going insane. I am longing for help, any help from the online community. Please!
    I will describe the problem in more details.
    -My laptop was Asus N550JV, and it was installed only one operating system: Window 8 single language by manufacturer. Nothing such as virtual machine or multiple operating
    systems in this laptop.
    -This problem occurred with all websites, not only with a certain website or a specific website.
    -It occurred with all of my latest-updated web-browsers, including firefox, internet explorer (which was pre-installed by factory in my window 8), opera, safari, chrome.
    -Despite of using whatever web-browsers listed above, although the whole articles (text and pictures) on these websites were copied, however there was only text pasted
    successfully, excluding pictures.
    -Pictures/ images were not pasted together with text. The onenote/word/powerpoint only shows a blank space where the picture should be in. If I click on this blank space,
    a frame will appear covering this blank space inside, and the url address of this picture was shown. The
    “drawing tools”
    tab appeared instead of “picture tools”
    tab. I guessed the pasted pictures were considered as drawing objects, not as pictures.
    -After many unsuccessful attempts to solve this problem in Microsoft Office, some days ago I decided to install Open Office of Apache in the same laptop in order to make
    a control test between the two programs. I was successfully in copying and pasting text and pictures on many websites (using whatever web-browsers I am having) into text document of Open Office without any problems. Pasting pictures and text from websites
    into Open Office was successful, so that what the hell was happened with my Microsoft Office?
    -If I download or save the pictures found on websites to my laptop then using the
    “insert picture”
    function to insert these pictures into word/ppt/onenote, these pictures were inserted successfully without any problems.
    -Copying and pasting text and pictures from old articles stored in onenote to a newly created word document were successful without any problems. Copying and pasting text
    and pictures between word and word, onenote and onenote were successful without any problems.
    -It was concluded that this problem only occurred with online pictures pasted from websites, while inserting or pasting the downloaded pictures were successful
    without any problems.
    -My internet connection was not disrupted during copying and pasting processes.
    -My Canon laser printer only recognized and printed the text lines, there were only blank spaces in the places where the pictures should be in.
    During two months since having this problem, I have searched so many times in order to find a solution. All of solutions listed behind I already found on internet and tried
    them all but nothing worked! This problem still resisted in Microsoft Office 2013 and now I am so sad and tired because of it.
    List of solutions I found and tried but nothing worked:
    -Right-clicking then choose "paste option: keep source formatting”
    and choose “set as default paste option"
    -On the
    View tab of the Ribbon or on the status bar, choose
    Print Layout view, not Draft view.
    -Go to
    Office Button | Word Options | Advanced: Show document content and make sure that
    “Show drawings and text boxes on screen”
    is checked and that “Show picture placeholders”
    is not checked.
    -Go to
    Office Button | Word Options | Display: Printing options and make sure that
    “Print drawings created in Word”
    is checked.
    -On the
    Home tab of the Ribbon, locate the
    Paragraph group and click the dialog launcher arrow in the bottom right corner to open the
    Paragraph dialog; in that dialog, make sure that line spacing of the paragraph the picture is in is not set to an
    Exact value.
    -Paste the picture and immediately press
    Ctrl+Shift+F9 to unlink it. The picture will then be embedded in your document.
    -If you find that Word hangs when you try to paste, you can instead select
    Edit | Paste Special and choose “Device-independent Bitmap”
    instead of the default of “HTML format.”->
    I could not try this solution because my paste special options only had three choices: unformatted text, html format, unformatted unicode text.
    -Select File, Options, Advanced, then under
    Cut, Copy, Paste section set "insert/paste picture as”:
    tight/ inline with text/ through/ square/ top and bottom/ in front of text/ behind text… -> I have tried all
    choices but nothing worked.
    -Rename the Normal.dot or Normal.dotm global template file: run cmd.exe and type
    ren %userprofile%\AppData\Roaming\Microsoft\Templates\Normal.dotm OldNormal.dotm. Then type
    exit, and then press Enter. Or go to C:\Users\Home\AppData\Roaming\Microsoft\Templates to rename the Normal.dot/ Normal.dotm file manually.
    -Turn off the "Use draft quality" option:
    Click
    File, and then click Options. Click Advanced,
    Under Print, click to clear the Use draft quality check box. Click OK.
    -Change the view to:
    Print Layout/ Full Screen Reading/ Web Layout/ Print Preview
    For Word 2010-2013: Click File, and then click Print.
    -Check the box for
    “Print background colors and images”
    at File | Options | Display: Printing options.
    -Check the box for
    “Show background colors and images in Print Layout view”
    at File | Options | Advanced: Show document content.
    -Using repairing function to repair the Microsoft office 2013.
    Nothing worked! I have no clue of what have been happened with my Microsoft Office! Please help!
     I cannot upload a screenshot taken from my laptop into this forum. It said that
    body text cannot contain images or links until we are able to verify your account.

    To Scxy1234: I also don't know why my paste special options only had 3 choices excluding "device independent bitmap'
    To Steve Fan: I created the new second user account in my window 8. It was set as a standard account, not as administrator account as my first original user account. Specifically, i used the same email address with this forum account's to
    create this second user account. It means that the second user account in my laptop also was a Microsoft account.
    Can you guess what happened after i had logged in to the second user account? I opened some random websites by firefox, copied and pasted all text and pictures on these websites into a word document and onenote successfully without any problems!!!!
    I saved this word document and exported this onenote section to a Usb. After that, i switched from second standard user account to my window administrator account and opened the two files which were saved to Usb previously. They were opened and displayed
    normally as the same as what i previously had seen in the second user account, i.e. pasted text and pictures were displayed normally. However, when i opened the same web address again to copy the same text and pictures to word and onenote, there were only
    text lines pasted successfully, excluding pictures! This old strange problem happened again when using original administrator account for logging in window. In contrast, when using the second standard user account to log in window, copying and pasting text
    and online pictures of Microsoft office worked normally.
    I truly don't figure out the reason(s) caused this strange problem. I think my case is a special case because i tried all solutions other people had tried but nothing worked.
    Please help me!
    p/s: when i logged in the second standard user account, i opened the paste special options in word and there were only 3 choices under paste special options, excluding "device independent bitmap"

  • When I go into pdf file it only gives me the option to convert into pdf when it's already a pdf. I want to convert it into word and I've purchase this a few months ago now I need help

    I Need help in converting a pdf into word. I've purchased it a few months ago and now for the first time I tried to use word and I can't it only gives me the option to convert it into a pdf when it is already a pdf! Urgent help please

    Not sure what you mean by "tried to use Word". ExportPDF doesn't change what Word can do. Can you explain what you try and what happens in more detail?

  • How to add an "age / time counter" into DW?

    Can anyone assist on how to add an age / time counter into DW?
    In other words to say "Child X is now a years, b months old"? or "Product Z was launched A years B months ago"? Or, on the other hand, "You only have Z days & Y minutes left to enter"? With it updating in real time?
    Apologies in advance if this is a silly / obvious question but I just can't seem to do it!

    This isn't something you would add to DW, you would need to add it to your webpages. You would do this with javascript. Search the web for
    'javascript countdown timer' for plenty of examples.

  • Date/time conversion from UTC to CET

    Hello,
    Jjust a little question to our SAP BI community!
    Is there a BI function/ggod way that converts a (datetime) string DDMMYYYYHH:MM:SS  in UTC time zone into a string DDMMYYYYHH:MM:SS in  CET timezone ?
    We receive this string in input in a flat file and need it to convert from UTC to CET.
    Or do you know any way to convert a date/time from IUTC to CET, eveen using an ABAP function?
    Thanks a lot,
    Matthieu

    Hi,
    Check this thread for time conversion from UTC to Local time
    [ABAP statement for converting UTC date/ time to local date/time],
    Regards,
    Daya Sagar

  • How to embed scanned pdf's of drawings with comments into Word?

    Hello, 
    I have a unique problem which I would like some help with.  I believe the solution lies within concerting a pdf to a Word format but to date I have had no success. 
    I have pdf's of scanned E-size drawings which I have marked up with comments (highlights, textboxes, etc...) which I would like to embed in a Word document WITH the comments.  So far my Word conversions have resulted in useless unreadable Word files.  Any thoughts? 
    If I can embed these files within Word it would preserve the resolution.  If I use the snapshot tool on the E-size drawing and put it on a letter size page in the Word doc it becomed unreadable. 
    Thanks 
    I am using Adobe Acrobat Standard ver 8.2.2 with Office 2007

    For the graphics portion you can use the export graphics option in Acrobat. That will save each scanned page (as long as no OCR was done) as a graphic that can be imported to WORD. You can also save as a TIFF or such. For including the markup that might be more useful. In that case, each page is saved as a graphic. I would recommend TIFF and you should have an options at the bottom of the save as screen to set the resolution. Again, import these into WORD.
    I am only mentioning these processes since you basically have graphics and saving to WORD you indicate does not work (though I am not sure why).

  • What can I do to speed up uploading a pdf file that needs to be exported into Word?

    I have been trying to upload a 1 page pdf file for exportation into Word for the last couple of days. Every time I try to upload it into Adobe ExportPDF, the file just shows that it is still uploading and it does this for several hours (isn't finished after 12 hours).
    I uploaded a much larger pdf document earlier this week (over 64 pages) for editing and it uploaded that book fairly quickly and converted it into Word without any problems.
    Any suggestions on what the problem might be or what I could do to speed things up? I only need to be able to edit a couple of words near the top of the page.

    How large is the file? The size in pages is not important, what matters is the size in megabytes and your broadband speed.

  • Is there a Mac Application that exactly copies PDF documents into Word?

    Hello,
    I work at a University and acquire electronic texts for students with disabilities from publishers. They come in a PDF format where the images on the screen can be highlighted with the mouse. Sometimes I have students who require documents in Word format as they use Jaws software and I am currently using a PC and use Abbyy PDF Transformer or SolidConverter PDF to transform PDF's into Word.
    I just got a Mac for my office and am transferring over my files etc. I plan on using Parallels in order to use the PC versions I currently have. Is there a good Mac equivalent out there that works well?
    I've installed Adobe Pro 9 on my Mac for splitting PDF's etc. and it has an Export to Word function but I haven't been able to get it to work properly. Are there any free Mac programs that will convert a PDF to Word successfully?
    At work I'm on a 21.5" iMac the base model.

    Yeah this isn't my questions but I thought I'd ask you my questions since you seem to know what your doing an I dont have time to call Apple. Wanna just read the jist of it all? Read the bold, italic, and underlined peice.
    I'm 14, Im failing geography, so I typed a AMAZING, mind bobbling, GOLDEN essay, if you will, with tons of extra crazy information, I started my essay at midnight, I used every single adjective in the paper in the thesaurus to make it sound like I'm a 30 year old college english professor, the essay was brilliant! I finished roughly around 4 in the morning, I didnt save it because I had one last finishing touch, the title! I couldnt think of the title so +_*i went to yahoo answers to ask for suggestions and then i opened up my dashboard to use the dictionary/thesaurus widget, but the movie widget was all covering it up so I went to edit my widgets to move the movie widget and then my dashboard froze. My Microsoft Word for Mac document was on the page underneath the safari page, then the dashboard is open. I can move my mouse around, and can even click someparts of the safari page in the back but the widgets wont go away and its not more frozen than ever, I tried commandaltesc for force quit but then I would have lost my document that I didnt save, besides i couldnt even click the "force quit" button because a widget was in the way!! I even tried to command+Q to quit the safari page so I could TRY to save the Doc from behind the dashboard but I didnt work. But when I plugged in my ipod,(hoping that itunes and iphoto would open normally and wake up the screen) but only iphoto opened up and command+Q worked on that but not for safari! Please, please, PLEASE tell me there is a way to unfreeze my computer and not close my word application, or if i have to close it out can I recover my essay or most of it at least??*_+

  • How do I export a Final Cut Express 4 movie using quick time conversion without stretching the image?

    I have created a movie in Final Cut Express 4 using videos and still photos of various aspect ratios and resolutions.  Some of the photos are verticals.  When I try to use File>Export>Using Quick Time Conversion, my images end up being stretched horizontally when the video is finally processed.  I have tried preserving the aspect ratio but the video still ends up stretched horizontally.  What should my settings be in Quick time conversion?  I just want to make a video for YouTube.
    Thanks.  -Bob

    If you shoot in one of the following modes you should be able to Log & Transfer directly into FCE:
    HD:  1920x1080/60i (FX or FH mode)
    HD:  1440x1080/60i (HQ or LP mode)
    SD:  720x480/60i
    1080/60p (PS mode) seems to be the default mode in your camcorder.  FCE only supports progressive video in 720p50 or 720p60.   That's probably why you have had to import via iMovie.
    It would be better to upgrade to Final Cut Pro X, the version currently supported.  FCE was discontinued over 18 months ago and is not supported on Lion or Mountain Lion.

  • How to convert an time interval into float ?

    Dear oracle Experts,
    I have a question concerning time conversion.
    I would like to convert an interval like e.g.
    tsDuration INTERVAL DAY (9) TO SECOND;
    into a float which describes the interval as a fraction of a day where
    the pre decimal position is the number of days and the post decimal
    position the fraction of a day in a decimal syntax of the day.
    Are there conversion function available in Oracle 10g with which I
    could perform that task ?
    If there isn't a conversion function for that.what's the best way to do it ?
    Best regards,
    Daniel

    Hi Srini
    1. Copy/Paste Webdynpro components in the new project as was suggested before
    2. Or create new project, copy _comp folder from old project to the new one. But, do not forget to update .dcdef & .project files manually after this. You have to set the correct project name in .dcdef and set the correct local project path in .project.
    BR, Sergei

  • Converting files into Word

    Can you please tell me what version of Word PDF converts into Word?

    Hi,
    ExportPDF would convert the PDF to the document compatible with MS Word version 2003 and 2007 onwards.
    You just need to choose the your option from the dropdown, if you are using MS Word 2003 then you need to choose .doc while conversion and if you are on higher version then MS Word 2003 then you need to choose .docx from the dropdown
    ~Pranav

Maybe you are looking for

  • Need help: trouble printing a doc into a pdf

    Hello I can not take a word docx or any other format and convert it into a pdf format.  When I click on printer, then pdf, hit ok - it gives me : invalid "adobe pdf" printer properties: do not change spooler settings. Please selete "print directly to

  • Zoom level keep resetting with or without zoom addons

    Zoom setting does not hold, reset itself after every request, same behavior with FF built-in zoom, Nosquint, and DefaultFullZoomLevel addons. Very annoying, if problem persist may need to use other browsers. Some examples below. The following web sit

  • Is it bad to leave isight on?

    I have looked everywhere for this answer all over the boards, couldn't find it, so I'm asking. Does anyone know if it is a bad thing to leave your isight camera on? Like I mean for extended periods of time, like ever time the screen saver goes up or

  • Volume bar is frozen

    from time to time the volume bar and volume controls on my OSX LION mid2010 13MBP freezes up - Any idea why this is???

  • Inputing East Asian languages on ATV2

    I can't type any East Asian languages on apple TV youtube searches. I guess it is possible to use apple remote app with your iphone or ipad and input East Asian languages from those devices? However, I don own an iphone, iPad, or iPod Touch. I bought