473,410 Members | 1,914 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,410 software developers and data experts.

Access Database Connection probs

Hi there,

i am creating a database driven login page. I am using code that has been
successful in the past, however when i upload it to our web server it
displys the following message in the page =

******
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread 0x870
DBC 0xefde024 Jet'.

/BF/Premium_Login.asp, line 268

******

What does this mean? am i missing something? as you can see in the following
code it is not connecting via DSN/ODBC

*****

Set DataConnection = Server.CreateObject("ADODB.Connection")
DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _
"DBQ=" & Session("DatabasePath") & ";"

*****

Hope u guys can help....

Thanks

--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
Jul 19 '05 #1
13 1843
http://www.aspfaq.com/show.asp?id=2154

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
Hi there,

i am creating a database driven login page. I am using code that has been
successful in the past, however when i upload it to our web server it
displys the following message in the page =

******
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread 0x870
DBC 0xefde024 Jet'.

/BF/Premium_Login.asp, line 268

******

What does this mean? am i missing something? as you can see in the following code it is not connecting via DSN/ODBC

*****

Set DataConnection = Server.CreateObject("ADODB.Connection")
DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _
"DBQ=" & Session("DatabasePath") & ";"

*****

Hope u guys can help....

Thanks

--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.

Jul 19 '05 #2
Stop using the Access driver, and use JET/OLEDB instead.

http://www.aspfaq.com/2154
http://www.aspfaq.com/2009
http://www.aspfaq.com/2009

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
Hi there,

i am creating a database driven login page. I am using code that has been
successful in the past, however when i upload it to our web server it
displys the following message in the page =

******
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread 0x870
DBC 0xefde024 Jet'.

/BF/Premium_Login.asp, line 268

******

What does this mean? am i missing something? as you can see in the following code it is not connecting via DSN/ODBC

*****

Set DataConnection = Server.CreateObject("ADODB.Connection")
DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _
"DBQ=" & Session("DatabasePath") & ";"

*****

Hope u guys can help....

Thanks

--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.

Jul 19 '05 #3
thanks for the response guys, most appreciated

The following message now appears, does the db need to be in the root folder
of the site?
I have tried specifying the file as a URL and File Location...

Any ideas?
Microsoft JET Database Engine error '80004005'

'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure that
the path name is spelled correctly and that you are connected to the server
on which the file resides.

/BF/Premium_Login.asp, line 268

Thanks
--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:eL**************@TK2MSFTNGP10.phx.gbl...
Stop using the Access driver, and use JET/OLEDB instead.

http://www.aspfaq.com/2154
http://www.aspfaq.com/2009
http://www.aspfaq.com/2009

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
Hi there,

i am creating a database driven login page. I am using code that has been successful in the past, however when i upload it to our web server it
displys the following message in the page =

******
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread 0x870 DBC 0xefde024 Jet'.

/BF/Premium_Login.asp, line 268

******

What does this mean? am i missing something? as you can see in the

following
code it is not connecting via DSN/ODBC

*****

Set DataConnection = Server.CreateObject("ADODB.Connection")
DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _
"DBQ=" & Session("DatabasePath") & ";"

*****

Hope u guys can help....

Thanks

--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.


Jul 19 '05 #4
You're not specifying a path to the database, either by using the full path
or server.mappath("/premium/security.mdb").

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
thanks for the response guys, most appreciated

The following message now appears, does the db need to be in the root folder of the site?
I have tried specifying the file as a URL and File Location...

Any ideas?
Microsoft JET Database Engine error '80004005'

'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.

/BF/Premium_Login.asp, line 268

Thanks
--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:eL**************@TK2MSFTNGP10.phx.gbl...
Stop using the Access driver, and use JET/OLEDB instead.

http://www.aspfaq.com/2154
http://www.aspfaq.com/2009
http://www.aspfaq.com/2009

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
Hi there,

i am creating a database driven login page. I am using code that has been successful in the past, however when i upload it to our web server it
displys the following message in the page =

******
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread 0x870 DBC 0xefde024 Jet'.

/BF/Premium_Login.asp, line 268

******

What does this mean? am i missing something? as you can see in the

following
code it is not connecting via DSN/ODBC

*****

Set DataConnection = Server.CreateObject("ADODB.Connection")
DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _
"DBQ=" & Session("DatabasePath") & ";"

*****

Hope u guys can help....

Thanks

--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.



Jul 19 '05 #5
On Thu, 22 Jan 2004 16:31:08 -0000, "Guy Hocking"
<gu*@ANTIbradflack.SPAMcom> wrote:
thanks for the response guys, most appreciated

The following message now appears, does the db need to be in the root folder
of the site?
I have tried specifying the file as a URL and File Location...

Any ideas?
Microsoft JET Database Engine error '80004005'

'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure that
the path name is spelled correctly and that you are connected to the server
on which the file resides.

/BF/Premium_Login.asp, line 268


Once again...

http://www.aspfaq.com/2009

Hint: Most likely, the C:\WINNT\System32\Premium folder doesn't have
permissions for the IUSR/IWAM account actually accessing it. Pretty
much just as the FAQ says.

Jeff
Jul 19 '05 #6
thanks guys, sorry, i am guilty as charged of only reading the connection
bit in the FAQ....

My apologies
Thanks for your excellent service
--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:40****************@msnews.microsoft.com...
On Thu, 22 Jan 2004 16:31:08 -0000, "Guy Hocking"
<gu*@ANTIbradflack.SPAMcom> wrote:
thanks for the response guys, most appreciated

The following message now appears, does the db need to be in the root folderof the site?
I have tried specifying the file as a URL and File Location...

Any ideas?
Microsoft JET Database Engine error '80004005'

'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure thatthe path name is spelled correctly and that you are connected to the serveron which the file resides.

/BF/Premium_Login.asp, line 268


Once again...

http://www.aspfaq.com/2009

Hint: Most likely, the C:\WINNT\System32\Premium folder doesn't have
permissions for the IUSR/IWAM account actually accessing it. Pretty
much just as the FAQ says.

Jeff

Jul 19 '05 #7
REad this immediately.
http://www.aspfaq.com/show.asp?id=2454

I just downloaded your database with little trouble.

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
thanks for the response guys, most appreciated

The following message now appears, does the db need to be in the root folder of the site?
I have tried specifying the file as a URL and File Location...

Any ideas?
Microsoft JET Database Engine error '80004005'

'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.

/BF/Premium_Login.asp, line 268

Thanks
--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:eL**************@TK2MSFTNGP10.phx.gbl...
Stop using the Access driver, and use JET/OLEDB instead.

http://www.aspfaq.com/2154
http://www.aspfaq.com/2009
http://www.aspfaq.com/2009

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
Hi there,

i am creating a database driven login page. I am using code that has been successful in the past, however when i upload it to our web server it
displys the following message in the page =

******
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open
registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread 0x870 DBC 0xefde024 Jet'.

/BF/Premium_Login.asp, line 268

******

What does this mean? am i missing something? as you can see in the

following
code it is not connecting via DSN/ODBC

*****

Set DataConnection = Server.CreateObject("ADODB.Connection")
DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _
"DBQ=" & Session("DatabasePath") & ";"

*****

Hope u guys can help....

Thanks

--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.



Jul 19 '05 #8
WHAT????

What do you mean? how did you do that?
--
Guy
www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:eG**************@TK2MSFTNGP11.phx.gbl...
REad this immediately.
http://www.aspfaq.com/show.asp?id=2454

I just downloaded your database with little trouble.

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
thanks for the response guys, most appreciated

The following message now appears, does the db need to be in the root

folder
of the site?
I have tried specifying the file as a URL and File Location...

Any ideas?
Microsoft JET Database Engine error '80004005'

'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure

that
the path name is spelled correctly and that you are connected to the

server
on which the file resides.

/BF/Premium_Login.asp, line 268

Thanks
--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:eL**************@TK2MSFTNGP10.phx.gbl...
Stop using the Access driver, and use JET/OLEDB instead.

http://www.aspfaq.com/2154
http://www.aspfaq.com/2009
http://www.aspfaq.com/2009

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
> Hi there,
>
> i am creating a database driven login page. I am using code that has

been
> successful in the past, however when i upload it to our web server it > displys the following message in the page =
>
> ******
> Microsoft OLE DB Provider for ODBC Drivers error '80004005'
>
> [Microsoft][ODBC Microsoft Access Driver]General error Unable to open > registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread

0x870
> DBC 0xefde024 Jet'.
>
> /BF/Premium_Login.asp, line 268
>
> ******
>
> What does this mean? am i missing something? as you can see in the
following
> code it is not connecting via DSN/ODBC
>
> *****
>
> Set DataConnection = Server.CreateObject("ADODB.Connection")
> DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _
> "DBQ=" & Session("DatabasePath") & ";"
>
> *****
>
> Hope u guys can help....
>
> Thanks
>
> --
> Guy
>
> www.bradflack.com
>
> Please remove ANTI and SPAM from my
> email address before sending me an email.
>
>



Jul 19 '05 #9
You told us where it was. So anyone can just type in the URL to the
database directly...

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:ea**************@tk2msftngp13.phx.gbl...
WHAT????

What do you mean? how did you do that?
--
Guy
www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:eG**************@TK2MSFTNGP11.phx.gbl...
REad this immediately.
http://www.aspfaq.com/show.asp?id=2454

I just downloaded your database with little trouble.

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
thanks for the response guys, most appreciated

The following message now appears, does the db need to be in the root

folder
of the site?
I have tried specifying the file as a URL and File Location...

Any ideas?
Microsoft JET Database Engine error '80004005'

'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure
that
the path name is spelled correctly and that you are connected to the

server
on which the file resides.

/BF/Premium_Login.asp, line 268

Thanks
--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:eL**************@TK2MSFTNGP10.phx.gbl...
> Stop using the Access driver, and use JET/OLEDB instead.
>
> http://www.aspfaq.com/2154
> http://www.aspfaq.com/2009
> http://www.aspfaq.com/2009
>
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.aspfaq.com/
>
>
>
>
> "Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
> news:uD**************@TK2MSFTNGP12.phx.gbl...
> > Hi there,
> >
> > i am creating a database driven login page. I am using code that
has been
> > successful in the past, however when i upload it to our web server

it > > displys the following message in the page =
> >
> > ******
> > Microsoft OLE DB Provider for ODBC Drivers error '80004005'
> >
> > [Microsoft][ODBC Microsoft Access Driver]General error Unable to open > > registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread 0x870
> > DBC 0xefde024 Jet'.
> >
> > /BF/Premium_Login.asp, line 268
> >
> > ******
> >
> > What does this mean? am i missing something? as you can see in the
> following
> > code it is not connecting via DSN/ODBC
> >
> > *****
> >
> > Set DataConnection = Server.CreateObject("ADODB.Connection")
> > DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _ > > "DBQ=" & Session("DatabasePath") & ";"
> >
> > *****
> >
> > Hope u guys can help....
> >
> > Thanks
> >
> > --
> > Guy
> >
> > www.bradflack.com
> >
> > Please remove ANTI and SPAM from my
> > email address before sending me an email.
> >
> >
>
>



Jul 19 '05 #10
Enter the url to your database, and you can download it. Anyone can. Did
you read the article?

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:ea**************@tk2msftngp13.phx.gbl...
WHAT????

What do you mean? how did you do that?
--
Guy
www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:eG**************@TK2MSFTNGP11.phx.gbl...
REad this immediately.
http://www.aspfaq.com/show.asp?id=2454

I just downloaded your database with little trouble.

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
thanks for the response guys, most appreciated

The following message now appears, does the db need to be in the root

folder
of the site?
I have tried specifying the file as a URL and File Location...

Any ideas?
Microsoft JET Database Engine error '80004005'

'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure
that
the path name is spelled correctly and that you are connected to the

server
on which the file resides.

/BF/Premium_Login.asp, line 268

Thanks
--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:eL**************@TK2MSFTNGP10.phx.gbl...
> Stop using the Access driver, and use JET/OLEDB instead.
>
> http://www.aspfaq.com/2154
> http://www.aspfaq.com/2009
> http://www.aspfaq.com/2009
>
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.aspfaq.com/
>
>
>
>
> "Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
> news:uD**************@TK2MSFTNGP12.phx.gbl...
> > Hi there,
> >
> > i am creating a database driven login page. I am using code that
has been
> > successful in the past, however when i upload it to our web server

it > > displys the following message in the page =
> >
> > ******
> > Microsoft OLE DB Provider for ODBC Drivers error '80004005'
> >
> > [Microsoft][ODBC Microsoft Access Driver]General error Unable to open > > registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread 0x870
> > DBC 0xefde024 Jet'.
> >
> > /BF/Premium_Login.asp, line 268
> >
> > ******
> >
> > What does this mean? am i missing something? as you can see in the
> following
> > code it is not connecting via DSN/ODBC
> >
> > *****
> >
> > Set DataConnection = Server.CreateObject("ADODB.Connection")
> > DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};" & _ > > "DBQ=" & Session("DatabasePath") & ";"
> >
> > *****
> >
> > Hope u guys can help....
> >
> > Thanks
> >
> > --
> > Guy
> >
> > www.bradflack.com
> >
> > Please remove ANTI and SPAM from my
> > email address before sending me an email.
> >
> >
>
>



Jul 19 '05 #11
I did and iv changed it.... i feel a tad stupid, thanks for pointing that
out..... i only just created it on the fly to see if i could get it working
live....

Thanks again :-(

--
Guy

www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:OM**************@TK2MSFTNGP10.phx.gbl...
Enter the url to your database, and you can download it. Anyone can. Did you read the article?

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:ea**************@tk2msftngp13.phx.gbl...
WHAT????

What do you mean? how did you do that?
--
Guy
www.bradflack.com

Please remove ANTI and SPAM from my
email address before sending me an email.
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:eG**************@TK2MSFTNGP11.phx.gbl...
REad this immediately.
http://www.aspfaq.com/show.asp?id=2454

I just downloaded your database with little trouble.

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
> thanks for the response guys, most appreciated
>
> The following message now appears, does the db need to be in the root folder
> of the site?
> I have tried specifying the file as a URL and File Location...
>
> Any ideas?
>
>
> Microsoft JET Database Engine error '80004005'
>
> 'C:\WINNT\system32\Premium\security.mdb' is not a valid path. Make sure that
> the path name is spelled correctly and that you are connected to the
server
> on which the file resides.
>
> /BF/Premium_Login.asp, line 268
>
>
>
> Thanks
>
>
> --
> Guy
>
> www.bradflack.com
>
> Please remove ANTI and SPAM from my
> email address before sending me an email.
> "Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
> news:eL**************@TK2MSFTNGP10.phx.gbl...
> > Stop using the Access driver, and use JET/OLEDB instead.
> >
> > http://www.aspfaq.com/2154
> > http://www.aspfaq.com/2009
> > http://www.aspfaq.com/2009
> >
> > --
> > Aaron Bertrand
> > SQL Server MVP
> > http://www.aspfaq.com/
> >
> >
> >
> >
> > "Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
> > news:uD**************@TK2MSFTNGP12.phx.gbl...
> > > Hi there,
> > >
> > > i am creating a database driven login page. I am using code that has > been
> > > successful in the past, however when i upload it to our web server
it
> > > displys the following message in the page =
> > >
> > > ******
> > > Microsoft OLE DB Provider for ODBC Drivers error '80004005'
> > >
> > > [Microsoft][ODBC Microsoft Access Driver]General error Unable to open
> > > registry key 'Temporary (volatile) Jet DSN for process 0x20c Thread > 0x870
> > > DBC 0xefde024 Jet'.
> > >
> > > /BF/Premium_Login.asp, line 268
> > >
> > > ******
> > >
> > > What does this mean? am i missing something? as you can see in
the > > following
> > > code it is not connecting via DSN/ODBC
> > >
> > > *****
> > >
> > > Set DataConnection = Server.CreateObject("ADODB.Connection")
> > > DataConnection.Open "DRIVER={Microsoft Access Driver (*.mdb)};"

& _ > > > "DBQ=" & Session("DatabasePath") & ";"
> > >
> > > *****
> > >
> > > Hope u guys can help....
> > >
> > > Thanks
> > >
> > > --
> > > Guy
> > >
> > > www.bradflack.com
> > >
> > > Please remove ANTI and SPAM from my
> > > email address before sending me an email.
> > >
> > >
> >
> >
>
>



Jul 19 '05 #12
Don't feel stupid... Remember, it's an FAQ which means lots and lots of
people do it!

Ray at work

"Guy Hocking" <gu*@ANTIbradflack.SPAMcom> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I did and iv changed it.... i feel a tad stupid, thanks for pointing that
out..... i only just created it on the fly to see if i could get it working live....

Thanks again :-(

--

Jul 19 '05 #13
On Thu, 22 Jan 2004 13:49:07 -0500, "Ray at <%=sLocation%>"
<myfirstname at lane34 dot com> wrote:
Don't feel stupid... Remember, it's an FAQ which means lots and lots of
people do it!


And not *all* of us are stupid. Though some of us are slow
learners... :)

Jeff
Jul 19 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Kenny Ashton | last post by:
Can anyone tell me how to overcome my 'permissions problems' every time I upload a new database to my ISP's server. I have a folder, specially created for me by the ISP, where I can upload new...
8
by: John | last post by:
Hello. I am currently working through a book on Dreamweaver and using PHP. I am having a little trouble with setting up the database though. I have php 4.2.3 and MySQL 4.0.20a. I am running...
13
by: bill | last post by:
I am trying to convince a client that dotNet is preferable to an Access project (ADP/ADE). This client currently has a large, pure Access MDB solution with 30+ users, which needs to be upgraded....
14
by: amessimon | last post by:
Hi Having problems using an access database where i seem to create a locked file on making a connection. I think ive covered all the basics like properly closing the connection etc.... Are...
39
by: Marcin Zmyslowski | last post by:
Hello all! I have the following problem with MS Access 2003 permissions. I have two users. One is admin and the second one is user who has full permissions to enter modify and read data. I...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
22
by: Jordan S. | last post by:
SQL Server will be used as the back-end database to a non trivial client application. In question is the choice of client application: I need to be able to speak intelligently about when one...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.