Line in not working with a Mic on Vista but working wth10.5

Hi,
I use everyday my headphone with a microphone everyday with Skype without any problems on 10.5. I just pluged the mic in the Line in input and headhone in the Line out.
But under Vista 32 bits, the mic isn't working at all, I don't have a sound when I speak in the mic, and in the Audio panel of Vista, the line in Setup button is unavailable (but it is for the built-in mic).
If I invert the mic and headphone in the entries (I mean physicaly), and speak loudly in the headphone, I have a level...
Honnestly, I don't understant.
For information, I still have the last beta drivers, I just saw that the 10.5 DVD have the last drivers (and it seems 64bit drivers, yeahh!)
Thank you in advance for your help!

I am searching for a answer myself and came across this link:
http://forum.notebookreview.com/showthread.php?t=161009&highlight=microphonelinein
Basically it sounds like we may have to use a USB Mic.. Not sure if you've come up with anything better. If you did, please post.

Similar Messages

  • LocalDB 2012 Application not working with Framework 4.0.3 but works on 4.5

    Initially I developed an application (winforms/c#) using VS 2013: framework 4.5, SQL Server 2012 and EntityFramework 6, but due a change on the user clients requirements and scenario, the application was migrated to: framework 4.0.3, LocalDB 2012 and EntityFramework
    6.
    To migrate projects frameworks I just change the targeted version, re-installed references (EntityFramework included) and checked the app.config.
    And to migrate mdfs, in VS, created a Data Connection, using SQL Server DataProvider, ServerName (LocalDB)\v11.0, WindowsAuthentication and Attached the database file, that showed me a warning that it will be affecting the database, and then the connection
    was created, this connection was used to create the ADO Entity Data Models.
    To deploy on clients I used a WIX project.
    When I deploy on a machine that has the Framework 4.0.3 installed, the application crashes with the error:
    "Underlying provider failed on open" and the innerexception was "A network-related or instance-specific occurred while
    establishing ..."
    on
    using (var dbContext = new SEDGRAICEntities()) <<-- Crashes Here
    try
    var baseubigeo = (from u in dbContext.T_MAE_UBIGEOCCPP
    select u.id_departamento.Trim() + u.id_provincia.Trim() + u.id_distrito.Trim() + u.id_centropoblado.Trim()).ToList();
    var query = from x in baselocalcp
    where !baseubigeo.Contains(x)
    select x;
    result = query.AsEnumerable<string>().ToList();
    catch (DbEntityValidationException dbEEx)
    dbContext.Database.Connection.Close();
    dbContext.Dispose();
    throw dbEEx;
    catch (Exception Ex)
    dbContext.Database.Connection.Close();
    dbContext.Dispose();
    throw Ex;
    SEDGRAICEntities:
    public partial class SEDGRAICEntities : DbContext
    public SEDGRAICEntities()
    : base("name=SEDGRAICEntities")
    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    throw new UnintentionalCodeFirstException();
    public virtual DbSet<DIS2K06> DIS2K06 { get; set; }
    public virtual DbSet<T_MAE_UBIGEOCCPP> T_MAE_UBIGEOCCPP { get; set; }
    public virtual DbSet<T_SEDD_GEOLOCALIZACIONCCPP> T_SEDD_GEOLOCALIZACIONCCPP { get; set; }
    public virtual ObjectResult<UbigeoValidacion> sp_ValidaUbigeoWGS84(string p_ver, string p_xmlData, Nullable<bool> p_boolGeo)
    var p_verParameter = p_ver != null ?
    new ObjectParameter("p_ver", p_ver) :
    new ObjectParameter("p_ver", typeof(string));
    var p_xmlDataParameter = p_xmlData != null ?
    new ObjectParameter("p_xmlData", p_xmlData) :
    new ObjectParameter("p_xmlData", typeof(string));
    var p_boolGeoParameter = p_boolGeo.HasValue ?
    new ObjectParameter("p_boolGeo", p_boolGeo) :
    new ObjectParameter("p_boolGeo", typeof(bool));
    return ((IObjectContextAdapter)this).ObjectContext.ExecuteFunction<UbigeoValidacion>("sp_ValidaUbigeoWGS84", p_verParameter, p_xmlDataParameter, p_boolGeoParameter);
    The SEDGRAICEntities connectionstring on App.Config is:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    <configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    </configSections>
    <appSettings>
    <add key="BusinessID" value="20102010201" />
    <add key="BusinessName" value="TESTBUSINESS" />
    </appSettings>
    <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
    </startup>
    <connectionStrings>
    <add name="SEDGRAICCUADROSEntities" connectionString="metadata=res://*/erCUADROSmodel.csdl|res://*/erCUADROSmodel.ssdl|res://*/erCUADROSmodel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=(LocalDB)\v11.0;attachdbfilename=|DataDirectory|\SEDGRAIC.mdf;integrated security=true;connect timeout=60;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
    <add name="SEDGRAICEntities" connectionString="metadata=res://*/erSEDGRAICmodel.csdl|res://*/erSEDGRAICmodel.ssdl|res://*/erSEDGRAICmodel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=(LocalDB)\v11.0;attachdbfilename=|DataDirectory|\SEDGRAIC.mdf;integrated security=true;connect timeout=60;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
    </connectionStrings>
    <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
    <parameters>
    <parameter value="v11.0" />
    </parameters>
    </defaultConnectionFactory>
    <providers>
    <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
    </entityFramework>
    </configuration>
    The thing is when I deploy the exact same installer on a machine with framework 4.5, and the app works perfectly.
    I re-created the solution using VS 2010 with framework 4.0.3, with the same results. 
    The requirement it's to maintain framework 4.0.3, in order to keep compatibility with the clients machines, so I can't use framework 4.5.
    I don't understand why the application needs framework 4.5 to work if I removed all (I think) dependencies and even recreated the solution.
    Please help me with this.
    Omar

    Hello,
    Please verify the connection string. Try the following steps.
    1.Open SQL Server Object Explorer (View > SQL Server Object Explorer)
    2.Connect to the DB Server (Click "Connect to Server" and enter "(LocalDB)\v11.0")
    3.Right click on the appropriate DB and select "Properties"
    4.View the connection string
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Just updated to my macbook pro to 10.8.2. ical not synching with my Exchange 2010 server. Worked flawlessly prior to the upgrade. Settings set to auto discover. I matched settings of a partner in my who is still using 10.7.1 without issues. Help!

    Just updated to my macbook pro to 10.8.2. ical not synching with my Exchange 2010 server. Worked flawlessly prior to the upgrade. Settings set to auto discover. I matched settings of a partner in my who is still using 10.7.1 without issues. Help!

    Also - my battery has been telling me "service battery" for a LONG time and then it switched to "replace soon" som time ago. Can't really see what this has to do with anything but whatever.
    That could conceivably explain all the problems you're describing. Replacing a Mac's battery should not be postponed since a failed battery will cause other problems to occur. It is also possible that its hard disk has failed, which means the information on it may soon become unrecoverable.
    ... my latest TM back up was from April 2014, can I just run this when I have rescued everthing and then it might not be as slow?
    If that Time Machine backup remains intact, it may be the only viable means of recovering that Mac's information. I suggest you do not attempt to restore its contents to your ailing Mac.
    Given that you are having trouble creating a newer Time Machine backup you should stop using that Mac immediately and have it serviced as soon as you are able. Do not take it to anyone other than Apple or a service facility authorized by Apple, for the very reasons you explained. If there are no Apple Stores in your vicinity search for an Authorized Apple Service Provider using the Contact Us link below. Use one of the options that appear under Contact Apple Support. The language on that page will be different for your location.

  • While dealing with an external hardware i got a Java update4 request,but was not able to complete that update.After that when i switch on my Mac it shows reinstallation required.i was working with OSX 10.8.5,but after reinstallation now it is 10.7.5 .

    While dealing with an external hardware i got a Java update4 request,but was not able to complete that update.After that when i switch on my Mac it shows reinstallation required.i was working with OSX 10.8.5,but after reinstallation now it is 10.7.5 .And while doing search for update it shows your software is uptodate..

    Hi Hal,
    One possibility, is a strange occurence when applying the big 10.5.8 combo, most people have to Repair Permissions twice in a row, then reboot.

  • HT4623 my voice call services is not working with cellular network...only works fine with wifi..please help?

    my voice call services is not working with cellular network...only works fine with wifi..please help?

    Since you have already done some sort of reset on your Airport Express, you might as well make sure it was a "hard reset" - follow the instructions for a hard reset found at:
    http://docs.info.apple.com/article.html?artnum=108044
    Since your Mac is running Leopard, you need to configure the Airport Express using the Airport Utility found in the Applictions->Utilities folder. You cannot install the old software that was supplied on the CD you got with the Airport Express.
    In future - if you do something bad with network settings on your Mac, do NOT try to fix it with the Airport Utility. The Airport Utility is only used to configure the Airport Express - and since the problem you have created is on the Mac and not the Airport Express, there is no need to be using the Airport Utility and especially there is no need to be resetting the Airport Express.

  • Designer 7.0  form working with Reader 7.0.5 but not Reader 7.0.8

    Hello everyone,
    I was wondering if anyone has had a problem with a formed created using Designer 7.0 that was working with Reader 7.0.5 but no longer functions with Reader 7.0.8?
    The form consists of a numeric textbox N1 and 2 checkboxes C1[0] and C1[1].
    All code is done using FormCalc.
    Here is the situation: if the number in the numeric box is blank or not greater then zero, then neither check box can be checked. Both check boxes can not be checked at the same time. If the value in the numeric box is greater then zero, the checkboxes may or may not be checked (again both can not be checked at the same time).
    N1 has code the following code in its exit event:
    if (($.isNull) or ($.rawValue le 0)) then
    C1[0].rawValue = 0 //if not positive value, checkboxes must be blank
    C1[1].rawValue = 0
    endif
    C1[0] has the following code in its click and exit event
    if (C1[0].rawValue == 1) then
    C1[1].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    $.rawValue = 0 //uncheck if N1 is not positive
    endif
    C1[1] has the following code in its click and exit event
    if (C1[1].rawValue == 1) then
    C1[0].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    C1[1].rawValue = 0 //uncheck if N1 is not positive
    endif
    The above code worked exactly as described when the form was used in Reader 7.0.5.
    Under Reader 7.0.8 the following happens:
    if N1 is blank or less then or equal to zero, both checkboxes can be checked at the same time (this should not happen at all) but neither can be unchecked
    if N1 is positive the code (and checkboxes) function as described.
    I am not sure if this is a Designer issue or a Professional/Reader issue, so I am posting this here as well as in the other 2 spots.
    Any help is greatly appreciated,
    Ben

    Chris,
    Thank you for the sample you provided. First, I must apologize for not mentioning that there was additional code in the Click event. I thought I had removed it from my form, but apparently I had not.
    I have compare the sample you provided to my form. I noticed several differences between them. First was that you used Designer 7.1 to create your sample, whereas I used Designer 7.0. I do not believe that this will have an impact, although it is possible. Also, in your sample, then click and exit events both need to contain the same "check" code. Your sample has one IF statement in the click event and one IF statement in the exit event. To match my form code, the Click and Exit events together need to contain both IF statements. My form originally contained the code in the Change event also.
    i.e. C1[0] has the following code in both its Click, Exit and Change events
    if (C1[0].rawValue == 1) then
    C1[1].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    $.rawValue = 0 //uncheck if N1 is not positive
    endif
    and similarly for C1[1].
    Based off your sample, I did some more digging and found that the problem is caused by the Change event for the checkboxes. I have removed the code from the Change event and now the form works as desired.
    So, if the Change event has NO code, and if the Click and Exit events for the checkboxes have both IF statements the overall behavior (as specified earlier) is identical (and what I am looking for) for both Reader 7.0.5 and 7.0.8.
    Now, if I add the IF statements to the Change event (without removing them from Click and Exit), the behavior in Reader 7.0.5 does not change (works as specified). In Reader 7.0.8, the checkboxes can not be unchecked if N1 is blank.
    So my questions now become:
    1) What has actually changed between Reader 7.0.5 and 7.0.8 (i.e. more detailed description than the generic release notes)?
    2) Which one actually exhibits the correct behavior?
    3) If this is a change to the event model, is this documented anywhere?
    Thanks again,
    Ben

  • Hi, I have a Indesign user who inherited a PC with Indesign installed. Indesign works with old PC user profile but not the new user. Any ideas how I can resolve this?

    Hi, I have a Indesign user who inherited a PC with Indesign installed. Indesign works with old PC user profile but not the new user. Any ideas how I can resolve this?

    Question # 1 is what do you mean by "inherited"? Is this a case where the computer belonged to someone else? Your user would not be entitled to use a program licensed to someone else.

  • HT1695 Wi-Fi to your iPhone does not work with the knowledge that I have worked Restart for the same purpose network does not work What is the solution please help as soon as

    Wi-Fi to your iPhone does not work with the knowledge that I have worked Restart for the same purpose network does not work What is the solution please help as soon as

    Okay, the Wi-Fi doesn't work.  Turn it on.
    Beyond that, we cannot offer any other assistance as you've failed to provide useful details of the problem.
    When responding, post in your native language as your English makes very little sense.

  • PSE12 Editor works with OS 10.6.8, but Organizer does not

    PSE12 Editor works with OS 10.6.8, but PSE12 Organizer does not. Told "may need newer version" of OS. What's the story?

    I am sorry Invalid Personalization but Photoshop Elements 3.0 requires a PowerPC processor or Rosetta installed in order to function.  You can find the system requirements at System requirements | Adobe Photoshop Elements.
    You may want to try following the steps listed at Mac OS X 10.6: If you need to install Rosetta to attempt to install Rosetta.  That may still not resolve your licensing issue however as the application was also designed for Mac OS 10.2.8 and 10.3.

  • My iphone 5s wont charge it keeps saying that its not supported with this accessory. It was working just fine about 2 days ago

    My iPhone 5s wont charge it keeps saying that its not supported with this accessory. It was working just fine about 2 days ago, what can i do?
    This is the 4th charger I've bought, i don't want to keep wasting money on chargers anymore.

    a_man_duh wrote:
    My iPhone 5s wont charge it keeps saying that its not supported with this accessory. It was working just fine about 2 days ago, what can i do?
    Take it into an Apple store and have it checked out.
    This is the 4th charger I've bought, i don't want to keep wasting money on chargers anymore.
    You shouldn't have bought any.
    They are part of the 1 year standard warranty.
    Take it into an Apple store for free replacement (if not user damaged).

  • My Isight is not working on skype and yahoo messenger but works on photobooth and ichat

    My Isight is not working on skype and yahoo messenger but works on photobooth and ichat.
    Ive reset my SMC and PMU but it still does not work. Only black screen appears on skype with a loading sign that takes so long. The light signal on the cam doesnt turn on as well which indicates that it is really not working.

    Regarding Skype, post in the Mac Skype forums on Skype's website.  It's where all the Mac Skype users hang out.
    Regarding Yahoo, contact its customer tech support department.

  • I am a realtor working with form simplicity on Safari but it keeps freezing up on me any advice?

    I am a realtor working with form simplicity on Safari but it keeps freezing up on me any advice?

    Adobe Flashplayer needs to be updated.
    http://mfrmls.com/component/content/article/570

  • HP LJ4mv wireless printer worked with OS 10.5.5 but not with 10.6.3 - help!

    My ancient HP worked with 10.4.11 and 10.5.1 thru 10.5.5 wirelessly. With 10.5.6 thru 10.5.8 installed, the printer did ot work and only the Adobe printer appeared in the Printer/Fax setup. With 10.5.5, I was experiencing random horizontal gray lines, polygons with gradient colors (cyan and magenta) flashing on and off and smeared dialog boxes and drop down menues. So, I upgraded to 10.5.8 and lost the artifacts and my wireless printer. All drivers are current (Software Update delivered/installed updated drivers today.)
    10.6.3 is now installed and I still do not have a wireless printer. The Adobe PDF printer pops up and in the Printer/Fax dialog, it indicates "Kind" as HP LaserJet 4V/4MV Postscript. The Default button is active but all other buttons are grayed out and my printer does not appear.
    Summary: the printer works, the wireless router works and the drivers are current.
    Q. How can I get my wireless printer back? I need it badly.
    Thanks.
    Leonard

    Kappy, thx.
    The driver that is appearing now with the Adobe printer worked fantastically with 10.5.5, HP LaserJet 4V/4MV Postscript. This is from Apple, I believe. My printer does not show up when + is selected in the Print & Fax dialog and the Printer Name/Kind list appears. Only the Adobe is there.
    I d'l'd/instld the Gutenprint. I cannot select it until the printer appears in the Printer Name/Kind field.
    What is SL? :S
    Greg, thx.
    The printer is cat 5 to the ISP's wireless router and I am wireless. This has always worked up to 10.5.5. I incrementally d'l'd os upgrades 10.5.6, 10.5.7 and 10.5.8 and found the printer would not appear when I tried to add it. With Leopard, up to 10.5.5, my printer appeared automatically and I just had to make a selection from the "Print Using:" drop down.
    Bruce, thx.
    AppleTalk was a part of the setup and in 10.6, I cannot find AppleTalk. So you may be right about the IP route. Would Apple change this in the middle of Leopard with 10.5.6 (it worked up to 10.5.5) and not with 10.5.0 or 10.6.0? Would there not be an announcement that AppleTalk printer support was ending? No one in these forums knows that AppleTalk printer support was ended (I first posted in the Leopard forums)?
    Sorry for the skepticism. I just did not think this was a possiblity but maybe you are right.
    Is there a way to get an Apple reading on this? Should I set up a print server for wireless access? Any other suggestions?
    Thanks again all. I much appreciate your help.
    Leonard

  • The expand on Youtube is not working with many Youtube sites and they work on Internet Explorer

    On many of the sites on Youtube the expand does not work with Mozilla Firefox 4. I have gone to Internet Explorer and they work there. When I come back from Internet Explorer strange enough the expand on Firefox works. Obviously its picking up programming from Internet Explorer, unfortunately it does not last long. I've tried plug ins, reloading flash player after I deleted it and re-installed it, the problem still exist. Also on the expand screens that do work on the right side there is a very thin white line coming down the border. I'm not the only one with this problem. please help with this problem.

    Indeed, this is a bug in HTTPS-everywhere which you can see here : https://trac.torproject.org/projects/tor/ticket/4032

  • Brush Problems with Illustrator CS4... the line does not draw with my mouse movement

    When I use any other brush besides the Calligraphic Brushes from the "Artistic Ink" brush library, I press down with either my Wacom Tablet or mouse, and the line does not appear to draw. Then I release the button on the mouse or lift my pen tablet up, the lines appears. Sometimes, a little "dot dot dot" line appears when the brush stroke it going to appear. But most of the time, it's just nothing, and then the line appears after I've drawn it.
    However, with the preselected brushed at the top, and the Calligraphic Artistic Brushes, the line appears as I am drawing it. This is what I want for the other brushes.
    Is this normal?! I just recently upgraded to Windows 7, and reinstalled the Adobe Suite. I can't remember if Illustrator did this before I reinstalled it, but I'm not sure it did otherwise it would have annoyed me as much as it does now. Can anybody help me?

    Hi!
    Hope I'm not hijacking this thread.
    First time posting to a forum.
    I'm having the same problem and followed the advice for changing the file name in the Illustrator CS# Settings folder.
    This solved the problem of seeing predicted brush paths for very basic brushs, but I still can't get a preview path for any of the ink brushs.
    I've seen video tutorials which demonstrate inking techniques and the ink brush predicted path was clearly working in those tutorials.
    I'm assuming therefore that I should be able to see some type of preview when using the ink brushs.
    Any advice would be great!
    Cheers!

Maybe you are looking for

  • HT1651 Neither of my memory cards are reseating correctly, what's the problem?

    Macbook mid 2007.  Both memory cards slide in correctly, but are not retained by the locking lever.  I can just pull them right back out.  The comp is only recognizing 1 of the 512 memory cards--presumably because the L-shaped metal piece is holding

  • Original System incorrect after transporting from BD1 to BQ1 systems

    Hi all, BI 7.0 SP 10 We have having problems with the 'original system' of our DataSources and certain transformations when transporting objects from BI dev system to the BI QA system. DataTargets are coming through the Transports with the correct 'o

  • Creative MuVo TX FM - Connector Prob

    I alredy detected a problem with my MuVo TX FM; the USB Connector is damaged and in this country no one repair this device type; please help me with any instructions about how to disassamble the player part of the Mp3... I know how to dissasamble the

  • CRS XI R2 Service Pack 1

    Hi, I'm trying to install the incremental Service Pack 2 for Crystal Reports Server XI R2 running on Windows Server 2003.  Right now I just have the base version of Crystal Reports Server XI R2 installed from CD without any hotfixes or service packs.

  • Problems in activating the structure CI_Aufk for enhancemant CONFPP07 ?

    Hi , I got a requirement for developing a screen exit for transaction co11n ( i used CONFPP07 exit ) so i have added four field in the screen and added four field in  EXIT_SAPLCORU_S_100 --->  CAUFVD -.> CAUFVTAB-> CI_AUFK . now my problem is when i