Af:treeTable displayRowKeys issue with MDS (jdev version 11.1.1.4)

Hi,
I've an MDS enabled application, and I'm facing the below mentioned issue with setting af:treeTable displayRowKeys.
Issue: I'm trying to set displayRowKeys pro-grammatically for an user scenario where I've to expand/collapse the tree table data to/from a desired level. But with MDS enabled my code for setting the displayRowKeys doesn't work if an ADF out-of box operation like expand, expandAll etc is performed even if once in the session, which works absolutely fine when MDS is not enabled.
This is critical issue in a customer environment and appreciate any pointers on how I could disable this customization!
I've gone through the internet but nothing seems to the point. The oracle documentation on subject I found is really old, and it talks about an attribute "dontPersist" on af:treeTable which no longer exists in my jdev version 11.1.1.4.
http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/ad_persist.htm#BABGGHCH
I've seen another forum post on the same but it is still unanswered:
Re: TreeTable disclosedKeys/selectedKeys not working with MDS
I'm going for a new post hoping more visits and replies!
Regards,
Pramod Gujjeti

Hi,
if this is a critical issue with a customer of yours, wouldn't it be best to run this against customer support than here on the forum ? This would make sure the issue is properly analyst and filed as a bug if it turns out to be a product problem. Unless the adf-config.xml file is configured to also persist the display row key in MDS, the behavior points to an issue that needs customer support to be involved
Frank

Similar Messages

  • Hi support please help me to sync my ipod and iphone 5 . Since i have installed new itunes version 12 , i am not able to sync to transfer data to my devices through itunes.  I think there is some issue with tunes new version .kindly support ASAP.  Ra

    Hi support please help me to sync my ipod and iphone 5 . Since i have installed new itunes version 12 , i am not able to sync to transfer data to my devices through itunes.
    I think there is some issue with tunes new version .kindly support ASAP.
    Rachna khanna
    [email protected]

    you might need to buy a new cable from the apple store.

  • Why does FF save files to desktop, when I have "downloads" checked in options? This is a new issue with the latest version 3.6.3 Windows XP Thanks.

    Why does FF save files to desktop, when I have "downloads" checked in options? This is a new issue with the latest version 3.6.3 . Using Windows XP Driving me nuttier! Thanks.
    (Is is that MicroNetFrame Asst thing?)
    == This happened ==
    Every time Firefox opened
    == When I installed latest version

    Thanks for your reply. I appreciate your help.
    It was just a hunch that MircoNetFrame was causing the problem. I disabled it as you suggested, and I still have the problem.
    I just changed under Tools>Options> General - had checked "ask me every time" under downloads, so instead of asking me, FF saved the download to I know not where. It no longer saves it to the desktop, leaving a duplicate in "my documents".
    In windows, I have found unless one knows the entire name of the document, one can never find anything. It isn't listed under recent ''''''__. I can't recall the nomenclature, but the
    capability is ridiculous. So, I don't know where that file I just downloaded is!
    I downloaded a PDF file, but this happens with all DL's. It was so easy to have them all stacked in one place and I could recall
    what I had and when I downloaded it easily.
    Do you have any other suggestions other that going back to the old version of FF, which I would rather not do?
    Thanks again for your time, it is very considerate to help a complete stranger, I must say. Sounds like something I might do! Cheers!

  • After Safari 7.06 update, whenever I connect to RSA Juniper Network Connect, my internet connection get disconnected. It was an issue with old Safari versions. It was fixed around 6 months back with one of Safari update. But, now it is broken again.

    After Safari 7.06 update, whenever I connect to RSA Juniper Network Connect, my internet connection get disconnected. It was an issue with old Safari versions. It was fixed around 6 months back with one of Safari update. But, now it is broken again.
    Anybody experiencing the same problem and any suggestions to fix the issue.

    Hi ..
    Try this discussion >  Can't connect to Juniper VPN

  • LR5 Issues with the CC Version?

    Hello,
    I've had a few deal-breaking issues with the released version of LR5 for Windows and read about several others.  There seems to be some consistency with the types of issues people are having with, at least, the Windows version of the software.  I think that Adobe is splitting the code stream with LR5 since it is offered as both a stand-alone product and as part of the Creative Cloud.
    Done with LR5
    Spot Removal Mouse Movement
    (several other issues are mentioned within the above threads)
    I am wondering of any Creative Cloud users of LR5 are having the same problems that have been reported in this forum with the stand-alone version.
    Thanks,
    ~Steve

    Experiencing same problems with spot removal in Lightroom CC (2015).
    I'm going to look for a new LR CC thread but posting here for now.
    Using iMac 5K
    4Ghz i7
    16GB Ram
    AMD Radeon R9 M290X 2048 MB
    Wacom Intuos 3. Performance with tablet slower than mouse but still lots of lag with the mouse. Again, slower when 1:1 but also plenty of lag when FIT.
    Anyone having similar experience with LR CC - thoughts much appreciated?

  • ADF Calendar Issue with MDS

    JDeveloper 11.1.1.4.0
    With the ADF Calendar, I able to programmatically control most of its features such as setting ActiveDay, View, etc.
    But, when I turn MDS on and I interact directly in the calendar (such as changing the views, or clicking on the day which switches the view), any programmatic control I do to it just stops refreshing the calendar.
    I inspected it and data is there, data shows up, activeDay is changed... But the calendar itself just doesn't change its view to the new activeDay.
    Eg. I'm viewing March and I changed the active day to somewhere in August, I will still end up viewing March. No refresh nor flicker.
    This issue is only happening when MDS is turned on.
    I wonder if anyone has got around this issue?
    -Marvin

    Hi Marvin
    I have a issue with Calendar component in ADF , I have similar requirement as you , I want to change the display month of Calendar on selecting the Month for Ex I select May I shud get May's Calendar and if March is selected I want to display March Calendar , I wanted to know how did you implement this ?
    I am trying to set the activeDay of RichCalendar on selection of Month and year , For example I select May 2011, Then in value Change Listener I pass the 01 May 2011 as Date to a method and trying to set the activeDay attribute of RichCalendar so that the Calendar will display the calendar for Month of May with 1st May as active Day. Now I have two questions is such a thing possible using
    below method, setActiveDayCompInstance()
    Second I am getting null pointer exception for the line , why so ??
    reqContext.getChangeManager().addComponentChange(context, calendar, aa);
    My Method for setting active Day
    public void setActiveDayCompInstance(Date activeDay)
    System.out.println(activeDay);
    RichCalendar calendar = getCalendarComponent();
    calendar.setActiveDay(activeDay);
    // Implicitly record a change for 'activeDay' attribute
    AttributeComponentChange aa =
    new AttributeComponentChange(RichCalendar.ACTIVE_DAY_KEY.getName(), activeDay);
    RequestContext reqContext = RequestContext.getCurrentInstance();
    FacesContext context = FacesContext.getCurrentInstance();
    System.out.println("reqContext"+aa +reqContext.getChangeManager());
    reqContext.getChangeManager().addComponentChange(context, calendar, aa); // Null Pointer exception
    Stack Trace for Null pointer
    at org.apache.myfaces.trinidad.change.BaseChangeManager.addComponentChange(BaseChangeManager.java:58)
    at org.apache.myfaces.trinidad.change.SessionChangeManager.addComponentChange(SessionChangeManager.java:64)
    at MyNest.Timesheet.calendar.TimesheetCalendarBean.setActiveDayCompInstance(TimesheetCalendarBean.java:1482)
    at MyNest.Timesheet.calendar.TimesheetCalendarBean.yearChangeListener(TimesheetCalendarBean.java:1196)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)

  • Anyone else having repeated wifi connectivity issues with the OSX version 10.8.5?

    I just updated the software on my iMac to OS X version 10.8.5. Now I am having repeated connectivity issues with the wifi in my house. This is the only device that is having these issues. My phone, ipad and tv are not having any problems at all.
    It happened immediately following the update. I was sending emails and browsing before the update without a problem.
    from apple:

    I had a message like that last week - only it asked what browser I would be using - I just quit safari - purges caches etc - and at that time noticed I was getting RSS feeds through PUBSUB - tracking them down to the top sites view I never use - I deleted all of the top sites (most of which I don't go into so it must have been a preset) that included MSN and Google - I don't use google so that was pointless.  (deleting a top site means you are blocking it from that page)    Have not had the message since so it must have had something to do with top sites activity.
    Just a note:  Did see somewhere probably BBC tech - that Google was going to stop supporting older web browsers.

  • Issue with Workflow template versions? Can any one suggest what to do.

    Hello All.
    Actually in quality system there is a workflow instance in error. I identified the error and fixed the issue with a new development and transported to quality. Now when i restart the error instance in quality, its not picking the latest template with additional steps i developed, instead, it is catching the older version.
    For a fresh instance, my newer version of workflow is getting triggered, why not for error workflow.
    I used swu_obuf to synchronize the buffer but no use. What could be the resolution.
    Please suggest.
    Regards
    Prasad.

    Hi Prasad
    Running instances / Waiting / Or in error continue to run in the version in which they were started.
    That is why Version increments in QA / PRD when you move a change... so that any running, waiting, error instance can pick the same version of the workflow.
    It will not pickup your changed version. Logically it would be incorrect - start in Version A and end in Version B..... say start in version which "Auto Approves" a PO of value INR <=100 .... error .... restart in a changed version which now had auto approve limit of INR 1000. The PO will not be auto approved whereas the day it was started, the limit was only 100. So it makes sense to restart a workflow in the same version in which it was started. That is how the architecture has been designed.
    To conclude, if the steps which went in error because of the data from your previous step (which you have changed now) - see if you can change the container data and restart the WI from SWIA so that the work item starts with a new set of data. Else, discuss with business owners to cancel these workflows and restart new ones.
    regards,
    Modak

  • Issue with new itunes version

    Dear All,
    i have a really big issue with the new itunes version. I loaded it today. Besides that every single view changed...
    So coming to my issues:
    1. my playlists changed to a status of Middle of 2011
    2. the songs which i loaded since that and are already on my hdd are only available in the icloud... means to listen to it or to put it to a playlist, means that i would have to load the songs again.... which in my case means 660 Songs.... downloading again on my hdd (means roundabout additional 9 GB of data) and last but not least paying for the 9 GB download...
    Is there any chance to link the songs in the playlist again on my hdd, i mean they are still there and i already loaded it down ?!?!?!?!?! In the past it was possible
    Hope somebody can help me... and please apple tune back.... itunes is not an easy to use interface anymore... and honestly after having 3 Ipods, 1 Pad and 2 iphones and von itv, i should think about changes... it is already the second time that Itunes completly destroys my playlists and costs me more money.....
    HELP!!!!!!
    Thax in advance
    Masta1701

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall press on)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Issues with 64 bit version of PS CS6 and now CC hanging, also sniffer_gpu.exe

    I cannot use the 64 bit version of Photoshop for awhile now. I had hoped that with CC coming out that would fix the problem, but it hasn't. I am able to use the 32 bit version, so after putting some time in with Adobe tech support to no avail after some hours, I'd just used that, but with the problem continuing in the latest edition I figured I should deal with it.
    I am running Windows 7 pro, an intel core i7 950 processor, and an AMD (ATI) Radeon HD 5700 video card.
    Both 64 bit versions of Photoshop hang for me before I can open any file. Looking in the resource monitor, at the wait chain, it states, 'one or more threads of Photoshop.exe are waiting to finish network I/O.'. The only way I can close the app then is by manually killing it in task manager or resource monitor.
    One thing I've noticed that may or may not be related, sniffer_gpu.exe only appears in the resource monitor while running a 64 bit version of Photoshop, both CS6 and CC. Once it appears, it seems to continually use 12% of my cpu, and even after I kill Photoshop, it continues to run and use 12% of my cpu, until I kill it as well. This does not happen at all when I run the 32 bit versions, I do not even see sniffer_gpu.exe appear.
    Anyone have a clue what the problem might be?

    Way back when, I did indeed uninstall and reinstall my Catalyst drivers, still no luck, still same problem.
    Finally today, some 6 months later, I was again dealing with Photoshop Phone tech support for another hour or two, including much hold time, finally having the issue excalated, as all software and drivers seemed up to date, and yet all versions of the gpu sniffer program still could not identify my gpu.
    After I got off the phone with them, I went to the AMD site and followed instructions on how to uninstall and reinstall their software. One step I had not thought of or tried was, after uninstalling the Catalyst software, repairing the .Net 4.5.1 framework through the Microsoft site before reinstalling the Catalyst software. It somehow seems that though the Catalyst installer software supposedly installs the .Net 4.5 framework, it cannot, unless the framework is already installed...
    Anyway, this does seem to have finally gotten the 64bit Version of Photoshop to finally work on my desktop.

  • 7925 Phones voice quality issues with wlc 5508 version 7.6

    Hi all,
    I have a mix environment with 1 WLC 5508  and more or less 6 sites with several Access Points ( all AIR-LAP1242AG and all in FlexConnect mode  Hreap ) and several wireless phones (all  CP7925G) . My Ap's have antennas 2.4GHz in all sites except 1 site ( the one i'm talking for now) with 2.4GHz and 5GHz , because of the problems we suggest to have all phone in A BAND (5Ghz) . In this site we force the phones just to A (802.11a only) , power safe NONE , Continuous scan mode , i fallow all in http://www.cisco.com/en/US/docs/voice_ip_comm/cuipph/7925g/7_0/english/deployment/guide/7925dply.pdf , one thing i didn’t do it was apply QoS because I can’t apply several ios commands in that 2960 with lan lite ios.
    So I have 3 SSID for data and 2 for VOICE  ( one is common to all environment and supports 2.4 and 5Ghz , and other just to test one site , with only 5Ghz  with “[WPA2][Auth(802.1X + CCKM)][Auth(FT 802.1X)]”, because I read that problem can be phone rooming , and in FlexConnect only have fast-roaming in a CCKM or a PKM  key-management solution , but even like this the problem still exist) .
    I have another sites with phones in 2.4GHz running well and others with problems.
    i read here in forums lots and lots of people with similar problems , i tried several solutions ( WLC  upgrades versions  and phones firmware's , ….  ) tried all my best of solving the problems mas now I’m running without any ideas , i did also some site surveys and detect some interferers that why I change phones to 5Ghz , and I run also WLC Config analyser to help me , but all without good success. Some changes solve temporarily problems , but after some time , people reclaim about problems.
    I can open a TAC case but first I want be sure if did all already.
    Can someone try to help me?
    ip phone 7925G firmware : CP7925G-1.4.5SR1.3      
    CUCM 8.6.2
    WLC    5508 : 7.6.120.0
    AP : AIR-LAP1242AG-E-K9    7.6.120.0       (flexconnect)
    Best Regards

    Hi Serge,
    Thanks for the suggestions. I have taken care of all the settings. Problem is , the user is seated in his office cabin and using the 7925 and there is around 50db signal strength in his room from an AP which is just outside the cabin. And this doesnt occur often, when we go to check and make calls, everything is fine whereas the user says it happens sometimes in the morning, evening etc... randomly... where the fone goes blank while in a call.... since the problem never happens when we go to troubleshoot the issue, we really dont know what is going on. This is happening when calling PSTN.
    AP's are not restarting and there is no logs indicating that. Wireless infrastructure looks very much OK cos there are other users who are not experiencing this problem and there is ample coverage all over the floor. I am baffled why only one user has this problem even when he is seated in his office cabin.
    Tried changing phones also, but still remains.
    Question  : i tried to do a linktest from WLC to his phone, but it failed, while linktest to laptops are working fine. Does wlc linktest not working for wireless phones ?
    regards
    Joe

  • Peformance issues with MDS

    Following this blog:
    http://biemond.blogspot.com/2009/07/using-shared-object-in-soa-suite-11g.html
    I have successfully managed to share common schemas across projects. I did this with some small representative XSDs.
    However when I come to use a real life XML Schema, in this case OAGIS. Which has lots of files ~600 JDeveloper falls over. Note that these files are not particularly large, there are just many and they reference out to each other. Opening a file takes about 3 minutes and 500meg of RAM. Expanding a node then just loads the system such that it hangs. It would be impossible to work with it.
    This occurs even when the MDS is a local file system. I.e. this is not about network bandwidth issues. It seems to be the implementation of JDeveloper and MDS, my guess is that it is dragging absolutely everything into memory.
    If I browse to the local MDS location through the files system (e.g. File->Open) and open an XSD everything works fine and there are no performance issues. I therefore can only think that the JDeveloper implementation for MDS does not scale.
    Any ideas or similar experiences?

    As an update. I have removed all superflous XSDs and have just 16 XSDs in total that are referenced either directly or indirectly from a single top level XSD. The total size of all these files is 700kb. I have added JUST this to my local MDS. This changes nothing however as JDeveloper cannot deal with even this size.
    Edited by: user10103872 on 24-Jan-2012 05:13

  • Conversion issue with the French version of Presenter 9 and 10

    Anterior versions worked fine
    The problems described here arise on different PC (windows 7)
    Some "objects" (images, graphics...)  in the ppt wont show up in the Presenter document
    Sentences and even words are cut : the first part is shown on a line and the other part on a second line
    We tried the "shadow 1%" fix but without any success.
    Those problems can arise even in a previously "normal" Presenter  document !
    For example :1) Slide 4 of a Presenter document X is ok. 2) We make a modification in the slide 2 of the ppt x 3) then publish in presenter. 4)  we realize that slide 4 lay-out is no longer normal !!!

    Unfortunately, I need to report back that this didn’t resolve the issue. On my presenter, the editor still jumps over the slide with the logos. As said earlier, it shows the slide for line 0,2 seconds and then moves to the next.
    Also, for the record, I have many slides with only 7 objects (2 pics and 5 text fields) which have the same effect in some other presentations. 
    Please advice.
    Best regards,
    Matti Heikkonen
    SEVP, Global Operations
    QuestBack AS
    Mob     +47 47 922 170
    [email protected]

  • Issue with CIS jar version  - cis-application-8.0.0.jar on content server

    We are having a problem adding this jar to our custom component. We are using this APIs to check-in some programatically.
    Following is the error when we try to deploy our component with this jar
    ===============================================================
    IdcAdmin: Content Server idc status: Stopped successfully
    Starting the Content Server idc... The server terminated unexpectedly.
    02.28 11:36:35.834 main NativeOsUtils version mismatch. The native code version is "7.1.0.2" and the Java version is "7.0.6.0".
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGSEGV (0xb) at pc=0x00002ac72c918500, pid=26841, tid=47034930753168
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x3a8500]
    ========================================================
    The content server version is 10.1.3.3.
    And the jar version is cis-application-8.0.0.jar. We are able to use the same jar standalone. What could be the problem? Should we need to upgrade to a diffrent jdk version? I am worried that might cause more problems.
    Regards,
    Pratap

    Thanks for your inputs.
    So far I have been looking at only CHECKIN_NEW_FORM and CHECKIN_SEL_FORM services for creating and updating content. items These services require files to be attached. I checked the definitive guide and found that there are 2 other similar services,CHECKIN_NEW and CHECKIN_SEL, that don't need the file to be attached. Instead we can specify the file path of the primary file. Since the xml content file to be checked is in th content server itlsef, these services can be used in my case. Moreover since my content checkin logic is in the context of a service, my code become more simpler.
    I began working on it and am calling executeServiceSimple("CHECKIN_NEW") or executeServiceSimple("CHECKIN_SEL") based on whether the content to be checked in is new or to be updated. I am setting all the metadata values of the content file in the m_binder local data of the service object.
    I thought this should work cleanly but I am getting the below error
    ============================================
    at intradoc.server.IdcServerThread.run(IdcServerThread.java:197)
    Caused by: intradoc.data.DataException: !csCheckinFileKeyNotSpecified,primaryFile
    at intradoc.server.DocServiceHandler.addFile(DocServiceHandler.java:3251)
    at intradoc.server.DocServiceHandler.addFiles(DocServiceHandler.java:410)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:617)
    at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:293)
    at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
    at intradoc.server.Service.doCodeEx(Service.java:490)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at sitestudio.SSClassHelper.invokeRaw(Unknown Source)
    ======================================================
    I printed out all the local data in the m_binder object. The primaryFile value is pointing to the right file path. The file is also been created in the correct location.
    The dID, dDocName, dOriginalFile, dRevLabel values are all set properly. But still I am getting this error. I am not able to figure out the cause of this. Please help. Is this approach incorrect?
    -Pratap

  • Issue With Report Viewer Version 11 On VS2012 & VS2013

    I create a sample project on VS 2012 @ VS2013 and created a report with some static data . I am trying to print the Report generated through report viewer 2012, but it is throwing the following
    "error An error occurred during printing. (0x80070006)".
    I am trying to test this on Windows 8.0 and Windows 7. It is working perfectly fine on Windows 8 . The issue is only on windows 7.
    Checked “Downloaded Program Files” folder.  All the required files were existed.
    Enabled Active X.
    Please suggest me how i can resolve this issue in Windows7 ?.

    Hi Arc Sam,
    Please find the details information below:
    You can install the control using the RSClientPrint.cab file... You can find this file in your VS installation at "\Microsoft Visual Studio 9.0\ReportViewer\". Below is a link to a related thread
    which may help you:
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=332145&SiteID=1
    Similar thread below:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/0501da39-0a27-4f61-81e0-7c6bb2c5a189/reporting-services-report-viewer-activex-control?forum=sqlreportingservices
    Regards,
    Swallow

Maybe you are looking for

  • Error in installation of ECC IDES 6 - at abap import

    i am getting import monitor failed during ecc6 setup on vmware with win 2003 enterprise, ram 2000 mb with 400 gb esata disk. installing ECC6 SR2 IDES on Oracle with just the abap dump. following is from the import_monitor log file: TRACE: 2009-07-14

  • Repository reports cannot generate HTML report

    Hello In our Computing Labs, we have Oracle9i Designer installed on Windows XP Professional. Our students are having a problem when they try to Run Report in Repository Reports. The student first sees an error message for Internet Explorer that says

  • Using javaagents with applets

    Is it possible to use javaagents with applets? If it is, how?

  • Downloading iTunes into PC that has music in folders from Media Player....

    I downloaded iTunes into a PC that has LOTS of music in files from Windows Media Player and other music software. Download went fine...and then, the music started to import from those files... and ALL of it copied twice into iTunes... I did note it c

  • Brand New TouchSmart 300 internal microphone not working.

    I have been trying to get my internal microphone to work with Skype. I have done all the tests suggested on this forum and everything says that my microphone is working! When I record anything  I get a muffled noise not anything like speech. If I rec