Weird happenings with list view in OS 10.3.9--one folder only.

Hello,
OK, this one strikes me as odd. In one of my folders on the Desktop, when I click list view, it doesn't behave normally. Instead of the regular list view, with the clickable headings on top (Name, Kind, Size, Date created, etc.), only the subfolders show up and on the top is just some nonclickable random stuff, sometimes left over if I've switched over from Column view. I think the best way to "explain" would be to show some screenshots, so I hope I can link these correctly:
In column view, which is normal:
http://smg.photobucket.com/albums/v284/movingsale/screenshots/?action=view&curre nt=nyufolder_columnview.jpg >
In list view after column view:
http://smg.photobucket.com/albums/v284/movingsale/screenshots/?action=view&curre nt=nyufolder_listview.jpg
In list view from a closed folder:
http://smg.photobucket.com/albums/v284/movingsale/screenshots/?action=view&curre nt=nyufolder_listview2.jpg
I'm sorry I put these as links--I don't know how to put the actual pics in my post. Some more information:
This only started happening within the last 2 weeks or so, but it happens every time I open this folder off the desktop. As far as I've seen, it doesn't happen on any other folders. I have an external drive that I use for a bootable clone, and it happens on the cloned version of the folder, too. It even happens on an old cloned version of the folder, which I think is from before this started happening.
I guess my question is, what would cause this, and is it a sign of impending doom, or should I not worry about it?
Thanks in advance!
Anna

Hi Anna,
I suspect the viewing information for this folder is bad. It is unlikely that there is anything more wrong. I think you can fix it by:
1. make a new folder with a slightly different name than the bad one.
2. In some view other than list, move all the contents of the bad folder to the new one.
3. Trash the bad folder.
4. Rename the new folder to the name of the one you treashed.
Does this fix the problem?
Frank

Similar Messages

  • Using xsl stylesheet with List View Web Part to display custom text

    Hi 
    i have an xsl stylesheet with sharepoint listview webpart. The list view shows some items based on a filter. I want to display custom text such as "No Items" when there are zero items in the list view using the xsl stylesheet. How do i achieve
    this. I have spent hours searching but couldnt find the exact answer. Please help me out. I am a light user not a hard core developer so I dont use Visual Studio. Thanks in advance

    Hi 
    I have customised the list view webpart using a custom xsl file by including it in the xsl link of the list view webpart. So i think i need to include the condition in the xsl file itself else it wont work. Since the list view webpart isnt using the default
    xsl. Please let me kknow if you have any idea about including a condition in xsl to check if there are not items in view. 
    The code of the xsl is included below.
    <!--
    This section is the set up and can be used at the top of any external XSLT stylesheet file
    -->
    <xsl:stylesheet
    xmlns:x="http://www.w3.org/2001/XMLSchema"
    xmlns:d="http://schemas.microsoft.com/sharepoint/dsp"
    version="1.0"
    exclude-result-prefixes="xsl msxsl ddwrt"
    xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime"
    xmlns:asp="http://schemas.microsoft.com/ASPNET/20"
    xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt"
    xmlns:SharePoint="Microsoft.SharePoint.WebControls"
    xmlns:ddwrt2="urn:frontpage:internal">
    <xsl:output method="html" indent="no"/>
    <xsl:template match="/" xmlns:x="http://www.w3.org/2001/XMLSchema">
    <xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row" />
    <table>
    <xsl:for-each select="$Rows">
    <xsl:call-template name="dvt_1.rowview"></xsl:call-template> 
    </xsl:for-each>
    </table>
    </xsl:template>
    <xsl:template name="dvt_1.rowview">
        <tr>
      <td><img height="78" width="60"><xsl:attribute name="src"><xsl:value-of select="@Photo"/></xsl:attribute></img></td>
        <td>
        <table style="margin-left:10px;">
        <tr><td><xsl:value-of select="@FullName"/></td></tr>
        <tr><td><xsl:value-of select="@DOBinWords"/></td></tr>
        </table>
        </td>
      </tr>
    </xsl:template>
    </xsl:stylesheet>

  • Powershell script with list view

    Hi,
    I have a scheduled job in SharePoint 2013 environment, where I export SharePoint list Items as csv. I would like to use a SharePoint list View so that I get all the items from the view into csv. I tried below
    script and it only returns items that are in the first paginated view. The view has an item limit of 50 items. But I wan't to return all the items in the view. 
    Please help me modify the script accordingly. Thank you.
    #Retrieving the Web Site with List
    $MyWeb = Get-SPWeb "http://mysite/sites/testsite"
    #Get the List name
    $MyList = $MyWeb.Lists["Programs"]
    #Get The View
    #Change the name of the view
    $MyView = $MyList.Views["My View"]
    #Get the Items from the view
    $MyItems = $MyList.GetItems($MyView)
    #Get Specific field items and export it to a csv file
    $MyItems | %{ select-object -input $_ -prop @{Name='ID';expression={$_.ID;}}, 
    @{Name='Content Type';expression={$_["P. Type"];}}, 
    @{Name='Program Name';expression={$_["Program Name"];}},
    @{Name='Classifications';expression={($_["Classifications"]).substring(($_
    ["Classifications"]).IndexOf("#")+1);}},
    @{Name='Classifications ID';expression={($_["Classifications"]).split(";")[0];}},
    @{Name='VP';expression={($_["VP Owner"]).substring(($_["VP Owner"]).IndexOf("#")+1);}},
    @{Name='VP ID';expression={($_["VP Owner"]).split(";")[0];}},
    @{Name='Project Manager';expression={$_["Project Manager"];}},
    @{Name='GL Project Code';expression={$_["GL Project Code"];}}, 
    @{Name='Segment BU';expression={($_["Segment BU"]).substring(($_["Segment BU"]).IndexOf
    ("#")+1);}}, 
    @{Name='Segment BU ID';expression={($_["Segment BU"]).split(";")[0];}},
    @{Name='C-Product Line';expression={$_["C-Product Line"];}}, 
    @{Name='Node and Foundry';expression={($_["Node and Foundry"]).substring(($_["Node and 
    Foundry"]).IndexOf("#")+1);}},
    @{Name='Node and Foundry ID';expression={($_["Node and Foundry"]).split(";")[0];}},
    @{Name='Phase';expression={$_["Phase"];}}, 
    @{Name='Program Activity';expression={$_["Program Activity"];}}, 
    @{Name='Archive';expression={$_["Archive"];}}; } | Export-Csv -Path "c:\Dashboard.csv"
    techie

    Hi CoolTechie,
    Rather than writing a batch job to populate excel timely fashion, I will suggest to make a excel data source auto-refresh after every minute, which is more real time. That excel can be shared as well.
    You can use the Excel as external data source, you
    can set refresh the excel per 1 minute.
    The steps of configuration, you can refer to the following
    link.
    http://sharepointlink.blogspot.com/2010/08/sharepoint-2010-excel-services-and.html
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Problem with List View in Calendar

    Hi,
    On my iPhone 4 running 4.3.3, I can't see any entries older than one year under 'list view'.  Ironically, the entries appear under Day and Month view so I know they are there, but nothing older than one year under List view.  I have tried resetting to no avail.  I sync via iTunes (not mobile me) but there is nothing that points to why only one view on my iPhone would have this restriction.  Please help.
    Thanks

    Here's a workaround that I discovered: duplicate a previous individual event that printed correctly, i.e., without the empty "Location:" line shown; then edit that information for the new event as desired -- an ugly solution, but it works!

  • Problems with list view

    I have several cds from an old computer that I put on my new computer and loaded them into itunes. They look fine in grid view and I can get the album art and everything but when I go to list view it doesn't put them by the album instead it might list 20 entries (or howevermany tracks there are) and separate them by tracks so basically there will be 20 album pictures of each album and they are listed by all of track 1s and then track 2s. If I delete out the track number they all list together on the list view but then of course I lost my track number and they just list alphabetically.
    Any ideas?

    Check the "artist" field for these tracks - it is likely they are different (perhaps there are guest artists, for instance Jurassic 5 featuring Nelly Furtado). If this is the case, highlight all of the tracks from an album, right-click, and choose Get Info. On the Info tab type the artist's name and click OK.
    Another possibility is these are compilation albums that contain tracks from multiple artists. If this is the case, highlight the tracks and go to Get Info (as above). Go to the Options tab and set "Part of a compilation" to Yes.

  • Weird Happenings with a VO.  Looking at seede VO.xml generates empty java

    Hi,
    I imported a seeded VO.xml into my project. Right clicked on it to see the attributes and copy the query. The intention was to extend the view.
    After doing so, I closed the view object editor. I must have clicked 'Apply' by mistake.
    Now I see VOImpl.java and VORowImpl.java file. These files when seen through jdev are empty/blank.
    Now I can't rebuild my project because rebuild looks at these empty files and errors.
    I can't delete/remove from project these .java from jdev.
    I can't delete the VO component because it says that there are other dependencies and I can delete those dependencies because of some weird errors.
    I can't even find these empty .java files in myproject...or myclass.
    I changed the .jpr to remove the VO component. But it still shows up with the offending java files in the jdev project and I still can't compile.
    Where are they, why did they get created? How can I delete them from my project?
    Thanks a lot for the help.
    Sandeep

    Hi,
    1. The .jpx seems to contain only the package info and the substituions. Do you mean the .jpr? I tried changing this unsuccessfully. Even though I remove the the VO component references in the .jpr it still loads it into the project inside the jdeveloper. It seems to be looking somewhere else and then creating default files.
    2. The funny thing is that I do not see the .java files in the myprojects! They just show up as empty templates in the jdev under the .xml.
    3. By 'load' if you mean importing into the DB using jpximport I am not there yet as I am hesitating to extend the VO now as it could create the extended VO with empty files.
    Thanks
    Sandeep

  • How to List view web part to display document library for only users with access permission

    Hi
    I am trying to accomplish this requirement but I don't know if that is possible or how to get there.  Any suggestion or advice are helpful.
    On a site collection, I have several document libraries,  with each library have unique permission to a few user or SharePoint group.
    I want to create a web part page and make that the site home page.  On this web part page, I want to create a Content Search Web Part to list the content of the document library that the logged on users have permission to see. 
    Is this possible with CSWP or is there anything easier or if it is not possible at all,  please advise.
    Thanks
    Swanl

    Hi ,
    Based on your description, my understanding is that you want to create a Content Search Web Part to list the documents that the logged on users have access permission.
    It is feasible with CSWP, you can follow the below step:
    Edit Content Search Web Part->Change query-> Select a query: Items matching a content type (System); Restrict by app: Current site collection; Restrict by content type: Document.
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet
    Subscriber Support, contact [email protected]

  • Weird Happenings with Trash Access, Desktop Item Movement, About this Mac

    My computer appeared to working fine as off six or so hours ago, but when I went to move a word doc on my desktop to another place on my desktop, I notice something strange and unnerving. I could pick up the doc, highlight it, even open it, but I could not move it from one place to another on my desktop. The icon appears to move with my mouse after I click on it, as it always does, but when I go to drop it at the desired location, the icon does not "stick." There is just a quick blur as the translucent dragged copy zooms back to original. I can move icons from the desktop to a finder window or a folder on the desktop that isn't opened in a finder window, but I can drop a doc or a folder onto the desktop from the finder window. I have no idea what is going on with this.
    As I was traversing my dock shortly after this initial discovery, I made another. When I click on my trash, the animated dock ceases movement and ability to function. the mouse pauses, does a spinning beachball, and in 2 minutes things appear to be normal. However, I just want to know what is going on, and I have no clue. When this occurs, I can still select items on the desktop and open them. However, I can not access the dock at all and I can't even use the command tab feature to switch apps.
    Finally, as I went to sign up to post here, I noticed the final issue. I tried to click the "About this Mac" feature under the apple icon in the upper left corner and the info window would not open, hence the lack of info regarding my operating system.
    Anyone? Help me please.

    Hi JEDz, and a warm welcome to the forums!
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move these files to the Desktop.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist
    /Users/YourUserName/Library/Preferences/com.apple.dock.plist
    /Users/YourUserName/Library/Preferences/com.apple.desktop.plist
    Test if the Finder/Desktop/Dock works right while in Safe Mode, reboot when complete, test again.

  • Very very weird happenings with ipod mini....

    Current status:
    - ipod runs fine in "stand-alone" (i.e. not connected to anything). Plays music fine, etc.
    - Computer will not recognize ipod at all.
    - Ipod would not charge when connected via provided cable to pc (any pc - have tried on three different ones that I use), through the mini docking station when connected via provided cable or even when pugged into usb adapter using provided cable
    - ipod WOULD charge fine when plugged into an ihome radio/alarm clock
    - Once ipod was 100% charged via the previous item - tried hooking it back up to desktop and received an regarding there was a power surge on the usb port that the ipod was connected to and it was disabling that port
    So - thats where I stand today. I would LOVE to do a restore to it but I can't get ANY computer to recognize it.

    - Computer will not recognize ipod at all.
    Try starting it in disk mode. reset it by holding menu and select then as soon as the screen goes blank hold down the select and play keys. Now you might be able to hook it up to a computer.
    - So - thats where I stand today. I would LOVE to do a restore to it but I can't get ANY computer to recognize it.
    try downloading the latest ipod updater and using it to restore the ipod after you start the ipod in disk mode.
    good luck
    Alex

  • Unable to view pdf's or download on one site only but IE6 can

    I am unable to view or download pdf file on the following site. All I get is a system down message.
    If I open IE6 and try the site then I am able view and download the pdf without problems.

    If the problem is with that single site only there is not much that can be done, as it is a secure site needing a login. https://sunbeltparts.com/sunbelt/secured/index.html
    I can get to<s> https://sunbeltparts.com/sunbelt/secured/index.html</s> https://www.sunbeltparts.com/sunbelt/index.html and see a thumbnail for a pdf, but I then get a system down message, so presumably they are having a site problem.

  • Problem synching photos from PC to iPad air. Using iTunes it gives me option when I connect iphone to synch from ' my photos' however with the iPad it just gives me option one folder at a time. And once it has synch it if I try to synch another it just

    Hi I'm not very computer literate so pls be gentle! I bought an iPad air two days ago and synch my photos using iTunes just fine.
    Today for some reason I noticed all these white thumbnails on my laptop in the photos section. Stupidly I deleted all 600 of them and all my photis on the iPad immediately vanished. Later I restored the photos from the recycling bin to my photos
    However now I try to re synch them there is no option to synch from ' my pictures' just each little folder ( whereas before I had a drop down box and could select which folders I wanted) however when I synch iphone it does offer the option
    Anyway even if I synch each folder it will kep replacing the last one so I can only ever have one folder of photos on the iPad if u see?
    How can I transfer my photos please?
    And how can I get the option back of the drop down box and tick as many folders as I want?
    Many thanks

    or... put your photos in "My Pictures" in My Documents, and viola, itunes syncs it to the iphone. only one sentence needed =/
    maybe im missing your point here, the long paragraph is mindboggling

  • List View Report with pipelined function in Mobile application and ORA-01007: variable not in select list

    Hi!
    I have a problem with List View Report in mobile application (theme 50 in apex) after updating to apex 4.2.2. I created Report -> List View. I used select from pipelined function in Region Source. Then when page is running and submited three times (or refreshed three times) I get an error:
    Error during rendering of region "LIST VIEW".
    ORA-01007: variable not in select list
    Technical Info (only visible for developers)
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -1007
    ora_sqlerrm: ORA-01007: variable not in select list
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 21230833903737364557
    component.name: LIST VIEW
    error_backtrace:
         ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613
         ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    I get this error only when I use select from pipelined function in Region Source (for example: "select value1, value2 from table(some_pipelined_function(param1, param2)) ").
    You can check it on http://apex.oracle.com/pls/apex/f?p=50591 (login - demo, password - demo).
    In this application:
    - I created package TAB_TYPES_PKG:
    create or replace PACKAGE TAB_TYPES_PKG IS
    TYPE cur_rest_r IS RECORD (
        STR_NAME          VARCHAR2(128),
        INFO              VARCHAR2(128)
    TYPE cur_rest_t IS TABLE OF cur_rest_r;
    END TAB_TYPES_PKG;
    - I created pipelined function TEST_FUNC:
    create or replace
    FUNCTION TEST_FUNC
    RETURN TAB_TYPES_PKG.cur_rest_t  PIPELINED IS
    r_cur_rest TAB_TYPES_PKG.cur_rest_r;
    BEGIN
    r_cur_rest.STR_NAME := 'ROW 1';
    r_cur_rest.INFO := '10';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 2';
    r_cur_rest.INFO := '20';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 3';
    r_cur_rest.INFO := '30';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 4';
    r_cur_rest.INFO := '40';
    PIPE ROW (r_cur_rest);
    r_cur_rest.STR_NAME := 'ROW 5';
    r_cur_rest.INFO := '50';
    PIPE ROW (r_cur_rest);
    RETURN;
    END TEST_FUNC;
    - I created List View Report on Page 1:
    Region Source:
    SELECT str_name,
           info
    FROM TABLE (TEST_FUNC)
    We can see error ORA-01007 after refresing (or submiting) Page 1 three times or more.
    How to fix it?

    Hi all
    I'm experiencing the same issue.  Predictably on every third refresh I receive:
    Error
    Error during rendering of region "Results".
    ORA-01007: variable not in select list
    Technical Info (only visible for developers)
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -1007
    ora_sqlerrm: ORA-01007: variable not in select list
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 6910805644140264
    component.name: Results
    error_backtrace: ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613 ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    OK
    I am running Application Express 4.2.2.00.11 on GlassFish 4 using Apex Listener 2.0.3.221.10.13.
    Please note: this works perfectly using a classic report in my desktop application; however, no joy on the mobile side with a list view.  I will use a classic report in the interim.
    My region source is as follows:
    SELECT description AS "DESCRIPTION", reference AS "REFERENCE" FROM TABLE(AUTOCOMPLETE_LIST_VIEW_FNC('RESULTS'))
    The procedure:
      FUNCTION AUTOCOMPLETE_LIST_VIEW_FNC(
          p_collection_name IN VARCHAR2)
        RETURN list_row_table_type
      AS
        v_tab list_row_table_type := list_row_table_type();
      BEGIN
        DECLARE
          jsonarray json_list;
          jsonobj json;
          json_clob CLOB;
        BEGIN
          SELECT clob001
          INTO json_clob
          FROM apex_collections
          WHERE collection_name = p_collection_name;
          jsonobj              := json(json_clob);
          jsonarray            := json_ext.get_json_list(jsonobj, 'predictions');
          FOR i IN 1..jsonArray.count
          LOOP
            jsonobj := json(jsonArray.get(i));
            v_tab.extend;
            v_tab(v_tab.LAST) := list_row_type(json_ext.get_string(jsonobj, 'description'), json_ext.get_string(jsonobj, 'reference'));
          END LOOP;
          RETURN(v_tab);
        END;  
      END AUTOCOMPLETE_LIST_VIEW_FNC;
    Thanks!
    Tim

  • Event list view in iCal3?

    i went to the apple store to see iCal in 10.5. i still have 10.4 on my various computers between home and work. i was asking about how to view the list of events in a list window, like in iCal 2 in 10.4. in iCal2, i click on the small icon that looks like a bulleted list in the lower right side of the ical frame. it displays the list of events in cronological order. some of the other open source calendars (chandler, sunbird) have this display option also, which i find quite useful.
    i am on the verge of buying 10.5, in part for some better calendar features, particularly the mail & iCal linking or maybe they call it data detectors in mail... however, i wanted to see more of the iCal features. i couldn't figure out how to get the list mode in iCal3 that i can get in iCal2. i asked a number of employees at the apple store. and no one could figure it out. the best they could do was get a search results window which looks similar to the list view in iCal 2, but no one could figure out how to just show all the events in that window as just a list, like iCal2.
    does anyone know how to display a list of the events in iCal3 or if iCal3 can do a list mode like iCal2?
    thanks-

    I was just tring to figure this out myself. After about 45 mins of trying to make it work, and trying various searches, I gave up and came to the discussion forums. Lo-and-behold, I'm not the only one with this question. I suggest that we all provide some feedback to Apple on this :
    http://www.apple.com/feedback/ical.html
    This is a feature that should really be put back in. The least that they could do is provide a search method for all events on a specific calendar.

  • List View in Finder having issues

    When I try to save to a network drive with Photoshop CS 2 in list view, Photoshop crashes. When I try to open folders in list view in Dreamweaver on a network drive, I only get drop-downs, the folder doesn't actually open.
    I seem to have no problem saving locally with list view.
    Anyone know what could be causing this? It just started. I repaired permissions and the disk. Still nothing. I've done a search and have found no info.
    PowerBook G4   Mac OS X (10.4.6)  

    Don't know about Dreamweaver, but the Photoshop CS 2 network save crash is notorious. Do a search from the Discussions homepage on "Photoshop Network save crash" and you'll get lots of things to read. You could start with this:
    http://discussions.apple.com/thread.jspa?messageID=2222409&#2222409
    Don't know if the problem has actually been fixed yet or not. I don't work on a Network and use CS1 anyway.
    Francine
    Francine
    Schwieder

  • Display data from multiple document Libraries in List View Webpart

    Hi All,
    I want to display data from multiple document libraries into one list view webpart(custom i have created)
    I went through the following link http://blogs.msdn.com/b/ramg/archive/2009/04/22/implementing-a-simple-cross-site-collection-list-view-webpart.aspx
    but it tells to display only from one document library.
    My motive behind displaying data in the list view webpart is to achieve the functionality of Check In ,Check Out and other OOB features.
    With Regards,
    Jaskaran Singh

    Hi,
    As there is no such OOTB feature, a workaround is to create a visual web part to gather items from libraries and implement functionalities like Check in, Check out files
    in different libraries.
    The links below will provide more details:
    Create Visual Web Parts in SharePoint
    2010
    A demo about displaying list items in visual web part:
    http://www.dotnetcodesg.com/Article/UploadFile/2/217/Web%20Part%20in%20SharePoint%20To%20Show%20All%20List%20and%20List%20Items.aspx
    About the Check In and Check Out:
    How to Check In a document programmatically
    SPFile.CheckIn method
    and SPFile.CheckOut method
    Best regards
    Patrick Liang
    TechNet Community Support

Maybe you are looking for

  • MacMini Output to Vizio 42" LCD TV

    I recently purchased a Vizio 42"LCD 1080p set and have been having issues with my MacMini displaying on the TV. I cannot get the video output to the set no matter what I try. I've even tried my Corei7 Macbook Pro and still nothing. I have tried both

  • Building a Simple JSF and Web Services App in JDeveloper 10.1.3 Preview

    Hi I was trying out this example of JSF and webservices at: http://www.oracle.com/technology/products/jdev/101/howtos/jsfws/index.html Has anyone tried it before? I'm getting the following error: calling http://216.200.21.157:9090/soap WARNING: Unabl

  • Cannot open pdf attachment in my e-mail

    Cannot open pdf attachment in my e-mail                 I can open pdf files on the hard drive I am using Windows Internet Explorer 9, Microsoft Vista When I receive an e-mail with a pdf attachment a box pops up What do you want to do with get attach

  • IPad no charging/syncing

    iPad will not charge! I am using the charger that came with the iPad. When connected it states "not charging". I know it is charging at a slower rate and also when connected to pc, iTunes does no recognize it. I can not sync! iPad will charge with my

  • 11 Release 2 Activex viewer prompts for parameters even after I set them in the program

    My program worked in 11 base.  I upgraded to 11 Release 2 and now the viewer prompts the user for the parameters even though the program has set the parameters here's some of the code Dim aCRreport As CRAXDRT.Report Dim crystalParms As CRAXDRT.Parame