Ask a Question related to Macromedia Shockwave, Design and Development.

  1. #1

    Default Error Message

    When I first turn my computer on, and it starts up and
    gets to the desktop the following error message appears in
    the botton right hand corner:

    "Devices or applications disabled.
    CD recording software will cause Windows to become
    unstable. Windows has prevented these drivers from
    loading. Click here for more details"

    Any ideas as to what I may have done to make this error
    message appear, and do you know how I can resolve it?

    Many thanks.

    Lorraine
    lorraine Guest

  2. Similar Questions and Discussions

    1. How To Supress Acrobat Error Message And Alert Message
      Is there any way to supress those pop up message? If can't, is there any way to catch it?
    2. error message: Microsoft JScript compilation error '800a03ec'
      Recieved following error message: Microsoft JScript compilation error '800a03ec' Expected ';' ...
    3. Error Message When Sending Message In Windows Mail
      Am I the only one getting an error message when replying to a posted message using Windows Mail. Every time I send a message I get a popup error...
    4. Error Message "A drawing error ocurrred which is probably due to an out-of-memory condition. Try qu
      I am running Acrobat Reader 5.0 on a Mac Powerbook running OS 9.2 and keep getting "A drawing error occurred which is probably due to an out of...
    5. ODBC has error but no error message displayed
      Hi All.. This is a strange one that I hope someone has come across. I have an asp.net application that needs to access a flat file databse via...
  3. #2

    Default Error Message

    I have the same problem, but it does not provide me with
    a list of the problem files. It gives me three possible
    programs that could be causing the problem, two that I
    don't have and one is windows media player. Any thoughts?
    >-----Original Message-----
    >i had this problem myself. you probably have music
    burning
    >software installed which is not compatible with xp. in
    my
    >case it was easy cd creater. if you click on more
    details,
    >it should list the files which are causing the problem.
    >click start,click search, enter the first file name and
    >click search all files and folders. the file should then
    >be found and if you right click on it you can select
    >delete to get rid of it. if more than one file is
    causing
    >problems repeat the process for each file. you may have
    to
    >reboot afterwards
    >>-----Original Message-----
    >>When I first turn my computer on, and it starts up and
    >>gets to the desktop the following error message appears
    >in
    >>the botton right hand corner:
    >>
    >>"Devices or applications disabled.
    >>CD recording software will cause Windows to become
    >>unstable. Windows has prevented these drivers from
    >>loading. Click here for more details"
    >>
    >>Any ideas as to what I may have done to make this error
    >>message appear, and do you know how I can resolve it?
    >>
    >>Many thanks.
    >>
    >>Lorraine
    >>.
    >>
    >.
    >
    Jennifer Guest

  4. #3

    Default Re: Error Message

    What does "Click here for more details" say???

    "lorraine" <lorraine@dunger.org> wrote in message
    news:45a601c340c1$7f613a50$a401280a@phx.gbl...
    > When I first turn my computer on, and it starts up and
    > gets to the desktop the following error message appears in
    > the botton right hand corner:
    >
    > "Devices or applications disabled.
    > CD recording software will cause Windows to become
    > unstable. Windows has prevented these drivers from
    > loading. Click here for more details"
    >
    > Any ideas as to what I may have done to make this error
    > message appear, and do you know how I can resolve it?
    >
    > Many thanks.
    >
    > Lorraine

    Donald Link Guest

  5. #4

    Default error message

    Hello I am getting the following error message: Microsoft VBScript runtime (0x800A01A8)
    Object required: ''''
    /delete_entry.asp, line 17

    When I try to delete a record. The following is the code to the delete_entry.asp page.
    <%
    Dim adoCon
    Dim rsDeleteEntry
    Dim strSQL
    Dim IngRecordNo

    IngRecordNo = CLng(Request.QueryString("ID_no"))

    Set adoCon = Server.CreateObject("ADODB.Connection")

    adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("ccalls.mdb")

    Set reDeleteEntry = Server.CreateObject("ADODB.Recordset")

    strSQL = "SELECT calltable.* FROM calltable WHERE ID_no=" & IngRecordNo

    rsDeleteEntry.LockType = 3
    rsDeleteEntry.Open strSQL, adoCon
    rsDeleteEntry.Delete
    rsDeleteEntry.Close

    Set ccalls = Nothing
    Set adoCon = Nothing
    Response.Redirect "deleteselect.asp"
    %>

    Any ideals what I am doing wrong?

    Thanks Tim

    -----------------------------
    This message is posted by [url]http://Asp.ForumsZone.com[/url]

    Tim Midgett Guest

  6. #5

    Default Re: error message

    How about a much more efficient approach:




    sql = "DELETE calltable WHERE ID_no=" & _
    CLng(Request.QueryString("ID_no"))

    Set conn = Server.CreateObject("ADODB.Connection")
    conn.open "DRIVER= ... "
    conn.execute sql,,129
    conn.close: set conn = nothing





    (The problem, by the way, is that line 17 has this...
    > Set ccalls = Nothing
    .... but you don't have an object called ccalls to destroy.)




    "Tim Midgett" <tmidgett@unitedfidelity.com> wrote in message
    news:27579760168678@Asp.ForumsZone.com...
    > Hello I am getting the following error message: Microsoft VBScript runtime
    (0x800A01A8)
    > Object required: ''''
    > /delete_entry.asp, line 17
    >
    > When I try to delete a record. The following is the code to the
    delete_entry.asp page.
    > <%
    > Dim adoCon
    > Dim rsDeleteEntry
    > Dim strSQL
    > Dim IngRecordNo
    >
    > IngRecordNo = CLng(Request.QueryString("ID_no"))
    >
    > Set adoCon = Server.CreateObject("ADODB.Connection")
    >
    > adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" &
    Server.MapPath("ccalls.mdb")
    >
    > Set reDeleteEntry = Server.CreateObject("ADODB.Recordset")
    >
    > strSQL = "SELECT calltable.* FROM calltable WHERE ID_no=" & IngRecordNo
    >
    > rsDeleteEntry.LockType = 3
    > rsDeleteEntry.Open strSQL, adoCon
    > rsDeleteEntry.Delete
    > rsDeleteEntry.Close
    >
    > Set ccalls = Nothing
    > Set adoCon = Nothing
    > Response.Redirect "deleteselect.asp"
    > %>
    >
    > Any ideals what I am doing wrong?
    >
    > Thanks Tim
    >
    > -----------------------------
    > This message is posted by [url]http://Asp.ForumsZone.com[/url]
    >

    Aaron Bertrand - MVP Guest

  7. #6

    Default Re: error message

    See here. [url]http://www.aspfaq.com/5003[/url]
    Then see .vbscript group.

    Ray at work

    "Tim Midgett" <tmidgett@unitedfidelity.com> wrote in message
    news:27579760168678@Asp.ForumsZone.com...
    > Hello I am getting the following error message: Microsoft VBScript runtime
    (0x800A01A8)
    > Object required: ''''
    > /delete_entry.asp, line 17
    >
    > When I try to delete a record. The following is the code to the
    delete_entry.asp page.
    > <%
    > Dim adoCon
    > Dim rsDeleteEntry
    > Dim strSQL
    > Dim IngRecordNo
    >
    > IngRecordNo = CLng(Request.QueryString("ID_no"))
    >
    > Set adoCon = Server.CreateObject("ADODB.Connection")
    >
    > adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" &
    Server.MapPath("ccalls.mdb")
    >
    > Set reDeleteEntry = Server.CreateObject("ADODB.Recordset")
    >
    > strSQL = "SELECT calltable.* FROM calltable WHERE ID_no=" & IngRecordNo
    >
    > rsDeleteEntry.LockType = 3
    > rsDeleteEntry.Open strSQL, adoCon
    > rsDeleteEntry.Delete
    > rsDeleteEntry.Close
    >
    > Set ccalls = Nothing
    > Set adoCon = Nothing
    > Response.Redirect "deleteselect.asp"
    > %>
    >
    > Any ideals what I am doing wrong?
    >
    > Thanks Tim
    >
    > -----------------------------
    > This message is posted by [url]http://Asp.ForumsZone.com[/url]
    >

    Ray at Guest

  8. #7

    Default Re: error message


    I replace the ccalls with DeleteEntry which is the way I had it to start
    with. I still get the same message. I am going to try to use the code
    you gave me to see if I can get it to work. I am new to asp and I am
    teaching myself(along with the internet and some books).
    I will give it a try thank for the help. :)
    Thanks Tim


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Tim Midgett Guest

  9. #8

    Default Re: Error message

    Check if there is a max size set on the tempdb database. If so change it to
    default which is unlimited. In certain cases the physical file where the
    tempdb resides has to be increased. You can also set the tempdb data files
    to grow automatically. Use ALTER DATABASE ... ADD FILE statement to add
    files to the filegroup where tempdb resides. For more details refer to the
    topic Expanding a Database in SQL Server Books Online.

    --
    - Anith
    ( Please reply to newsgroups only )


    Anith Sen Guest

  10. #9

    Default error message

    Error 1606 could not access network location <common
    administrative tools>.all users\. I found out its an msi
    installer how do i delete it or how can I resolve this
    problem, can't install any downloads until I get rid of
    it thanks for any help , please advise thank you.
    jack Guest

  11. #10

    Default Re: error message

    One of the first places we look for answers is the Microsoft Knowledge Base.
    It's an amazing resource (and just part of the enormous amount of helpful
    information on the Microsoft web site). Your question is discussed here:

    ""Error 1606. Could Not Access Network Location <Common Administrative
    Tools>.All Users\" Error Message When You Install a Program"
    [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;315352[/url]

    Mike Mulligan

    "jack" <finakey11@charter.net> wrote in message
    news:034c01c34a49$b5517b70$a401280a@phx.gbl...
    > Error 1606 could not access network location <common
    > administrative tools>.all users\. I found out its an msi
    > installer how do i delete it or how can I resolve this
    > problem, can't install any downloads until I get rid of
    > it thanks for any help , please advise thank you.

    Mike Mulligan Guest

  12. #11

    Default error message

    An error message reading p2p networking can't start
    server keeps popping up on my screen every 30 seconds.
    How can I get rid of it?
    Karla Guest

  13. #12

    Default error message

    p2p networking can't start server error message keeps
    popping up on my screen every 30 seconds. How can I get
    rid of it?
    Karla Guest

  14. #13

    Default Error Message

    I keep getting a message telling me in the middle of a
    programme the Microsoft has to close down the programme I
    am using and there are 2 boxes to report the error or not
    send, I keep losing the programme thie is annoying, I do
    not know a great deal about computers and would like to
    know why I keep getting this message, Thanks.
    Patricia Guest

  15. #14

    Default Error Message

    Hello Patricia,

    Unfortunately that could really be anything. Is the
    program you are trying to use a popular program (i.e.
    Word, Excel, Photoshop, Acrobat ect...)? Best bet for you
    is to possibly uninstall the program (be sure to back up
    your data and/or program settings) and then re-install
    the program that you are having difficulty with. Maybe go
    to the program vendor and send them an e-mail with your
    problem; be sure to give them your program version along
    with whatever you know about your computer (operating
    system, hardware ect...).

    Hope this helps
    -CB3
    Conrad Guest

  16. #15

    Default Error Message

    I have put a chat site on the web that I have got off here a while
    ago. It contains an access db. I am now getting this error ;
    ADODB.Connection.1 error '800a0bb9'

    The application is using arguments that are of the wrong type, are out
    of acceptable range, or are in conflict with one another.

    /TheChatroom/includes/OpenDB.asp, line 5

    It works on my PC through IIS 6. Does anyone know what is wrong?
    Danny McCarthy Guest

  17. #16

    Default Re: Error Message

    What's on line 5? Are you using a constant that you haven't defined
    anywhere?

    "Danny McCarthy" <Danny.McCarthy@Akcm.Co.Uk> wrote in message
    news:72475385.0308120621.5c76d434@posting.google.c om...
    > I have put a chat site on the web that I have got off here a while
    > ago. It contains an access db. I am now getting this error ;
    > ADODB.Connection.1 error '800a0bb9'
    > The application is using arguments that are of the wrong type, are out
    > of acceptable range, or are in conflict with one another.
    > /TheChatroom/includes/OpenDB.asp, line 5
    > It works on my PC through IIS 6. Does anyone know what is wrong?

    Kris Eiben Guest

  18. #17

    Default Error message

    I have hosted a asp application on a NT 4 server with IIS 4 web server.
    I often get ASP 115 error for this application.

    error 'ASP 0115'

    Unexpected error

    /auslead360/menu.asp

    A trappable error occurred in an external object. The script cannot
    continue running.

    After I restart the server the error doesn't appear for some time, but crops
    up once again after servicing a few requests of the users.

    I checked up MS support site to find a solution. I executed a few relevant
    workarounds/solutions given there but the problem still persists.

    TIA,

    Gary


    Gary Guest

  19. #18

    Default Re: Error message

    iI do remember that from years ago. I remember finding the answer and it
    was just a server problem , an that nothing could be done.

    I remember you had to reboot.

    Haven't seen that in a long time. I have been off of NT4 for quite a while.
    Suggest you do the same.

    "Gary" <msnews@microsoft.com> wrote in message
    news:%23ofGn7BeDHA.2748@TK2MSFTNGP11.phx.gbl...
    > I have hosted a asp application on a NT 4 server with IIS 4 web server.
    > I often get ASP 115 error for this application.
    >
    > error 'ASP 0115'
    >
    > Unexpected error
    >
    > /auslead360/menu.asp
    >
    > A trappable error occurred in an external object. The script cannot
    > continue running.
    >
    > After I restart the server the error doesn't appear for some time, but
    crops
    > up once again after servicing a few requests of the users.
    >
    > I checked up MS support site to find a solution. I executed a few
    relevant
    > workarounds/solutions given there but the problem still persists.
    >
    > TIA,
    >
    > Gary
    >
    >

    Bite My Bubbles Guest

  20. #19

    Default Re: Error message

    You can use this tool:
    [url]http://www.iisfaq.com/default.aspx?view=P197[/url]

    Post the output to [url]news://microsoft.public.inetserver.iis[/url]

    Cheers
    Ken


    "Gary" <msnews@microsoft.com> wrote in message
    news:%23ofGn7BeDHA.2748@TK2MSFTNGP11.phx.gbl...
    : I have hosted a asp application on a NT 4 server with IIS 4 web server.
    : I often get ASP 115 error for this application.
    :
    : error 'ASP 0115'
    :
    : Unexpected error
    :
    : /auslead360/menu.asp
    :
    : A trappable error occurred in an external object. The script cannot
    : continue running.
    :
    : After I restart the server the error doesn't appear for some time, but
    crops
    : up once again after servicing a few requests of the users.
    :
    : I checked up MS support site to find a solution. I executed a few
    relevant
    : workarounds/solutions given there but the problem still persists.
    :
    : TIA,
    :
    : Gary
    :
    :


    Ken Schaefer Guest

  21. #20

    Default Error message


    Dear All,

    I have received the following error when typing onstat -

    ################################################## ########################
    Incorrectly built binary which accesses errno, h_errno or _res directly.
    Needs to be fixed.
    ################################################## ########################

    I am running Red Hat 9. Can you please give me some advice on how to fix
    it.

    Thank you,
    Dorn B.


    sending to informix-list
    Dorn Bhechsonggram Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139