Ask a Question related to Macromedia Shockwave, Design and Development.
-
lorraine #1
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
-
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? -
error message: Microsoft JScript compilation error '800a03ec'
Recieved following error message: Microsoft JScript compilation error '800a03ec' Expected ';' ... -
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... -
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... -
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... -
Jennifer #2
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?
burning>-----Original Message-----
>i had this problem myself. you probably have musicmy>software installed which is not compatible with xp. indetails,>case it was easy cd creater. if you click on morecausing>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 isto>problems repeat the process for each file. you may have>reboot afterwards>in>>-----Original Message-----
>>When I first turn my computer on, and it starts up and
>>gets to the desktop the following error message appears>.>>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
-
Donald Link #3
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
-
Tim Midgett #4
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
-
Aaron Bertrand - MVP #5
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...
.... but you don't have an object called ccalls to destroy.)> Set ccalls = Nothing
"Tim Midgett" <tmidgett@unitedfidelity.com> wrote in message
news:27579760168678@Asp.ForumsZone.com...(0x800A01A8)> Hello I am getting the following error message: Microsoft VBScript runtimedelete_entry.asp page.> Object required: ''''
> /delete_entry.asp, line 17
>
> When I try to delete a record. The following is the code to theServer.MapPath("ccalls.mdb")> <%
> 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=" &>
> 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
-
Ray at #6
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...(0x800A01A8)> Hello I am getting the following error message: Microsoft VBScript runtimedelete_entry.asp page.> Object required: ''''
> /delete_entry.asp, line 17
>
> When I try to delete a record. The following is the code to theServer.MapPath("ccalls.mdb")> <%
> 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=" &>
> 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
-
Tim Midgett #7
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
-
Anith Sen #8
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
-
jack #9
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
-
Mike Mulligan #10
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
-
Karla #11
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
-
Karla #12
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
-
Patricia #13
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
-
Conrad #14
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
-
Danny McCarthy #15
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
-
Kris Eiben #16
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
-
Gary #17
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
-
Bite My Bubbles #18
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...crops> 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, butrelevant> 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> workarounds/solutions given there but the problem still persists.
>
> TIA,
>
> Gary
>
>
Bite My Bubbles Guest
-
Ken Schaefer #19
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
-
Dorn Bhechsonggram #20
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



Reply With Quote

