My default browser is mozilla further my company suggested to our official mail wepsite in this same browser.When i am trying to my official mail Id ,that time

My company suggest to use our official mail server open in Mozilla browser.I have open my mails and downloading the files but I can not send My mails and not upload the attachments in this mail kindly suggest in this regard
My official Mail server Name is "eu.secure.linde.com"

Hello,
'''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
''(If you're not using it, switch to the Default theme.)''
* You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
* Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
''Once you get the pop-up, just select "'Start in Safe Mode"''
'''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
Thank you.

Similar Messages

  • I have specific websites that browser sees as unencrypted and then blocks my access. Some sites that I successfully navigate for the first time, but am blocked by this same feature when returning later. I have Avira Premium in good working order.

    I can reach any of the sites thus afflicted by using a proxy server, confirming that the sites are NOT the problem. Therefore no reason to provide a website below... it occurs on numerous websites (which can all be reached with proxy server) while the majority of sites I go to are no problem.

    Alright, so last night, I couldn't sleep. Sunrises can be a little slow.
    Received a phone call this morning, did the song and dance, and she said I would get a new card within 3-5 days. When I hung up, because I was so rattled about this, I didn't bother to recheck the phone number to make sure it was legit! She had my personal info, but she asked me my email as well (not username or password, but...)!
    I have 2-step verification on my email account, so I'm not concerned that (if the call was not legit) that they would go much further. Changed all of my passwords last night as well. And no SSN info was asked, so there's that. She also made me aware of two other previous pending charges that have been there for a few days (which are legit, I had been tracking them), so I feel slightly more sure that it was legit.
    Checked back at the email and webpage provided to look at the security certificate, and it checks out fine. Nevertheless, I called at the back of my card because, by then, I was already nearly crying over my oversight--anxiety issues and a lack of sleep will do that to you, heh...
    This CSR tells me that, indeed, my card had been compromised, and confirmed that the account had been blocked and that they were not overnighting the card, that it would arrive in 3-5 days (which also eases me, as the woman said they were sending it via regular mail and gave the same timeframe).
    Regardless, I'm the world's biggest worrywart, so I requested a fraud alert on my CRs. I don't know what to do with myself now. What else can I do to protect myself? Had a good cry, I think I'll try and get some sleep, finally...
    Thanks for warning me about the passwords, though, I hadn't thought about it until some of you said so!

  • Open HTML pages in the same Browser

    HI All,
    I have a GUI with Help buttons which are required to open Help files in the default browser.
    Now i am able to acheive this using Runtime.getRuntime().exec("cmd /c start iexplore url")
    But the problem here is everytime the user clicks on the help buttons on various screens of the UI it opens a new browser instance where as i want all the help files to open in the same browser window.
    How do i acieve this?
    Also i tried using rundll32 url.dll, FileProtocolHandler url... the problem with this command is it doesnt recognize the querystring part of the url.
    For ex : http://forum.java.sun.com/post.jsp?forum=31&skldfsdkfj
    here the cmd only recognizes until http://forum.java.sun.com/post.jsp and the rest of the url is truncated when the browser opens. Do i need to escape "?" in my java application itself
    I escape & with ^& and this works..But how abt for "?"
    Anyone has any idea abt this....Pls help
    ADN

    all browsers ask you when you install them if you want that one to be the default one.
    So yes, start or run32dll.exe can be used to launch the default browser.
    No, you can't control which window to show it in, with the possible exception of Mozilla (or a derivitive (sp?)) might have some command-line options to do that. But you can't know that it's a Mozilla browser that will run with start or run32dll.exe.
    Your other choice would be: search the file system for browser, or just ask the user for the path to the browser's exe in a preferences dialog or something.

  • Reg: Closing and Opening Web Dynpro Application in same browser

    Dear Experts
    In my webdynpro application when i click a button another web dynpro application is opened in another window(another browser) .
    But i want to open the second web dynpro application inside the same browser in which closing the first applicaiton and opening the second web application in same browser window .
    Please guide me to do this.
    Regards
    Arun

    hi ,
    Exit plugs have the special property that they use the defined URL parameter. After you have created the URL parameter in the parameter list on the Outbound Plugs tab page in the window editor, you can specify a value for this parameter in the method that calls the exit plug.
    ref
    link:[http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/ca3351508f04e7e10000000a42189c/content.htm]
    it would help u
    regards,
    amit

  • Re: reusing same browser - nicer code....

    Hi
    After kind advise from this list's members I modified the code to look nicer:
    -- code
    -- topic: URL, eg: www.forte.com
    dde_cnv : DDEConversation = new;
    startet:boolean=false;
    starting:boolean=false;
    while not startet do
    begin
    dde_cnv.InitiateConnection (
    application='iexplore',
    topic = 'WWW_OpenURL',
    autoLaunch = FALSE);
    startet=true;
    exception
    when e: resourceexception do
    cmd:textdata=new;
    cmd.setvalue('START IEXPLORE');
    if not starting
    then
    task.part.operatingSystem.runcommand(cmd,false);
    end if;
    task.delay(1000);
    starting=true;
    end;
    end while;
    dde_cnv.requestPutItem(item=topic,text=topic);
    dde_cnv.terminateconnection;
    -- end code.
    Much better!
    jens chr/KAD
    -----Original Message-----
    From: JCJJ <jcjj@post>
    To: Doug Wheeler <[email protected]>; [email protected] <[email protected]>
    Date: 24. august 1998 19:35
    Subject: Re: reusing same browser
    Hi
    I made that part work, doesn't look nice, but it works:
    ---code---
    -- parameter: topic:textdata
    -- First create a DDEConversation object.
    dde_cnv : DDEConversation = new;
    startet:boolean=false;
    starting:boolean=false;
    while not startet do
    begin
    dde_cnv.InitiateConnection (
    application='iexplore',
    topic = 'WWW_OpenURL',
    autoLaunch = FALSE);
    startet=true;
    exception
    when e: resourceexception do
    cmd:textdata=new;
    -- FIRST try IE4 adress
    cmd.setvalue('c:\\Progra~1\\Plus!\\Micros~1\\IEXPLORE.EXE <a
    href=
    "http://kad1.kad.dk/www/kad/fortedoc/">http://kad1.kad.dk/www/kad/fortedoc/</a>');
    testfil:file=new;
    testfil.setlocalname(cmd);
    if not testfil.hasProperty(OS_FP_EXISTS)
    then
    -- else try IE3.01 adresse
    cmd.setvalue('c:\\Progra~1\\intern~1\\IEXPLORE.EXE http://kad1.kad.dk/www/kad/fortedoc/');
    end if;
    if not starting
    then
    task.part.operatingSystem.runcommand(cmd,false);
    end if;
    task.delay(1000);
    starting=true;
    end;
    end while;
    if topic = nil
    then task.part.logmgr.putline('called with no topic');
    else dde_cnv.requestPutItem(item=topic,text=topic);
    end if;
    dde_cnv.terminateconnection;
    --- code end----
    what I would like to figure out is how to avoid hardcoding the explorer path into the app.
    May the FORTE be with you all
    Jens Chr Juul Jensen/KAD Denmark
    -----Original Message-----
    From: Doug Wheeler <[email protected]>
    To: '[email protected]' <[email protected]>
    Date: 24. august 1998 15:46
    Subject: reusing same browser
    Forte Users,
    I am embedding a link to the web in a Forte application using the following
    statement:
    task.Part.OperatingSystem.RunCommand(command = 'c:\\winnt\\explorer.exe
    http://... <http://...> ', isSynchronous=FALSE );
    This works great except every time this statement is run it brings up a new
    instance of the browser. What I would like to be able to do is reuse the
    same browser. Anyone know if this is possible sort of using OLE embedding?
    Thanks,
    Douglas Wheeler
    Consultant
    Fort&eacute; National Practice
    BORN Information Services (http://www.born.com <http://www.born.com> )
    Tel: 612.404.4379
    Email: [email protected] <mailto:[email protected]>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi
    After kind advise from this list's members I modified the code to look nicer:
    -- code
    -- topic: URL, eg: www.forte.com
    dde_cnv : DDEConversation = new;
    startet:boolean=false;
    starting:boolean=false;
    while not startet do
    begin
    dde_cnv.InitiateConnection (
    application='iexplore',
    topic = 'WWW_OpenURL',
    autoLaunch = FALSE);
    startet=true;
    exception
    when e: resourceexception do
    cmd:textdata=new;
    cmd.setvalue('START IEXPLORE');
    if not starting
    then
    task.part.operatingSystem.runcommand(cmd,false);
    end if;
    task.delay(1000);
    starting=true;
    end;
    end while;
    dde_cnv.requestPutItem(item=topic,text=topic);
    dde_cnv.terminateconnection;
    -- end code.
    Much better!
    jens chr/KAD
    -----Original Message-----
    From: JCJJ <jcjj@post>
    To: Doug Wheeler <[email protected]>; [email protected] <[email protected]>
    Date: 24. august 1998 19:35
    Subject: Re: reusing same browser
    Hi
    I made that part work, doesn't look nice, but it works:
    ---code---
    -- parameter: topic:textdata
    -- First create a DDEConversation object.
    dde_cnv : DDEConversation = new;
    startet:boolean=false;
    starting:boolean=false;
    while not startet do
    begin
    dde_cnv.InitiateConnection (
    application='iexplore',
    topic = 'WWW_OpenURL',
    autoLaunch = FALSE);
    startet=true;
    exception
    when e: resourceexception do
    cmd:textdata=new;
    -- FIRST try IE4 adress
    cmd.setvalue('c:\\Progra~1\\Plus!\\Micros~1\\IEXPLORE.EXE <a
    href=
    "http://kad1.kad.dk/www/kad/fortedoc/">http://kad1.kad.dk/www/kad/fortedoc/</a>');
    testfil:file=new;
    testfil.setlocalname(cmd);
    if not testfil.hasProperty(OS_FP_EXISTS)
    then
    -- else try IE3.01 adresse
    cmd.setvalue('c:\\Progra~1\\intern~1\\IEXPLORE.EXE http://kad1.kad.dk/www/kad/fortedoc/');
    end if;
    if not starting
    then
    task.part.operatingSystem.runcommand(cmd,false);
    end if;
    task.delay(1000);
    starting=true;
    end;
    end while;
    if topic = nil
    then task.part.logmgr.putline('called with no topic');
    else dde_cnv.requestPutItem(item=topic,text=topic);
    end if;
    dde_cnv.terminateconnection;
    --- code end----
    what I would like to figure out is how to avoid hardcoding the explorer path into the app.
    May the FORTE be with you all
    Jens Chr Juul Jensen/KAD Denmark
    -----Original Message-----
    From: Doug Wheeler <[email protected]>
    To: '[email protected]' <[email protected]>
    Date: 24. august 1998 15:46
    Subject: reusing same browser
    Forte Users,
    I am embedding a link to the web in a Forte application using the following
    statement:
    task.Part.OperatingSystem.RunCommand(command = 'c:\\winnt\\explorer.exe
    http://... <http://...> ', isSynchronous=FALSE );
    This works great except every time this statement is run it brings up a new
    instance of the browser. What I would like to be able to do is reuse the
    same browser. Anyone know if this is possible sort of using OLE embedding?
    Thanks,
    Douglas Wheeler
    Consultant
    Fort&eacute; National Practice
    BORN Information Services (http://www.born.com <http://www.born.com> )
    Tel: 612.404.4379
    Email: [email protected] <mailto:[email protected]>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • I'm using internet by nokia ovi pc suit via cable & on that opera browser working properly but i update my browser by mozilla but it is not working a msg is appear "unable to connect"

    i'm usin internet by nokia ovi pc suite via cable &it is working properly in opera 10 but i update my browser to mozilla but on firefox it is nat working a msg apear "unable to connect" .I have changed all settings
    suggested on site but the problem has not solve.

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • When I start mozilla firefox web browser, sometimes I see a message saying that "a Mozilla Firefox is already running, please close it or restart your program", while I don't have one running at that time. What is the problem?

    When I start mozilla firefox web browser, sometimes I see a message saying that "a Mozilla Firefox is already running, please close it or restart your system". As a matter of fact, there is no firefox browser running at that time. Since I cannot do anything about it, I have to restart my computer before I can use the web browser, which bothers me dearly. What is the problem?

    Plug-in and tasks started by Firefox may continue after attempting to close Firefox. The "X" in the upper right-hand corner closes the Window (same as Ctrl+Shift+W) but even if it is the last Firefox window, it does not necessarily close Firefox .
    '''The only proper way to exit Firefox is to use Exit through the File menu''', not the "X" in the upper right corner of last Firefox window.
    ''Menus hidden: then use Alt+F then X.''
    '''Firefox hangs''' | Troubleshooting | Firefox Support ''(some extensions cause a problem)''
    * http://support.mozilla.com/kb/Firefox%20hangs#w_hang-at-exit
    Use the '''Windows Task Manger''' to remove all running firefox.exe in the "Processes"
    tab of the Windows Task Manager, then restart Firefox.
    "'''Restartless Restart'''" extension for Firefox 4.0 only (2 KB download )
    * https://addons.mozilla.org/firefox/addon/249342/
    use to close and restart Firefox after enabling or disabling an extension, switching
    to a new theme, or modifying configuration files, then you don't have to worry
    about delay or have to look in the Task Manager to see if Firefox is closed yet.
    Uses keyboard shortcut "'''Ctrl+Alt+R'''" or a file menu option.
    '''Windows 7''' users can use '''Ctrl+Shift+Esc''' to get to the Windows Task Manager quicker than starting with Ctrl+Alt+Del.

  • Defaulting document types for a particular company codes.

    Dear All,
    Is there a way to default certain document types to particular company codes, so that when ever if we enter that particular company code then automatically the default document types has to come. I tried to check for configurations but could not. Please let me know how to achieve this scenario.
    Regards
    Srikanth

    Hi,
    No, does not seem possible to me without development...
    Regards,
    Eli

  • Since yesterday when I open a new firefox browser , it searches in yahoo instead of google. How can I fix this.. Dont see anything new in the toolbars

    The toolbars appear the same, but when I open a firefox browser and do a search it uses yahoo instead of google. I am not aware of anything I did to cause this

    Try to reset some preferences to the default with the SearchReset extension:
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).
    You can check the <b>browser.search.defaultenginename</b> pref on the <b>about:config</b> page and make sure that it is set to Google.
    *http://kb.mozillazine.org/about:config
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    If you do not keep changes after a restart then see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Whenever I click on an active field in the browser, a new window with advertise opens. I want a solution on this problem.

    Whenever I click to start putting details in the active field on browser web page a new window opens with advertise. I have to close this every time.
    This happens also when I click on a youtube video link or any active tab.
    I am fed-up.. I have stopped all plug-ins and add-ons, installed the browser again... still the problem persists.
    Help!

    Sounds like a dose of Malware on that PC.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Suddenly after my browser was asking for save&quit for multiple tabs, it stopped this to appear again.so i tried to set it again but no browser.warnOnRestart

    I lost the option of save and quit for the multiple tabs when closing, so i tried to set them again but i couldn't find browser.warnOnRestart to set it to true value.
    How can i get it back?

    Make sure that you do not run Firefox in (permanent) Private Browsing mode (Never Remember History).
    *https://support.mozilla.org/kb/Private+Browsing
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history"
    *Deselect: [ ] "Always use private browsing mode"
    You can check the browser.sessionstore.* prefs on the <b>about:config</b> page and reset user set (bold) browser.sessionstore.*prefs to the default value via the right-click context menu to make sure that Session Restore is enabled and working properly.
    *http://kb.mozillazine.org/Session_Restore
    *https://support.mozilla.org/kb/restore-previous-session

  • I click on my mobile me mail and the site "find my iphone comes up"; This happens even when I type in mobile me in the browser window! Only on firefox - not safari. What the heck? This just started today - and won't reverse!

    I have mobile me mail service. Use mac 10.6.7. Have latest firefox. Suddenly only can get "find my phone" - not mac mail - even when I type in the mac.me or mobile me mail in the browser window. Safari seems to work fine.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You may have switched on caret browsing.
    *http://kb.mozillazine.org/accessibility.browsewithcaret
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    *Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    *http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • Hi, my firefox browser hacked by iclaro search engine. when i am trying to open new tab it's autometically redirected to iclaro search, please help.

    Hi,
    when i am trying to open a new tab, it's auto redirect to "isearch.claro-search.com/?affID=115131&tt=3312_5&babsrc=NT_iclro&mntrId=8aa792f7000000000000000000000000" this url, pls help me how to resolve it.

    hello runnu07, you can either install the [https://addons.mozilla.org/firefox/addon/searchreset/ search reset] addon or manually reset the new tab page by entering '''about:config''' into the firefox location bar (confirm the info message in case it shows up), searching for the preference named '''browser.newtab.url''' and right-clicking & resetting it to its default value ('''about:newtab''').

  • Liked old vista overlay windows.. can I change Win7 w/firefox to do overlay windows instead of tabs on same browser?

    liked old vista overlay windows.. can I change Win7 w/firefox to do overlay windows instead of tabs on same browser?

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • I click on the Mozilla icon and it will not load. I have tried to uninstall and reinstall but that doesn't work either

    I have tried to open Firefox, but it just sits there and doesn't load. I have tried to uninstall and reinstall but that works for a few hours and then it goes back to not loading. I don't know what else to do to get it too load.

    Right-click on your Windows Taskbar and select Start Task Manager. Look in Task Manager for processes running that are Firefox-related, such as Firefox.exe or plugin-container.exe. If you see either of those, right-click each of them and select "End process". Then try again to start Firefox in [[Safe Mode]]. <br /><br />
    *If Firefox will start in Safe Mode, select the option you are presented with to disable your add-ons and plug-ins and restart Firefox normally. You likely have a plug-in, add-on, or a combination of two or more that is causing the problem. Because Firefox allows users to customize endlessly, sometimes there can be conflicts between customized items. From the Firefox menu bar, go to<br /><br />Tools -> Add-ons<br /><br />then re-enable them one by one, restarting Firefox after each and testing after each one to see which one or combination of two or more is causing the problem. <br /><br />
    *If Firefox will not start in Safe Mode, make sure you again check Task Manager and end any running instances, then uninstall Firefox and download a fresh copy from mozilla.org/firefox using another browser temporarily. Re-install Firefox (see: [[Installing Firefox on Windows]] for more help ) and try running Firefox again.
    Please report back your progress.

Maybe you are looking for

  • I cannot get into iTunes Store: Error -54. Hp

    Hello, since a few days I cannot connect the Itunes store. When I start Itunes there appears: unknown error -54, look, if network is on function and try ist again.. I tried to get help from the Itunes support, but they told me to try, what you can fi

  • Deploy modbus I/O server as part of custom device build

    Hello, We are attempting to get Modbus up and running as a custom device. From Labview we have managed to get modbus communication working by using Modbus IO servers. When I package this with the custom device build we get the following error code wh

  • Preview - Outline only appears?

    I wonder if somebody might be able to help? Issue: Anywhere throughout the system where a preview is meant to appear or indeed the Preview application is used it opens but does not appear.  For example, if I try to open a PDF or a JPEG through previe

  • No Sound except through headphones

    I have an Envy Phoenix 810 PC with an Envy 23 Monitor with built in speakers running windows 7. I can test sound on the computer with headphones and they work and I can test the internal speakers on the monitor and they work but I cannot get any soun

  • Could u open diffrent sections according to the Models? for zen, for muvo, and etc

    to moderators... i see here all the messages are mixed. if u put them into groups according to the player models (zen,muvo, and etc) it would be better.. best wishes ozzy