JButton state does not changes at first click

requirement of flow is that when jButton1 is pressed
if it has text "Check" then execute second if statement
and is it has text "Refresh" then
have to execute first if statement.
The problem is that when jButton1 has text "Refresh" it executes first if condition and refreshes the jTextField1, choice1, and jTextArea1 but does not changes the states of buttons as required
if(!(recPresent) || jButton1.getText().equals("Refresh"))
          jButton1.setText("Check");
      jButton4.setEnabled(false);
      jButton2.setEnabled(true);part of if condition.
plz some one point out that why buttons dont change their state.
And if i press jButton1 second time then buttons change state as required.
but y not at first time?
Following is code used..................
public void jButton1_mouseClicked(MouseEvent e)
  boolean recPresent = false;
if (!(jTextField1.getText().equalsIgnoreCase("")))
            recPresent = Connect.preCheck(jTextField1.getText());
      if(!(recPresent) || jButton1.getText().equals("Refresh"))
         jButton1.setText("Check");
      jButton4.setEnabled(false);
      jButton2.setEnabled(true);
jTextField1.setText("");
          choice1.select(0);
          jTextArea1.setText("");
      if (recPresent && jButton1.getText().equals("Check") )
        jButton1.setText("Refresh");
        jButton4.setEnabled(true);
        jButton2.setEnabled(false);
        choice1.select (Connect.getReason(jTextField1.getText()));
        jTextArea1.setText(Connect.fetchComments(jTextField1.getText()));
        recPresent = false;
}

Use the java.awt.EventQueue invokeLater method to place your GUI changes on the event dispatch thread. For example:
if (!(recPresent) || jButton1.getText().equals("Refresh"))
  EventQueue.invokeLater(new Runnable() {
    public void run() {
     jButton1.setText("Check");
     jButton4.setEnabled(false);
     jButton2.setEnabled(true);
}

Similar Messages

  • How do I check internet usage history? When i use the "History" tab on the tool bar all I see is today's activity & the calendar does not change when I click on it. Thanks

    How do I check internet usage history? When i use the "History" tab on the tool bar all I see is today's activity & the calendar does not change when I click on it. Thanks

    zedzed,
    Here's another thought.
    Navigate to HD > Users > Library > Safari: Make a duplicate of History.plist.
    To duplicate the file, click once to highlight it. Press the Command + D keys.
    Drag the History,plist copy file to the Desktop.
    Highlight it. Press the Command + I keys, to get info.
    Change Open With to TextEdit.
    When you open the file in TextEdit, it will be difficult to read, but you will be able to pick out some sites.
    ali b

  • :system.cursor_block value does not change when mouse click

    Form created with Forms version 6.0.8.8.0. Consists of a control block that has the toolbar buttons, a filter control block that contains item, and a data block. The filter control block and data block are on a tabbed canvas. There are 3 tabs with corresponding filter control block and data block on each.After the data block is queried, code sets the navigation to the control block with the go_item built-in. The user would use a mouse click on the filter control block on one of the tabs to activate an LOV, code is in a generic when-mouse-click trigger that will determine the item focus with the value in the system variable :system.cursor_block. Works for the first tab. Does not work for 2nd or 3rd tab. On-error trigger does not capture any error. Values for :system.cursor_block for tab 1 show that value before mouse click is 'control.detail' and after mouse click is 'filter.a'. For tabs 2 and 3 the value before mouse lick is 'control.detail' and after mouse click is 'control.detail' instead of 'fiter.b' or 'filter.c'. Verified that the 3 filter blocks are identical. Can anyone shed some light on this anomoly? I have been looking for this solution (many different iterations and changes to trap it) for too long.

    :System.Cursor_Block reports the name of a block, NOT a BlockName.ItemName.
    Use :System.Trigger_Item with your mouse click, or :System.Cursor_Item.

  • Tabstrip does not save when first clicked

    After I set all the input field to be required for my 3 tabs in my tabstrip, I am only able to save the data in text field after I click the save button the second time and not the first time.
    Clicking Save button first time:
    http://img407.imageshack.us/img407/6461/screenjk0.png
    Clicking Save button second time:
    http://img407.imageshack.us/img407/3266/screen2ng4.png
    Here are my codes:
    REPORT  ZTREE_STRUCTURE2.
    DATA : IO_NAME(40) TYPE C,
          IO_AGE(40) TYPE C,
          IO_GENDER(40) TYPE C.
    DATA: P_HERA TYPE DNTAB-TABNAME VALUE 'ZHERA',
           ITAB_HERA TYPE TABLE OF ZHERA,
           FIELD_COUNT TYPE I,
           WA_HERA LIKE LINE OF ITAB_HERA,
           P_HERA2 TYPE DNTAB-TABNAME VALUE 'ZHERA2',
           ITAB_HERA2 TYPE TABLE OF ZHERA2,
           WA_HERA2 LIKE LINE OF ITAB_HERA2.
    SELECT * INTO TABLE ITAB_HERA FROM ZHERA.
    SELECT * INTO TABLE ITAB_HERA2 FROM ZHERA2.
    *&SPWIZARD: FUNCTION CODES FOR TABSTRIP 'TABNAME2'
    CONSTANTS: BEGIN OF C_TABNAME2,
                 TAB1 LIKE SY-UCOMM VALUE 'TABNAME2_FC1',
                 TAB2 LIKE SY-UCOMM VALUE 'TABNAME2_FC2',
                 TAB3 LIKE SY-UCOMM VALUE 'TABNAME2_FC3',
               END OF C_TABNAME2.
    *&SPWIZARD: DATA FOR TABSTRIP 'TABNAME2'
    CONTROLS:  TABNAME2 TYPE TABSTRIP.
    DATA:      BEGIN OF G_TABNAME2,
                 SUBSCREEN   LIKE SY-DYNNR,
                 PROG        LIKE SY-REPID VALUE 'ZTREE_STRUCTURE2',
                 PRESSED_TAB LIKE SY-UCOMM VALUE C_TABNAME2-TAB1,
               END OF G_TABNAME2.
    CONSTANTS: BEGIN OF C_TRANSFORM,
                 TAB1 LIKE SY-UCOMM VALUE 'TRANSFORM_FC1',
                 TAB2 LIKE SY-UCOMM VALUE 'TRANSFORM_FC2',
               END OF C_TRANSFORM.
    *&SPWIZARD: DATA FOR TABSTRIP 'TRANSFORM'
    CONTROLS:  TRANSFORM TYPE TABSTRIP.
    DATA:      BEGIN OF G_TRANSFORM,
                 SUBSCREEN   LIKE SY-DYNNR,
                 PROG LIKE SY-REPID VALUE 'ZSCSDM_MODIFY_TRANSFORM_HERA',
                 PRESSED_TAB LIKE SY-UCOMM VALUE C_TRANSFORM-TAB1,
               END OF G_TRANSFORM.
    DATA:      OK_CODE LIKE SY-UCOMM.
    START-OF-SELECTION.
    CALL SCREEN 9000.
    MODULE STATUS_9000 OUTPUT.
       SET PF-STATUS 'SCREEN_9000'.
       SET TITLEBAR 'RWB_TRANSFORM'.
    ENDMODULE.                    "STATUS_8000 OUTPUT
    MODULE TABNAME2_ACTIVE_TAB_SET OUTPUT.
      TABNAME2-ACTIVETAB = G_TABNAME2-PRESSED_TAB.
      CASE G_TABNAME2-PRESSED_TAB.
        WHEN C_TABNAME2-TAB1.
          G_TABNAME2-SUBSCREEN = '9001'.
        WHEN C_TABNAME2-TAB2.
          G_TABNAME2-SUBSCREEN = '9002'.
        WHEN C_TABNAME2-TAB3.
          G_TABNAME2-SUBSCREEN = '9003'.
        WHEN OTHERS.
    *&SPWIZARD:      DO NOTHING
      ENDCASE.
    ENDMODULE.                    "TABNAME2_ACTIVE_TAB_SET OUTPUT
    *&SPWIZARD: INPUT MODULE FOR TS 'TABNAME2'. DO NOT CHANGE THIS LINE!
    *&SPWIZARD: GETS ACTIVE TAB
    MODULE TABNAME2_ACTIVE_TAB_GET INPUT.
      OK_CODE = SY-UCOMM.
      CASE OK_CODE.
        WHEN C_TABNAME2-TAB1.
          G_TABNAME2-PRESSED_TAB = C_TABNAME2-TAB1.
        WHEN C_TABNAME2-TAB2.
          G_TABNAME2-PRESSED_TAB = C_TABNAME2-TAB2.
        WHEN C_TABNAME2-TAB3.
          G_TABNAME2-PRESSED_TAB = C_TABNAME2-TAB3.
        WHEN OTHERS.
    *&SPWIZARD:      DO NOTHING
      ENDCASE.
    ENDMODULE.                    "TABNAME2_ACTIVE_TAB_GET INPUT
    MODULE USER_COMMAND_9000 INPUT.
    IF SY-UCOMM = 'BACK'.
      LEAVE PROGRAM.
    ELSEIF SY-UCOMM = 'EXIT'.
      LEAVE PROGRAM.
    ELSEIF SY-UCOMM = 'CANCEL'.
      LEAVE PROGRAM.
    ELSEIF SY-UCOMM = 'SAVE'.
    ENDIF.
    ENDMODULE. "USER_COMMAND_9000 INPUT
    FORM INSERT_TABLE.
      WA_HERA-NAME = IO_NAME.
      WA_HERA-AGE = IO_AGE.
      WA_HERA2-GENDER =  IO_GENDER.
      INSERT INTO ZHERA VALUES WA_HERA.
      INSERT INTO ZHERA2 VALUES WA_HERA2.
      MESSAGE S001(ZMSG02).
    ENDFORM.                    "UPDATE_TABLE
    Can anyone tell me what is wrong with my codes?

    Hi,
    In your module here
    IF SY-UCOMM = 'BACK'.
      LEAVE PROGRAM.
    ELSEIF SY-UCOMM = 'EXIT'.
      LEAVE PROGRAM.
    ELSEIF SY-UCOMM = 'CANCEL'.
      LEAVE PROGRAM.
    ELSEIF SY-UCOMM = 'SAVE'.
    ENDIF.
    ... replace all occurrences of SY-UCOMM with OK_CODE.
    This will resolve the problem.
    Regards,
    Aditya
    Edited by: Aditya Laud on Feb 5, 2008 12:16 AM

  • RSS feed does not appear on first click  - needs refresh

    Hi,
    I'm using MUSE and have created my first site.
    I used a widget for a news/media page, one frame is to show a RSS feed.  it doesn't work on first appearance but works fine if i click back to it a second time.
    http://www.concuros.net/media.html
    i've used free source code handling the feed, copied below:
    <!-- start sw-rss-feed code -->
    <script type="text/javascript">
    <!--
    rssfeed_url = new Array();
    rssfeed_url[0]="http://www.aviationweek.com/myaviationweek.aspx?rss=true&key=comm"; rssfeed_url[1]="http://www.ch-aviation.ch/portal/feed.php"; rssfeed_url[2]="http://www.flightglobal.com/blogs/flightblogger/rss.xml"; 
    rssfeed_frame_width="450";
    rssfeed_frame_height="350";
    rssfeed_scroll="on";
    rssfeed_scroll_step="6";
    rssfeed_scroll_bar="off";
    rssfeed_target="_blank";
    rssfeed_font_size="12";
    rssfeed_font_face="sans serif";
    rssfeed_border="on";
    rssfeed_css_url="";
    rssfeed_title="off";
    rssfeed_title_name="";
    rssfeed_title_bgcolor="#3366ff";
    rssfeed_title_color="#fff";
    rssfeed_title_bgimage="http://";
    rssfeed_footer="off";
    rssfeed_footer_name="rss feed";
    rssfeed_footer_bgcolor="#fff";
    rssfeed_footer_color="#333";
    rssfeed_footer_bgimage="http://";
    rssfeed_item_title_length="100";
    rssfeed_item_title_color="#2c929b";
    rssfeed_item_bgcolor="#fff";
    rssfeed_item_bgimage="http://www.concuros.com/images/header-glow.png";
    rssfeed_item_border_bottom="on";
    rssfeed_item_source_icon="on";
    rssfeed_item_date="off";
    rssfeed_item_description="on";
    rssfeed_item_description_length="150";
    rssfeed_item_description_color="#6a6a6a";
    rssfeed_item_description_link_color="#333";
    rssfeed_item_description_tag="off";
    rssfeed_no_items="0";
    rssfeed_cache = "48f72695e096da99e06b400093b1fd6d";
    //--> 
    </script>
    <script type="text/javascript" src="http://feed.surfing-waves.com/js/rss-feed.js"></script>
    <!-- The link below helps keep this service FREE, and helps other people find the SW widget. Please be cool and keep it! Thanks. -->
    <div style="text-align:right; width:400px;"><a href="http://www.surfing-waves.com/feed.htm" target="_blank" style="color:#ccc;font-size:10px"> </a> <a href="http://www.surfing-waves.com" target="_blank" style="color:#ccc;font-size:10px"> </a></div>
    <!-- end sw-rss-feed code -->
    any advice please?

    When people click on the subscribe, it says that it cant be found. When I published the site, I put in the correct URL, what am I doing wrong????
    You failed to upload the whole site. The folder called CrossTo_Kingdom2, which should enclose all the other files, is missing. Also you need to upload the index.html file which iWeb created alongside that folder.

  • I am unable to redeem my purchase of a Photoshop Elements 12 software license.  After entering the redemption code and clicking on the Redeem button, nothing happens.  No error message.  Screen does not change.

    I am unable to redeem my purchase of a Photoshop Elements 12 software license.  After entering the redemption code and clicking on the Redeem button, nothing happens.  No error message.  Screen does not change.

    try using a different browser, or contact support Contact Customer Care

  • From time to time when I click a searched link the colr of visited links does not change. It works fine after I delete history and cookies. Can I fix that. I am using windows XP. Thankste

    From time to time when I click a searched link the color of visited links does not change. It works fine after I delete history and cookies. Can I fix that. I am using windows XP. Thanks

    Here's the error message I get.
    Note the TC is connected to my Airport Extreme via ethernet and my iMac is also connected to the AX via ethernet so it's not a wifi issue.
    I can see the TC in the finder so it's not 'gone' from the network either.
    Also note that just then the TM system pref pane was claiming a backup error, citing my 'network password' and still refusing to backup.  I waited 5 minutes and did some tidying of my office while I pondered this and then tried again and voila it worked ok.

  • Why the mouse pointer in Logic Pro does not change shape during work in OSX 10.9.1?

    I've a MacBook Pro Retina 15-inch Late 2013 and I'm using two external displays. One connected to to the HDMI port (display 1) the other to thunderbolt (display 2). The MacBook display is closed. I’m working with Logic Pro 9.1.8 (32bit) with OSX 10.9.1
    Why the mouse pointer in Logic Pro does not change shape during work???
    It was already difficult with OSX 10.9 but now after upgrading to 10.9.1 it's game over!
    At least before I could select which display use Logic Pro to have all the shape functions of the pointer. Not in both displays, so to be forced to edit in ONLY ONE of the two displays using this workaround: (right click on Logic icon in Dock: Option --> Desktop on Display 1). Now or I select “Option --> All Desktops” or does not work. However, by selecting all displays you say goodbye to Mission Control. This can’t be a solution!!!
    The amazing thing is that Nuendo has no problem while Logic Pro, Apple's native software, it can't!
    With Nuendo it’s indifferent in which display you are working, the shape of the mouse pointer changes shape depending on the requirement in both displays.
    This thing drives me crazy!
    Solutions?
    Here some ideas in other foums:
    http://www.logicprohelp.com/forum/viewtopic.php?f=1&t=86264
    But this aren't really solutions but workarounds. Use Logic in all desktops makes Mission Control useless!!

    I installed all over again by formatting as suggested by the genes of pro application support. Each plug-in, each virtual instrument, a job that lasted 3 days. And as suggested for each new plug-in I proceeded to check the proper functioning of Logic Pro and did each time a back up with Time Machine.
    The Result:
    Logic works as it should ONLY on the primary monitor and ONLY on the first desktop.
    BUT
    Reason and Nuendo dont' have this issue !!
    I believe that Apple developers are thinking only to mobile phones and things like messages or face time.
    And that's not all!
    After a few weeks, perhaps by installing a version of Adobe Acrobat, I say maybe because I'm not sure, logic has stopped working properly. Again problems with the mouse pointer.
    Luckily I had a back up! But now I'm terrified to install new programs. Thanks Apple!

  • Webhelp TOC does not expand when I click on links

    I have developed a Webhelp system, and it has this weird
    problem which I don't know how to fix. Imagine the following
    scenario:
    I have a topic called "page1.htm", and in that topic is a link
    to "page2.htm". [/li]
    I also have a topic called "page3.htm" and in that topic is a
    link to "page4.htm"[/li]
    If I click the link to "page2.htm", it will load "page2.htm"
    properly, and expands the TOC and highlights the "page2.htm" item
    in the TOC.[/li]
    If I click the link to "page4.htm", it will load "page4.htm"
    properly, but the TOC does not change at all and "page4.htm" is not
    highlighted in the TOC.[/li]
    It doesn't seem to matter if the TOC entry for "page2.htm" is a
    book or a topic[/li]
    It doesn't seem to matter if there are two TOC entries for
    "page2.htm" - Robohelp will just expand to the first one.[/li]
    Can anyone please help me? Thanks!
    Gary

    Hi Anne and Leon! Thanks for taking the time to help me sort
    this out.
    quote:
    Originally posted by:
    AuthorAnne
    What browser are you using, and what version of it? Internet
    Explorer Version 6
    Does the same problem occur in other browsers? Unfortunately
    I can't try it in other browsers because the computing environment
    here is very rigid :-(
    Do you have any books linked to specific topics? Nearly
    every book in the TOC is linked to a topic. Some of them are
    synchronised, and others aren't, but I can't figure out what the
    difference between the topics is.
    In the second page of your WebHelp properties, under Single
    Source Layouts, do you have Synchronize TOC set to
    "Automatically"? Yes.
    quote:
    Originally posted by:
    MergeThis
    Gary, I suspect that you might have multiple calls in the TOC
    to the same topic, as alluded to when you say:
    "It doesn't seem to matter if there are two TOC entries for
    "page2.htm" - Robohelp will just expand to the first one.[/li]").
    That's the default behavior for Webhelp.
    Thanks for your advice on handling multiple
    calls in the TOC to the same topic - I have some deliberately
    duplicated topic links so this will be useful. However, I don't
    think this is the cause of problem. I built the TOC myself and
    there are only 5 duplicated TOC entries, but the problem I am
    having is occurring with non-duplicated TOC entries.
    Thanks again for your time and help!
    Gary
    PS, I live in Australia, which explains the time difference
    :-)

  • Change ODBC DatabaseName but it does not change in CRXI R2

    I am sitting with a problem where I have my Test Database (BusinessTest) and my Live Database(Business) on the same server. Now the reports was created before i started at the company and they are all showing the Business.TableName if i go to "View SQL Query".
    Now i have to do enhancements on the Report and i would like to first use the BusinessTest Database. My problem is that i can not get the "View SQL Query" to show the BusinessTest.TableName no matter what i do.
    The setup is as follow
    I am using Crystal Reports XI R2 (SP 4).
    I connect to the MySQL database using the MySQL ODBC 5.1 Driver
    It connects to the Business database (Live)
    When i change the ODBC driver it does not change in the "View SQL Query" it still refers to the Business Database.
    I also verified the database and still it only looks back to the live one.
    I created a new ODBC and made it look to the BusinessTest database and then updated the Datasource Location under the "Set Datasource Location" then verified the database again and still it looks at the Business(Live) database.
    What exactly am i missing? Why can i not get to change the datasource location?
    Hope Someone can help.
    Thanks.

    Hello,
    Changing the DSN properties does not update the report DB connection info and not recommended to do so. You also need to Set Location using the Database drop down menu option.
    Try this: Open up the ODBC Administrator and in the System DSN's change your original DSN back to the test server. Now create a new DSN and point it to the new Server. Open up Crystal Reports Designer, load the report, click on Database menu, Set Location and browse to your new DSN. Clcik on the Update button when you have the old DSN in the report high lighted and then click on the new DSN you just connected to and click the Update button.
    Now from the Database drop down menu click on Verify database. You should now be able to run the report and then show SQL to see the new data.
    Thank you
    Don

  • When I try to upload a file it goes through the correct proceedure, but does not change the remote file i.e.Index.htm

    Hi
    I have an uploading problem to the server. The problem is when I try to upload a file it goes through the correct proceedure,
    but does not change the remote file i.e.Index.htm, or three stages1.htm.
    My Localroot folder is C:\Gods Plan Web\
    The site map layout is C:\Gods Plan Web\Index.htm
    The folder for the remote site is /public_html/
    Should the local root folder mirror the remote site, i.e./public_html/
    if this is so, what should I put into the
    (a) Local Root Folder box?
    (b) site map layout box?
    The FTP is performing well other than changing the intended file.

    You should be uploading only the contents of your local root to the public_html folder (remote root).
    The index.html you use as your site's home page needs to be in your site root. If you look at your Files window in DW, you should have something like the following...
    Site - Whatever you named your site
         index.html
         images
         pages
              page1.html
              page2.html
    If you have any folder between Site - and the index.html page, like...
    Site - Whatever you named your site
         mywebsite
              index.html
    It will upload to the public_html while still in that folder, so to find your page online, you would need to type something like...
    www.mydomain.com/mywebsite
    public_html should NOT appear within your local files and if it existed there, would cause a redundancy if uploaded. You would need to type www.yourdomain.com/public_html to see the uploaded pages.
    If you could post a screen shot of your expanded Files window while connected to the server (just connect and click the Expand button in Files, don't drill down into any of the directories), we may be able to see the issue.

  • Tables are deleted but database size does not change in sql server 2008r2

    Hi All,
    20GB Tables are deleted in my database but database size does not change and disk size showing same size.

    Hi ,
    I have ran the Disk usage by Top Tables report and Identified couple of tables with unwanted data for last 5 years. I have deleted the data for the first 3 years and then ran the Disk usage by Top Tables report again. When I compared the report before
    and after the data deletion, I have noticed certain facts which is not matching with what I know or learned from experts like you. The following are the points where I am looking for clarification:
    1.Reserved (KB) has been reduced. I was expecting the data Reserved (KB) will remain the same after the data deletion. 
    2. The Data(KB) and Indexes(KB) fields have been reduced as expected. The Unused(KB) field have been increased as expected.
    I was expecting the total of Data(KB) and Indexes(KB) field space gained will be equal to the Unused(KB) field gained after deleting the data. But that is not the case. When I deducted(subtracted) the difference in  the Reserved(KB)(Difference before
    and after data deletion) field from the Total of space gained from the data deletion is equal to the Unused(KB) gained field value.
    I am not a SQL expert and not questioning but trying to understand whether we really gain space by deleting data from the tables. Also keen to get the concepts right, but my testing by deleting some records confused me.
    Looking ahead to all your expert advice.
    Thanks,
    Vennayat

  • How do I remove an entire email account from mail if it does not allow me to click "remove mailbox"?

    How do I remove an entire email account from mail if it does not allow me to click "remove mailbox"?

    Welcome to the Apple Community.
    Unfortunately you can't delete accounts, you also can't change or remove iCloud addresses.

  • In Acrobat 11 portfolio does not open to first document in file.

    When opening portfolio it opens with focus on second to last document in portfolio not the first.  I've reorder and saved, reordered and saved to new file with no change any other change is saved. How does acrobat decide which file to display when it opens the portfolio?

    This problem has plagued our use of PDF Portfolios for years.
    No matter what you do with an existing Portfolio, the Portfolio insists on opening to the file with the name which sorts first alphabetically. Setting the Order fields correctly does not change this behavior.
    There are only two ways I can ever get a PDF Portfolio to open to the first document in the collection:
    Name the individual files so that they sort as desired by their alphanumeric names. Obviously, this is a crude workaround.
    Build the Portfolio from scratch using the Combine Multiple PDFs... dialog. That dialog lets you arrange the various PDFs using the Move Up and Move Down buttons. The problem with this is, that dialog is not available when working in an existing Portfolio. If you add and/or delete files to the existing Portfolio and save it, it will always open to the file with the name which sorts first alphabetically, despite the files being numbered and ordered correctly by the Order field (or any other field you create an tell it to sort by). The files do sort according to the specified field, but the Portfolio refuses to open to the first file in the sort order. It insists on opening to the file which would be first if they were sorted alphabetically by filename.
    Here's the recurring problem: I have to re-publish new versions of multiple Portfolios every year. It takes much tedium and time to setup a Portfolio from scratch. For example, including the needed image and text boxes in the Header has to be re-done; there (stupidly) is no provision for copying those objects from an existing Portfolio into a new one. So one expects to be able to simply open an existing Portfolio, delete its documents, import new documents, and save it. But whenever I do this, the Portfolio reverts to opening to whichever document would be first if sorted alphabetically by filename. This happens no matter how I add the new documents. If I add them one at a time, the Order field gets set correctly. But that has no bearing on the unwanted behavior of displaying first some document other than the first one in the collection.
    So every year, I end up searching this forum looking for a fix, finding none, and resorting to awkward meaningless prefixes (01_, 02_, etc) on the file names. Very inelegant to the recipients.
    JET

  • Craigslist headers will not change color after clicking on it

    When I browse craigslist and click on a header to view the ad, when i go back, i have no way of knowing that i already clicked on a link because the color does not change. I have searched on the internet for a remedy but am unable to find one!

    This can happen because Craigslist opens the page in a frame, so you aren't visiting the page directly.
    You could try to check that if you right-click the frame and use "This Frame > Open Frame in New Tab" to see if that affects the visit state

Maybe you are looking for