Message from webpage no object then my computer freezes

i have HP Media Center PCm7334n desck top computer windows xp when i get on internet  a message box apears . in it says message from webpages object error. then my comp. freezes. any suggestions

Hi,
Since how long have you been facing this issue?
Were there any changes or updates made on your computer?
What is the complete and exact error message?
Try this method. 
Use the Internet Explorer (No Add-ons) mode
To do this, click Start, point to All Programs, point to Accessories, point to System Tools, and then click Internet Explorer (No Add-ons).
If this resolves the issue, follow these steps to isolate the browser add-on that is causing the issue:
1.    Click Tools, and then click Internet Options.
2.    Click the Programs tab, and then click Manage add-ons.
3.    Click an add-on in the Name list, and then click Disable.
4.    Repeat step 3 until you identify the add-on that is causing the issue.
Let me know if this resolves the issue. 
THX

Similar Messages

  • Has anyone seen the following on their WP? Message from webpage WARNING: Time Warner Cable Customer – Your Internet Explorer browser and  computer may be compromised by security threats. Call 844-600-6224 now for IMMEDIATE assistance.  OK

    Has anyone seen the following on their WP?
    Message from webpage
    WARNING: Time Warner Cable Customer –
    Your Internet Explorer browser and
    computer may be compromised by
    security threats. Call 844-600-6224 now for
    IMMEDIATE assistance.
    OK

    This sounds like a virus or malware program that has made its way onto your computer.  I would ensure you have the latest virus definitions on your computer and run a thorough (complete) scan of your system.  If this doesn't work, I would suggest  you use Microsoft's Malware Removal Tool.  You can download it at the link below.   Hope this helps.
    http://www.microsoft.com/security/pc-security/malware-removal.aspx

  • Vba to dismiss an IE8 or IE9 "message from webpage" popup window

    In excel or word, paste the following code into a vba normal module and run it.   The code goes to a public web site and tries to lookup a school.  The website pops up a "message from webpage" dialog that warns me that the the school
    number is not valid.
    My program can detect that popup, but how can I reliably and automatically dismiss it?
    I have a workaround that uses sendkeys but about 10% of the time the popup remains.
    Does anybody have a solution that does NOT require sendkeys? The ideal solution would also work when objie.visible = false.
    option Explicit
    Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Sub t1022()
    Dim objie As Object
    Dim i As Long
    Dim htmlTable As htmlTable ' set reference to microsoft html object library
    Set objie = CreateObject("InternetExplorer.Application")
    objie.Visible = True
    objie.navigate "http://www.slforms.universalservice.org/Form471Expert/471StatusCheck.aspx"
    Do: Sleep 100: Loop While objie.busy
    Set htmlTable = objie.Document.getElementsByName("txtBenId")(0)
    htmlTable.Value = 12345
    With objie.Document.getElementById("txtFundingYear")
    .Click
    .Value = 2013
    End With
    objie.Document.getElementById("btnSearch").Click
    For i = 1 To 10
    Sleep 100
    If Not objie.busy Then Exit For
    Next i
    If objie.busy Then
    MsgBox "popup detected"
    End If
    End Sub

    Hi,
    If there is a will, there is definitely as way. The following definitely works!
    Copy and paste the following code in a module.
    Option Explicit
    Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    'Sends the specified message to a window or windows. The SendMessage function calls the window procedure
    'for the specified window and does not return until the window procedure has processed the message.
    Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" _
    (ByVal hWND As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
    'Retrieves a handle to the top-level window whose class name and window name match the specified strings.
    'This function does not search child windows. This function does not perform a case-sensitive search.
    Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" _
    (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    'Retrieves a handle to a window whose class name and window name match the specified strings.
    'The function searches child windows, beginning with the one following the specified child window.
    'This function does not perform a case-sensitive search.
    Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, _
    ByVal lpsz2 As String) As Long
    Public Const BM_CLICK = &HF5&
    Sub t1022()
    Dim objie As Object
    Dim i As Long, hWND As Long, childHWND As Long
    Dim htmlTable As htmlTable ' set reference to microsoft html object library
    Set objie = CreateObject("InternetExplorer.Application")
    objie.Visible = True
    objie.navigate "http://www.slforms.universalservice.org/Form471Expert/471StatusCheck.aspx"
    Do: Sleep 100: Loop While objie.busy
    Set htmlTable = objie.Document.getElementsByName("txtBenId")(0)
    htmlTable.Value = 12345
    With objie.Document.getElementById("txtFundingYear")
    .Click
    .Value = 2013
    End With
    objie.Document.getElementById("btnSearch").Click
    For i = 1 To 10
    Sleep 100
    If Not objie.busy Then Exit For
    Next i
    If objie.busy Then
    'MsgBox "popup detected"
    DoEvents
    hWND = FindWindow(vbNullString, "Message from webpage")
    If hWND <> 0 Then childHWND = FindWindowEx(hWND, ByVal 0&, "Button", "OK")
    If childHWND <> 0 Then SendMessage childHWND, BM_CLICK, 0, 0
    End If

  • Need help with an automating a "Message from webpage" click.

    Any help would be appreciated. I guess I would consider myself as a beginner with VB.NET.
    Basically - My program launches an internet explorer window. Points to a specific webpage that has records. Finds the "check all" and clicks it, then finds and clicks "delete".
    I am stuck at this part. A "Message from webpage" pops up wanting to confirm the deletion of the records. I have 50 records per page and an excess of 14,000 records each day that need to be deleted. I do not have time to click OK on every single
    page.
    I have tried to sendkey function, which worked for a while but for some odd reason, it quit working. Someone suggested using API, which I know nothing about. Please help me! I am desperate!
    Here is my code. I know the "threading.thread.sleep" isn't good to use but I need someway to pause. Like i said, I am a beginner, so please be easy!
    Public Class Form1
    Dim oInputs As Object
    Dim oWShell As Object
    Private Sub btndel_Click(sender As Object, e As EventArgs) Handles btndel.Click
    With CreateObject("InternetExplorer.Application")
    .visible = True
    .navigate("WEDPAGE GOES HERE!")
    Threading.Thread.Sleep(3000)
    oInputs = .document.getElementsbytagname("a")
    For Each elm In oInputs
    If InStr(elm.innertext, "(Un)Check All") > 0 Then
    elm.click()
    Exit For
    End If
    Next
    For Each elm In oInputs
    If InStr(elm.innertext, "Delete") > 0 Then
    elm.click()
    Exit For
    End If
    Next
    Do While .busy Or .readystate <> 4
    Threading.Thread.Sleep(2000)
    Loop
    End With
    Dim objShell = CreateObject("WScript.Shell")
    Dim Success = objShell.AppActivate("Message from webpage")
    Do Until Success = True
    Threading.Thread.Sleep(1000)
    Success = objShell.AppActivate("Message from webpage")
    Loop
    Application.DoEvents()
    AppActivate("Message from webpage")
    SendKeys.Send("{ENTER}")
    End Sub

    Hi msnyder1112,
    Thank you for posting in MSDN forum.
    Since this issue is related to the VB.NET, so we will move this case to VB forum:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral , you will get better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • "Message from Webpage (error) There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."

    I created a site column at the root of my site and I have publishing turned on.  I selected the Hyperlink with formatting and constraints for publishing.
    I went to my subsite and added the column.  The request was to have "Open in new tab" for their hyperlinks.  I was able to get the column to be added and yesterday we added items without a problem. 
    The problem arose when, today, a user told me that he could not edit the hyperlink.  He has modify / delete permissions on this list.
    He would edit the item, in a custom list, and click on the address "click to add a new hyperlink" and then he would get the error below after succesfully putting in the Selected URL (http://www.xxxxxx.com), Open
    Link in New Window checkbox, the Display Text, and Tooltip:
    "Message from Webpage  There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."
    We are on IE 9.0.8.1112 x86, Windows 7 SP1 Enterprise Edition x64
    The farm is running SharePoint 2010 SP2 Enterprise Edition August 2013 CU Mark 2, 14.0.7106.5002
    and I saw in another post, below with someone who had a similar problem and the IISreset fixed it, as did this problem.  I wonder if this is resolved in the latest updated CU of SharePoint, the April 2014 CU?
    Summary from this link below: Comment out, below, in AssetPickers.js
    //callbackThis.VerifyAnchorElement(HtmlElement, Config);
    perform IISReset
    This is referenced in the item below:
    http://social.technet.microsoft.com/Forums/en-US/d51a3899-e8ea-475e-89e9-770db550c06e/message-from-webpage-error-there-was-an-error-in-the-browser-while-setting?forum=sharepointgeneralprevious
    TThThis is possibly the same information that I saw, possibly from the above link as reference.
    http://seanshares.com/post/69022029652/having-problems-with-sharepoint-publishing-links-after
    Again, if I update my SharePoint 2010 farm to April 2014 CU is this going to resolve the issue I have?
    I don't mind changing the JS file, however I'd like to know / see if there is anything official regarding this instead of my having to change files.
    Thank you!
    Matt

    We had the same issue after applying the SP2 & August CU. we open the case with MSFT and get the same resolution as you mentioned.
    I blog about this issue and having the office reference.
    Later MSFT release the Hotfix for this on December 10, 2013 which i am 100% positive should be part of future CUs.
    So if you apply the April CU then you will be fine.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • MAX - Message from Webpage

    Greetings Everyone,
         Sorry if this has been posted in the incorrect forum.
         When I am using MAX and select the Calibration Tab for the PXI-5114 or PXI-4065 a dialogue box "Message from Webpage" appears as displayed in the attached picture.  I've installed Labview and TestStand on two (2) other stations and haven't encountered this issue.  Other than re-installing the entire software package as the message states, is there a way to resolve this issue easily?  Thank you in advance for any comments that you may provide.
    Regards,
    Scott
    Attachments:
    MAX_MessageFromWebpage3.JPG ‏52 KB

    Hi Joshua,
         The funny thing is that starting MAX and then clicking through the tree and clicking on "4:NI PXI-4065 "PXI1Slot4", the Show Help in the upper right corner is un-ghosted.  Once you click on the "Calibration" Tab, then the message from webpage appears.
         Since you mentioned the Help in the far right, I clicked on that before clicking the Calibration Tab and I get the same message.  The funny part is the Help file appears.  I guess if the Helpasst.dll can't be found is not hurting the performance of the software then I guess I won't worry about it unless some else out there thinks otherwise.  Thank you for your comment.
    Regards,
    Scott

  • HT1750 I changed the keyboard language from English to Vietnamese, then the computer went into slee. I turn it on, it asks for the password, but the keyboard doesn't take vowels. what can I do?

    I changed the keyboard language from English to Vietnamese, then the computer went into slee. I turn it on, it asks for the password, but the keyboard doesn't take vowels. what can I do?

    You may want to wait for others to see this thread who might offer some other suggestions, but you could consider resetting the password. These instructions work for Lion (10.7.x) and Mountain Lion (10.8.x).
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/

  • I changed the keyboard language from English to Vietnamese, then the computer went into sleep. I turn it on, it asks for the password, but the keyboard doesn't take vowels. what can I do?

    I changed the keyboard language from English to Vietnamese, then the computer went into sleep. I turn it on, it asks for the password, but the keyboard doesn't take vowels. what can I do?

    You may want to wait for others to see this thread who might offer some other suggestions, but you could consider resetting the password. These instructions work for Lion (10.7.x) and Mountain Lion (10.8.x).
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/

  • TimeSheet - Message from webpage __error Loading

    Hi,
    In Project Server 2013 we notice that for some users tasks (from some projects) cannot be added to the TimeSheet. After the user selects the specific task the browser displays the message:
    Message from webpage
    __Error Loading
    The log files don't seem to mention anything and turning on the compatibility view mode for this web address doesn't solve this issue either.
    Hope somebody can help us out.
    Rgds, Frank 
    Frank Jutte Winvision (http://www.winvision.nl) Project Manager / EPM Consultant

    Hi Frank,
    It can be due to many reasons. Which IE version are those users working with?
    First check for those users' permissions
    Check that the users' projects and/or assignments has not been delete in the project
    Try to delete the timesheet (or recall if submitted)
    Try to delete in Project Pro assignments and tasks and create them again
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • TS2755 I would like to know how I can save a years worth of text messages from my iphone 4s to my computer. (I have verizon as a carrier)

    Hey:
    Hi everyone.
    would like to know how I can save a years worth of text messages from my iphone 4s to my computer.
    (I have Verizon Wireless as a carrier), I have tried the app store but it is okay for one messgae but not for hundreds.
    Can you help me.
    Thank you in advance. Happy Thanks Giving.

    There is no Apple provided way to save text messages to a computer.
    The iPhone backup done via iTunes or iCloud, will backup the messages but they are not accessible on the computer.
    A google search may reveal options to saving the messages to the computer.

  • I want to use ODI to read XML messages from JMS queue and then process it..

    I want to use oracle ODI (Oracle Data Integrator) to read XML messages from JMS queue and then process it.. i also want to process and validate the data in it....
    Could anyone please tell me the steps to achieve the same. I tried some ways which i got on OTN, but not able to implement it exactly...
    As i m very new to ODI, it will be great if you provide detailed steps..
    Thanks in advance for your help....

    Hi,
    Were you able to do it? We are facing this same issue now and, despite the fact the docs say otherwise, it does not seem to be a trivial task.
    TIA,
    Tedi

  • Message from webpage

    Keep getting an error after logging into a web site.
    "Message from webpage". " ! the following error occurred:error" There is an "OK" response box.
    The page freezes and none of the options function.
    This error occurs on a laptop running Windows 7 with Internet Explorer 11. [Version 11.0.9600.17501] [Update 11.0.15 (KB3008923)]
    This error does not occur on a laptop running Windows 8.
    Why?

    Hi,
    Did this issue for all websites or specific one?
    Please follow these methods to troubleshoot:
    1. Install the latest updates
    2. Run the Internet Explorer Performance troubleshooter
    3. Turn off hardware acceleration
    4. Turn off add-ons
    5. Reset Internet Explorer settings
    The detailed steps, refer to this guide(Internet Explorer crashes, freezes, or hangs):
    What to do when Internet Explorer isn't working
    http://windows.microsoft.com/en-in/internet-explorer/ie-crashes-stops-working#ie=ie-11
    Karen Hu
    TechNet Community Support

  • MacBook  Pro screen glitches out, gray lines appear on it then my computer freezes and must be restarted sometimes it will beep 3 times when restarting and other times it won't. Is this a virus?

    I have a MacBook Pro running mavericks. Sometimes the screen glitches out, gray lines appear on it then my computer freezes and must be restarted sometimes it will beep 3 times when restarting and other times it won't. Is this a virus, software issue, water damage, etc? An error message usually appears after being restarted. It does it all the time please help.

    No Virus. You have a Hardware Problem. 3 Beeps means a RAM problem. You could try Reseating the RAM is its sockets.
    But that wouldn't necessarily cause the screen to Glitch Out, as you say.

  • How to delete messages from IMAP server but keep on computer???

    Hi
    I am using Mail to receive my email messages from the University's IMAP server. My problem is that I need to keep copies of my sent and received emails for archives on my computer but not on the server because space is limited. However, when I check the 'remove messages from server' box in the preferences, it also removes them all from my Mail inbox and sent mail folders. Consequently, I'm constantly needing to go to the server (once a week) and manually delete the messages when my folder is too full and then I lose all of my messages.
    Can someone please tell me how I can keep all of my sent, received and trashed emails on my computer without them being stored on the server?
    thanks
    adam

    Eric is right. An IMAP account is designed specifically to keep email on line, on a server somewhere on the planet. That way you can use any machine anywhere and see your email. A POP account is designed to actually download your email to the specific machine that you are using and remove it from the server. Although there are ways around that...
    So if you want to keep an email on your computer and you want to delete it from the server, you have to make an "On my Mac" mailbox.

  • Many sites have error message "message from webpage" {object error} which freezes system and cont/alt/del is only solution..HELP?

    Primarily happens when I am researching on the web, happens with IE and Google. Makes no difference if site is secure (s) or not. Running windows 7 home edition on a samsung laptop and have cleaned with Advanced SystemCare 6. Have also used Smart Defrag 2. Could it be my internet connection?

    '''Try the Firefox Safe Mode''' to see how it works there. The 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 the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the 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.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

Maybe you are looking for

  • My iPad just shut off won't turn back on;(

    Help! My iPad just shut off wont charge or come back on?  Whhaaaaa

  • Open iWeb '08 site in iWeb 09

    I am trying to add new material to my existing web site (created in iWeb '08). But I don't know how to open the site in iWeb '09. Unfortunately, the "Domain" has been overwritten the first time I opened iWeb '09. How can I migrate an iWeb html page i

  • LTD- monthly salary cap

    We have a requirement at my company related to LTD, whereas anyone making an annual salary of $120,000 or more would have a monthly salary cap of $10,000 (12 x 10,000 = 120000). I have tried defining this in the coverage rules but this does not seem

  • BC and Dreamweaver CS4 template file extensions

    I'm building a site suing BC extension for Dreamweaver CS4, but I can't get the templates to work. If I create them in Dreamweaver with the .dwt file extension, BC doesn't recognise them when they are uploaded. If I create them in BC control panel, t

  • FDM Installation/Reinstallation issues

    We originally installed FDM 11.1.1 however the HFM adapter did not register properly and we were instructed to uninstall/reinstall. We've done this countless times without success. At the end of every installation we are left with no Task Manager Ser