"/" date seperator is now a 2

There was a previous thread concerning this but it was archived and I couldn't add to it.
I have an eMac running 10.4.9. FIrst noticed in Quicken but later found in other places, the slash "/" in a date only works if you put a 2 in its place.
I go to the Date and Time preferences box and the place where the date is does not have a box for a date but just a line at the bottom of where the box for the date should be.
Initially it was found while running Tiger 10.4.8 but the previous posts happened in March of 2006, before 10.4.8 existed.
Odd that in my case and in the previous posts case they were both eMacs.
eMac   Mac OS X (10.4.9)  

Open the International pane of System Preferences, click on the Format tab, find and click the upper Customize button, and change the formats used for the date.
(21760)

Similar Messages

  • I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?

    I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?
    Attachments:
    try2.txt ‏2 KB
    read_array.vi ‏21 KB

    The problem is in the delimiters in your text file. By default, Read From Spreadsheet File.vi expects a tab delimited file. You can specify a delimiter (like a space), but Read From Spreadsheet File.vi has a problem with repeated delimiters: if you specify a single space as a delimiter and Read From Spreadsheet File.vi finds two spaces back-to-back, it stops reading that line. Your file (as I got it from your earlier post) is delimited by 4 spaces.
    Here are some of your choices to fix your problem.
    1. Change the source file to a tab delimited file. Your VI will then run as is.
    2. Change the source file to be delimited by a single space (rather than 4), then wire a string constant containing one space to the delimiter input of Read From Spreadsheet File.vi.
    3. Wire a string constant containing 4 spaces to the delimiter input of Read From Spreadsheet File.vi. Then your text file will run as is.
    Depending on where your text file comes from (see more comments below), I'd vote for choice 1: a tab delimited text file. It's the most common text output of spreadsheet programs.
    Comments for choices 1 and 2: Where does the text file come from? Is it automatically generated or manually generated? Will it be generated multiple times or just once? If it's manually generated or generated just once, you can use any text editor to change 4 spaces to a tab or to a single space. Note: if you want to change it to a tab delimited file, you can't enter a tab directly into a box in the search & replace dialog of many programs like notepad, but you can do a cut and paste. Before you start your search and replace (just in the text window of the editor), press tab. A tab character will be entered. Press Shift-LeftArrow (not Backspace) to highlight the tab character. Press Ctrl-X to cut the tab character. Start your search and replace (Ctrl-H in notepad in Windows 2000). Click into the Find What box. Enter four spaces. Click into the Replace With box. Press Ctrl-V to paste the tab character. And another thing: older versions of notepad don't have search and replace. Use any editor or word processor that does.

  • There used to be a preview window in mail where you could read the message in the mail box but now its gone. It just shows me who its from and the date. I now have to click on the message twice to get it to display. How do I get the preview box back?

    There used to be a preview window in mail where you could read the message in the mail box but now its gone. It just shows me who its from and the date. I now have to click on the message twice to get it to display. How do I get the preview box back?

    There is a bug in Mail triggered by receiving a password-protected PDF as an attachment. According to reports, the bug is fixed in OS X 10.8.5.

  • How we will display the header data and item data seperately in lists

    how we will display the header data and item data seperately in lists

    REPORT z_alv_list_block.
    TYPE-POOLS: slis. " ALV Global types
    SELECTION-SCREEN :
    SKIP,
    BEGIN OF LINE,
    COMMENT 5(27) v_1 FOR FIELD p_max. "#EC NEEDED
    PARAMETERS p_max(2) TYPE n DEFAULT '02' OBLIGATORY.
    SELECTION-SCREEN END OF LINE.
    DATA:
    1st Table
    BEGIN OF gt_kna1 OCCURS 0, " Data displayed
    kunnr LIKE kna1-kunnr, " Customer number
    ernam LIKE kna1-ernam, " Name of Person who Created
    erdat LIKE kna1-erdat, " Creation date
    name1 LIKE kna1-name1, " Name 1
    END OF gt_kna1,
    2nd Table
    BEGIN OF gt_mara OCCURS 0,
    ernam LIKE mara-ernam, " Name of Person who Created
    matnr LIKE mara-matnr, " Material number
    ersda LIKE mara-e rsda, " Creation date
    brgew LIKE mara-brgew, " Gross weight
    END OF gt_mara,
    3rd Table
    BEGIN OF gt_vbak OCCURS 0,
    vkorg LIKE vbak-vkorg, " Sales organization
    kunnr LIKE vbak-kunnr, " Sold-to party
    vbeln LIKE vbak-vbeln, " Sales document
    netwr LIKE vbak-netwr, " Net Value of the Sales Order
    waerk LIKE vbak-waerk, " SD document currency
    END OF gt_vbak.
    INITIALIZATION.
    v_1 = 'Maximum of records to read'.
    START-OF-SELECTION.
    Read data
    SELECT * FROM kna1
    UP TO p_max ROWS
    INTO CORRESPONDING FIELDS OF TABLE gt_kna1.
    SELECT * FROM mara
    UP TO p_max ROWS
    INTO CORRESPONDING FIELDS OF TABLE gt_mara.
    SELECT * FROM vbak
    UP TO p_max ROWS
    INTO CORRESPONDING FIELDS OF TABLE gt_vbak.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
    EXPORTING
    i_callback_program = sy-cprog
    i_callback_user_command = 'USER_COMMAND'.
    PERFORM list_append TABLES gt_kna1
    USING '1'
    'GT_KNA1'.
    PERFORM list_append TABLES gt_mara
    USING '2'
    'GT_MARA'.
    PERFORM list_append TABLES gt_vbak
    USING '3'
    'GT_VBAK'.
    PERFORM f_list_display.
    FORM USER_COMMAND *
    FORM user_command USING i_ucomm LIKE sy-ucomm
    is_selfield TYPE slis_selfield. "#EC CALLED
    CASE i_ucomm.
    WHEN '&IC1'. " Pick
    CASE is_selfield-tabname.
    WHEN 'GT_MARA'.
    WHEN 'GT_KNA1'.
    WHEN 'GT_VBAK'.
    READ TABLE gt_vbak INDEX is_selfield-tabindex.
    IF sy-subrc EQ 0.
    Sales order number
    SET PARAMETER ID 'AUN' FIELD gt_vbak-vbeln.
    Display Sales Order
    CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
    ENDIF.
    ENDCASE.
    ENDCASE.
    ENDFORM. " USER_COMMAND
    ----< /div>
    Form list_append
    FORM list_append TABLES ut_table
    USING u_no TYPE char1
    u_tabname TYPE slis_tabname.
    Macro definition
    DEFINE m_fieldcat.
    ls_fieldcat-fieldname = &1.
    ls_fieldcat-ref_tabname = &2.
    append ls_fieldcat to lt_fieldcat.
    END-OF-DEFINITION.
    DEFINE m_sort.
    ls_sort-fieldname = &1.
    ls_sort-up = 'X'.
    append ls_sort to lt_sort.
    END-OF-DEFINITION.
    DATA :
    ls_fieldcat TYPE slis_fieldcat_alv,
    lt_fieldcat TYPE slis_t_fieldcat_alv, " Field catalog
    ls_sort TYPE slis_sortinfo_alv,
    lt_sort TYPE slis_t_sortinfo_alv. " Sort table
    DATA:
    lt_events TYPE slis_t_event,
    ls_event TYPE slis_alv_event,
    ls_layout TYPE slis_layout_alv.
    ls_layout-group_change_edit = 'X'.
    ls_layout-colwidth_optimize = 'X'.
    ls_layout-zebra = 'X'.
    ls_layout-detail_popup = 'X'.
    ls_layout-get_selinfos = 'X'.
    ls_layout-max_linesize = '200'.
    CASE u_no.
    WHEN '1'.
    Build field catalog and sort table
    m_fieldcat 'KUNNR' 'KNA1'.
    m_fieldcat 'ERNAM' 'KNA1'.
    m_fieldcat 'ERDAT' 'KNA1'.
    m_fieldcat 'NAME1' 'KNA1'.
    m_sort 'KUNNR'.
    WHEN '2'.
    m_fieldcat 'MATNR' 'MARA'.
    m_fieldcat 'ERNAM' 'MARA'.
    m_fieldcat 'ERSDA' 'MARA'.
    m_fieldcat 'BRGEW' 'MARA'.
    m_sort 'MATNR'.
    WHEN '3'.
    m_fieldcat 'VBELN' 'VBAK'.
    m_fieldcat 'VKORG' 'VBAK'.
    m_fieldcat 'KUNNR' 'VBAK'.
    m_fieldcat 'NETWR' 'VBAK'.
    m_fieldcat 'WAERK' 'VBAK'.
    m_sort 'VBELN'.
    ENDCASE.
    IF u_no CA '13'.
    MOVE 'TOP_OF_PAGE' TO ls_event-name.
    CONCATENATE 'TOP_OF_PAGE' u_no INTO ls_event-form.
    APPEND ls_event TO lt_events.
    ELSE.
    MOVE 'TOP_OF_LIST' TO ls_event-name.
    CONCATENATE 'TOP_OF_LIST' u_no INTO ls_event-form.
    APPEND ls_event TO lt_events.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
    EXPORTING
    it_fieldcat = lt_fieldcat
    is_layout = ls_layout
    i_tabname = u_tabname
    it_events = lt_events
    it_sort = lt_sort
    i_text =
    TABLES
    t_outtab = ut_table
    EXCEPTIONS
    program_error = 1
    maximum_of_appends_reached = 2
    OTHERS = 3.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDFORM. " LIST_APPEND
    Form f_list_display
    FORM f_list_display.
    DATA ls_print TYPE slis_print_alv.
    ls_print-no_print_selinfos = 'X'. " Display no selection infos
    ls_print-no_print_listinfos = 'X'. " Display no listinfos
    ls_print-reserve_lines = 2. " Lines reserved for end of page
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
    i_interface_check = ' '
    is_print = ls_print
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDFORM. " F_LIST_DISPLAY
    FORM top_of_page1 *
    FORM top_of_page1. "#EC CALLED
    PERFORM top_of_page.
    ENDFORM.
    FORM top_of_page3 *
    FORM top_of_page3. "#EC CALLED
    PERFORM top_of_page.
    ENDFORM.
    FORM top_of_page *
    FORM top_of_page.
    ULINE.
    WRITE : sy-uname, sy-title(56) CENTERED, sy-datum.
    ULINE.
    ENDFORM.
    FORM top_of_list2 *
    FORM top_of_list2. "#EC CALLED
    WRITE 'TOP OF LIST2'.
    ENDFORM.
    END OF PROGRAM Z_ALV_LIST_BLOCK ***********************

  • How to Populate Vision Data seperately?

    Hi,
    I am currently installing R12 on windows server 2003.(First time atteempt of EBS installation).
    Due to space limitation , I am installing it as Production .
    HoweverI want to install vision data for my practice . So I want to install vision data seperately and that also only for few products.
    Is it possible to achieve?
    Abdul Wahid

    Hi,
    There is no supported way to achieve this (you cannot even install the vision demo database partially).
    To install Vision demo database, run Rapid Install again and select to install this database.
    Regards,
    Hussein

  • Calendar today doesn't show current date, it's now 23rd of Nov 01:03 in Beijing, but  Today button of Calendar itself shows "today" as 22nd. So does the Calendar of Yosemite

    Calendar "today" doesn't show current date, it's now 23rd of Nov 01:03 in Beijing, but Today button of Calendar itself shows "today" as 22nd. So does the Calendar of Yosemite.
    Is it a bug?

    Sorry for the huge chunk of code.
    Mm, yes, I'm far too lazy to read all that.
    But you should be overriding paintComponent(), not paint().
    http://www.google.co.uk/search?hl=en&q=java+swing+painting&btnG=Google+Search&meta=
    I've not bothered to work out from that pile of magic numbers exactly what you're tring to draw but is it not something that JTable would happily do?

  • I done erase data and setting now what i need to do to run my i phon, i done erase data and setting now what i need to do to run my i phon

    i done erase data and setting . now what i need to do to start my i phon

    i done erase data and setting now what i need to do to start my i phon

  • Motherboard went in my g5 desktop so i go my hard drive extracted with all my data..I now have an ibook g4 laptop and am trying to get gb working but get this message: he Instrument Library is invalid. GarageBand expects a valid Instrument Library folder?

    Motherboard went in my g5 desktop so i go my hard drive extracted with all my data..I now have an ibook g4 laptop running off OSX 10.4.11 and am trying to get Garageband working but get this message: The Instrument Library is invalid. GarageBand expects a valid Instrument Library folder?

    Contact Apple Support:
    http://www.apple.com/support/contact/
    Apple - How to Contact Us:
    http://www.apple.com/contact/
    Be sure to refer to the repair ticket number.
    Sounds like a terrible mixup.
    Good luck & happy computing!

  • Having trouble receiving or taking calls on this phone, it started using data by itself now after being reset per advice from verizon, can't receive calls

    since December 2014 this phone has started acting up, I have called Verizon regarding overage data usage,even though phone was on home wifi.  Tech told me to reset, I have reset and blocked data usage but now the phone is unable to make or receive calls.  What is verizon able to do, I still have the year warranty on device.

        Holiday44,
    We are here to help and want you to be back on track with send/receiving calls. What make/model phone do you have?
    ErinW_VZW
    Follow us on Twitter @VZWSupport

  • Data seperator check

    Hello,
    I am uploading CSV file to internal table,I need to check the data seperator should be only
    semicolon.
    Content will be like this.
    Ex:    a;b;c;d
               ;p; ; q
    How can i do that ?
    Rgds,
    Karthi.

    Its my code, here i am able to check the data seperator.
    if the data seperator is not semicolon then any one of the fields would be empty
    then i throw a message to terminate the Program.
    But there are cases i can also have empty value for fields.
          split g_r_tab_temp at ';' into   g_r_tab_final-vkorg
                                           g_r_tab_final-matnr
                                           g_r_tab_final-prodh
                                           g_r_tab_final-loc_snp.
          if sy-tabix eq 1.
            if g_r_tab_final-vkorg eq ' ' or
               g_r_tab_final-matnr eq ' ' or
               g_r_tab_final-prodh eq ' ' or
               g_r_tab_final-loc_snp eq ' '.
              message i100 with text-011.
              leave program.
            endif.
          endif.

  • Accidentally overwrote iPhone with iPod on iTunes.  How do I get my data back?  Now iPhone acts like iPod.

    Hooked iPhone onto Mac to download songs from iTunes.  Accidentally restored it as the iPod previously used.  Now all data, pictures, content erased from iPhone.  Now it acts as an iPod.  iPhone was never synced with the Mac nor backed up.  It will now, but how do I revert to the old iPhone?

    The hard drive cannot be damaged any further by simply removing it and then putting it back in. If it was getting progressively worse, it may now be at a point where the data is not accessible in any normal way.
    Since your iMac is still covered by warranty until December, you need to get it fixed. That is the first step. Whether you can recover your data or not, you need a working iMac. Ask the Apple Store to give back the broken hard drive so that you can send it to a data recovery shop, even if you do not intend to do so. If Apple says they need to retain the old drive (since it is being repair under warranty), take it to an Apple authorized repair shop (who can do the same work under warranty) that will let you keep the old drive.
    After getting your iMac fixed and working normally, you can try to recover the data. You may be able to access it through a USB or FireWire external case. But if the drive is not at least visible in Disk Utility, I don't think other utilities such as Disk Warrior and TechTool Pro will help.

  • Dates in calendar now not BOLD in calendar view

    Environment: W2K3 server; BPS software; 6 users; all BB8830 curves; all WinXPP w/ Ofc2003
    I'm confused. I have one of my user’s handhelds. A new appointment was made in Outlook for a week from May 5 - May 12. The appt showed up correctly in the hh. Then, using Outlook, the appointment was changed to May 13-May 20. Outlook showed the change, but even after 3 days the hh still showed the original appoint time frame.
    To test, I made a new "test" appointment in the calendar on the hh, and it appeared on Outlook. I deleted the appointment from the hh and it deleted from Outlook. I made a new "test" appointment on Outlook and it appeared on the hh. I deleted the test appointment from Outlook and it deleted from the hh. All this happened immediately and was as expected.
    I then deleted the weeklong appointment from Outlook, but it remained on the hh. (???) I tried to open the appointment from the hh, but I received and error message on the hh saying the appointment was deleted by an external source, yet the appointment was still visible on the hh.
    I pulled the battery from the phone to power cycle it. When the phone came back on, the appointment was gone, but now the calendar does not have emboldened dates where appoints exist. For each day that has appointments in "month" view, the small dots appear next to the calendar date. The date however should be emboldened, but now its not.
    We have 6 other identical phones. On each other phones, the calendar date is emboldened when there is an appointment on that date
    How do I get the calendar dates to be emboldened like the rest of hh's?

    Hi,
    Thanks for reply.
    User is moving on other page via html/javascript menu.My calender component is not binded with session bean it is using page bean properties.
    I am giving the JSP code for calendar...........
    <ui:calendar binding="#{BasicUnavailability.toDate}" columns="10"
    dateFormatPattern="MM/dd/yyyy" id="toDate" required="true"
    style="left: 343px; top: 35px; position: absolute"
    validator="#{BasicUnavailability.toDate_validate}" />
    Please tell me the solution of this problem.
    With Regards,
    Sharad

  • Date Seperation in check printing

    Hi,
    I the SAP Scripts , i am having the date variable's value as 21102011.
    I want to introduce the logic for the separation of each number by space to print in the check as the check contains 8 boxes respectively.
    that is, i want to print the date  as 2 1 1 0 2 0 1 1 .
    i am not getting the logic as i am new to ABAP.
    Please provide me with the logic for separation of Numbers in Date .

    Hi,
    Use off set.
    Use tab seperator.
    Date0(1),,Date1(1),,Date+2(1),,and so on...
    Regards,
    Surya

  • I have a client who was working with Now to Date, which is now obsolete.  She is looking for a mac calendar program that is as close to Now to Date as possible.  She has installed Outlook 2012 but finds that is takes too much time to enter data.  Help?

    I have a client who has been using Now to Date on her Mac.  That program is now obscure and she is looking for software that is extremely similar.  She has tried Outlook for Mac and it is too labor-intensive for her.  She wants a professional look, and something that is not linked to e-mail as she works with a lot of proprietary information.  Help?

    I could not identify that app in macupdate.com. If a Calendar program, what about iCal? did she try it and disliked? If you go to macupdate.com, and type ‘calendar’ in seach filed, you will be given a lot of apps, you or she should test what it most appropriate for your/her needs.

  • Modified Date changes to now by selecting (not opening) vmwarevm file

    Yosemite OSX 10.10.2
    VMware Fusion is currently not running, and it's disabled (an older version not compatible with Yosemite has not yet been upgraded) so I don't think Fusion is doing this....
    I have VM files (.vmwarevm) that were not opened for months. I want to see which is which by viewing the date stamp in Finder. Clicking once shows the old date, then almost instantly it is changed to Now.  Like this:
    Created 2009-04-13, 1:23 PM
    Modified Today, <now>
    Last Opened Today, <now>
    ... but once changed those dates do not change again.
    I found an un-clicked one and it did the same thing, with <now> as the time stamp on that one. Now I have files with slightly different "today" date stamps which is incorrect and not helpful to determine the age of these files.
    It appears something (Preview?) is opening the file to access the content and generate a "recent screenshot" for the current state of the VM.
    I found no other files [edit: no other file types] that behave this way.
    I duplicated and renamed an odt file to .vmwarevm and it does not result in a Modified or Last Opened date change.
    (one of the VMs also doesn't change so I suspect a bad file format).

    Acrobat 9 makes PDF versions 4.0 and higher. You need a PDF version 5.0 to handle transparencies well. PDF version 4.0 doesn't handle transparency effects well at all.
    Pagemaker needs Acrobat 5 to be able to directly export PDF's with custom job settings. It only generates a PDF version 4.0, but works for our needs in Pagemaker.
    I choose to keep both Distiller versions to make our work easier. When you have 20 ads open in Pagemaker, and you send the first one as a postscript through the print window, it sets up the "File, Export" in Pagemaker to use the correct PDF job setting, and then you can just do "File, Export to PDF" for the next 19 ads and it makes perfect PDF's. Works slick instead of having to make postscripts of all 20 ads first and then run them through Distiller. If you only have Distiller 9 installed, it doesn't let you select any custom job settings from your Distiller. Crazy, I know, but that's what I've figured out we have to do to get it to work. Have to have Distiller 5.0 to control PDF settings in Pagemaker and still be able to export from the file menu directly to PDF.
    Distiller 9 is used for all other more advanced design pieces created in InDesign or Photoshop that are saved as a postscript first and PDF's are made the long way in those cases (running postscript through Distiller 9 at the end).

Maybe you are looking for

  • Azure project remove instead of unload now cannot find a part of the path build error

    I have an azure project built in vs2010 with a web role and worker role project. I accidently removed the worker role project then re added through 'add existing project'. Now when I try and build I get Error 1   Could not find a part of the path 'C:

  • ESW: No. of web services in the SAP ERP????

    Dear Experts, My small mind has a small question. I somewhere heard that there are 1500 webservices in the SAP ERP. I searched in the workplace to find out the details about the webservices. But to my surprise I found near about 300 enterprise servic

  • Droid 3 Music Problem

    My phone has been working fine for the few months that I've had it until mid-last month. What happens is whenever I try to listen to music using a headphone and put the jack in the slot, the phone starts calling the last recent number, hangs up, then

  • How debugging can be done at screen levels

    hi sir, how debugging can be done at screen levels please help me waiting for a positive reply

  • Finding an answer to my question

    I have asked a question, but I don't have a clue where to go to find my answer. I found that betting around this help area is quite difficult. How and where do I find the answer which I asked earlier about adding sites to my favorites?