473,405 Members | 2,167 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,405 software developers and data experts.

jscript.dll on .asp page?

Hello, would anyone be able to confirm that 'jscript.dll' is a necessary
file for an .asp page on IIS 5.0 to use the <script language="JavaScipt"
runat="SERVER"code? It looks like the code in this section is not working
and being recognized since it keeps giving me:

"Microsoft JScript runtime (0x800A01B0)
File name or class name not found during Automation operation"

and am suspecting that this jscript.dll file is a necessary file that's
missing or not installed since my search on the webserver's c drive came up
empty.

Thanks in advance.
Nov 20 '07 #1
15 3682
zz12 wrote on 20 nov 2007 in microsoft.public.inetserver.asp.general:
Hello, would anyone be able to confirm that 'jscript.dll' is a
necessary file for an .asp page on IIS 5.0 to use the <script
language="JavaScipt" runat="SERVER"code? It looks like the code in
this section is not working and being recognized since it keeps giving
me:

Testing:

<script language="JavaScipt" runat="SERVER">
var a=1;
</script>

returns:

Active Server Pages error 'ASP 0129'
Unknown scripting language
/test.asp, line 1
The scripting language 'JavaScipt' is not found on the server.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Nov 20 '07 #2
Evertjan. wrote:
zz12 wrote on 20 nov 2007 in microsoft.public.inetserver.asp.general:
>Hello, would anyone be able to confirm that 'jscript.dll' is a
necessary file for an .asp page on IIS 5.0 to use the <script
language="JavaScipt" runat="SERVER"code? It looks like the code in
this section is not working and being recognized since it keeps giving
me:


Testing:

<script language="JavaScipt" runat="SERVER">
var a=1;
</script>

returns:

Active Server Pages error 'ASP 0129'
Unknown scripting language
/test.asp, line 1
The scripting language 'JavaScipt' is not found on the server.

Is that cos of the typo?

Steve
Nov 20 '07 #3
"zz12" <ID***********@nowhere.comwrote in message
news:uK**************@TK2MSFTNGP05.phx.gbl...
Hello, would anyone be able to confirm that 'jscript.dll' is a necessary
file for an .asp page on IIS 5.0 to use the <script language="JavaScipt"
runat="SERVER"code? It looks like the code in this section is not
working
and being recognized since it keeps giving me:

"Microsoft JScript runtime (0x800A01B0)
File name or class name not found during Automation operation"

and am suspecting that this jscript.dll file is a necessary file that's
missing or not installed since my search on the webserver's c drive came
up
empty.
Yes JScript.dll is necessary for any Jscript code to run in ASP, Wscript,
Cscript, Internet Explorer or anything else using the MS script hosting APIs
on the machine.

--
Anthony Jones - MVP ASP/ASP.NET
Nov 20 '07 #4
Would you happen to know where I can download with instructions on how to
install and register this file for Windows 2000 Server? I've looked around
on the web and can't really seem to find how to do this clearly.

Thanks a bunch for your speedy and informative reply Anthony. Much
appreciated.
"Anthony Jones" <An*@yadayadayada.comwrote in message
news:Oz**************@TK2MSFTNGP03.phx.gbl...
"zz12" <ID***********@nowhere.comwrote in message
news:uK**************@TK2MSFTNGP05.phx.gbl...
>Hello, would anyone be able to confirm that 'jscript.dll' is a necessary
file for an .asp page on IIS 5.0 to use the <script language="JavaScipt"
runat="SERVER"code? It looks like the code in this section is not
working
>and being recognized since it keeps giving me:

"Microsoft JScript runtime (0x800A01B0)
File name or class name not found during Automation operation"

and am suspecting that this jscript.dll file is a necessary file that's
missing or not installed since my search on the webserver's c drive came
up
>empty.

Yes JScript.dll is necessary for any Jscript code to run in ASP, Wscript,
Cscript, Internet Explorer or anything else using the MS script hosting
APIs
on the machine.

--
Anthony Jones - MVP ASP/ASP.NET


Nov 20 '07 #5
zz12 wrote:
Hello, would anyone be able to confirm that 'jscript.dll' is a
necessary file for an .asp page on IIS 5.0 to use the <script
language="JavaScipt" runat="SERVER"code? It looks like the code in
this section is not working and being recognized since it keeps
giving me:

"Microsoft JScript runtime (0x800A01B0)
File name or class name not found during Automation operation"

and am suspecting that this jscript.dll file is a necessary file
that's missing or not installed since my search on the webserver's c
drive came up empty.
Given the wording of the error message, I strongly suspect that the
jscript.dll file is installed an running, otherwise it would not have
supplied a runtime error. I suspect protected or system files, set by
default in Windows Explorer to be hidden, do not show up in your search.

I would look to the code inside the script block for the problem. Time
to do some debugging - comment out all the code in the block and see if
you still get the error. Then uncomment lines until you find the one
that generates the error.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Nov 20 '07 #6
Yes you are correct. I unhid the system files and then did notice 'jscript.dll' was there. I even confirmed registering it and it still gives me the same error message. I wonder why it works from the original developer's environment in which ours is the same. The only difference is that the programmer uses a .udl file as the main datasource in which the authentication settings are slightly different and confirm the 'Test Connection' button from this .udl file is succeeding. I don't know if this helps but the following is the section of the code which I adjusted slightly to get to the point with different namings which is giving me the error:

<script language="JavaScript" runat="SERVER">
function GetDataTest(database){
var connection;

connection= new ActiveXObject("ADODB.Connection");
connection.Open(database); //<---- Here is the line that is returning the 'Microsoft JScript runtime (0x800A01B0)' error message.
Much thanks Bob.

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message news:ue**************@TK2MSFTNGP02.phx.gbl...
zz12 wrote:
>Hello, would anyone be able to confirm that 'jscript.dll' is a
necessary file for an .asp page on IIS 5.0 to use the <script
language="JavaScipt" runat="SERVER"code? It looks like the code in
this section is not working and being recognized since it keeps
giving me:

"Microsoft JScript runtime (0x800A01B0)
File name or class name not found during Automation operation"

and am suspecting that this jscript.dll file is a necessary file
that's missing or not installed since my search on the webserver's c
drive came up empty.
Given the wording of the error message, I strongly suspect that the
jscript.dll file is installed an running, otherwise it would not have
supplied a runtime error. I suspect protected or system files, set by
default in Windows Explorer to be hidden, do not show up in your search.

I would look to the code inside the script block for the problem. Time
to do some debugging - comment out all the code in the block and see if
you still get the error. Then uncomment lines until you find the one
that generates the error.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Nov 20 '07 #7
zz12 wrote:
Yes you are correct. I unhid the system files and then did notice
'jscript.dll' was there. I even confirmed registering it and it
still gives me the same error message. I wonder why it works from
the original developer's environment in which ours is the same. The
only difference is that the programmer uses a .udl file as the main
datasource in which the authentication settings are slightly
different and confirm the 'Test Connection' button from this .udl
file is succeeding. I don't know if this helps but the following is
the section of the code which I adjusted slightly to get to the point
with different namings which is giving me the error:

<script language="JavaScript" runat="SERVER">
function GetDataTest(database){
var connection;

connection= new ActiveXObject("ADODB.Connection");
connection.Open(database); //<---- Here is the line that is
returning the 'Microsoft JScript runtime (0x800A01B0)' error message.
Much thanks Bob.

I would not use "connection" for the name of a variable ... it's too
close to being the name of an actual object. It's probably not the
source of your error but I would suggest using "cn" or "conn" for your
variable name, rather than "connection"

Given that you've changed the variable name and the error still occurs,
I have to say that a call to the Open method will never result in an
Automation error. It has to be the previous line. Again ... you can
confirm this by commenting out everything except that line. Given that
you are able to confirm my hypothesis, it is likely that your machine
has a defective MDAC installation.

Oh, wait. I never do ADO code in javascript. Can one of you javascript
users confirm whether using "Open" as opposed to "open" could cause the
error?

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Nov 20 '07 #8
Yes I temporarily changed the 'connection' name to a generic one just for
this debugging help group purpose.

I did change the 'Open' to 'open' and it still gives me the same error. I
guess I'll try to debug in seeing what the line above for 'connection' value
is set at (if it's even being set and/or holding it). Since this is jscript
and I'm more of a vbscript guy would anyone happen to know off the top of
one's head in how to debug similar to a 'response.write' line in jscript?

I think you're hot on the trail on this Bob. Thank you very much for your
input and expertise :-)

"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message
news:e2**************@TK2MSFTNGP03.phx.gbl...
zz12 wrote:
>Yes you are correct. I unhid the system files and then did notice
'jscript.dll' was there. I even confirmed registering it and it
still gives me the same error message. I wonder why it works from
the original developer's environment in which ours is the same. The
only difference is that the programmer uses a .udl file as the main
datasource in which the authentication settings are slightly
different and confirm the 'Test Connection' button from this .udl
file is succeeding. I don't know if this helps but the following is
the section of the code which I adjusted slightly to get to the point
with different namings which is giving me the error:

<script language="JavaScript" runat="SERVER">
function GetDataTest(database){
var connection;

connection= new ActiveXObject("ADODB.Connection");
connection.Open(database); //<---- Here is the line that is
returning the 'Microsoft JScript runtime (0x800A01B0)' error message.
Much thanks Bob.


I would not use "connection" for the name of a variable ... it's too
close to being the name of an actual object. It's probably not the
source of your error but I would suggest using "cn" or "conn" for your
variable name, rather than "connection"

Given that you've changed the variable name and the error still occurs,
I have to say that a call to the Open method will never result in an
Automation error. It has to be the previous line. Again ... you can
confirm this by commenting out everything except that line. Given that
you are able to confirm my hypothesis, it is likely that your machine
has a defective MDAC installation.

Oh, wait. I never do ADO code in javascript. Can one of you javascript
users confirm whether using "Open" as opposed to "open" could cause the
error?

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Nov 20 '07 #9
Dooza wrote on 20 nov 2007 in microsoft.public.inetserver.asp.general:
Evertjan. wrote:
>zz12 wrote on 20 nov 2007 in microsoft.public.inetserver.asp.general:
>>Hello, would anyone be able to confirm that 'jscript.dll' is a
necessary file for an .asp page on IIS 5.0 to use the <script
language="JavaScipt" runat="SERVER"code? It looks like the code in
this section is not working and being recognized since it keeps giving
me:


Testing:

<script language="JavaScipt" runat="SERVER">
var a=1;
</script>

returns:

Active Server Pages error 'ASP 0129'
Unknown scripting language
/test.asp, line 1
The scripting language 'JavaScipt' is not found on the server.

Is that cos of the typo?
What typo?
Are you asuming something?
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Nov 20 '07 #10
zz12 wrote:
Yes I temporarily changed the 'connection' name to a generic one just
for this debugging help group purpose.

I did change the 'Open' to 'open' and it still gives me the same
error. I guess I'll try to debug in seeing what the line above for
'connection' value is set at (if it's even being set and/or holding
it). Since this is jscript and I'm more of a vbscript guy
That means you can try testing vbscript code that does the same thing,
can't you?

Do this: create a page that contains nothing but the following code and
test it:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>
..
Does this produce the error?
would
anyone happen to know off the top of one's head in how to debug
similar to a 'response.write' line in jscript?
The Response object is provided by the ASP engine so response.write
works in both vbscript and javascript.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Nov 20 '07 #11
I created an .asp page that contains only the following like you recommended:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>

and surprisingly it it didn't give me an error message. It just shows a blank page which looks like a good thing in that the jscript.dll is working?

Thanks again for your efforts Bob. This is really helping me out and learning something new.
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message news:%2****************@TK2MSFTNGP04.phx.gbl...
zz12 wrote:
>Yes I temporarily changed the 'connection' name to a generic one just
for this debugging help group purpose.

I did change the 'Open' to 'open' and it still gives me the same
error. I guess I'll try to debug in seeing what the line above for
'connection' value is set at (if it's even being set and/or holding
it). Since this is jscript and I'm more of a vbscript guy
That means you can try testing vbscript code that does the same thing,
can't you?

Do this: create a page that contains nothing but the following code and
test it:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>
.
Does this produce the error?
> would
anyone happen to know off the top of one's head in how to debug
similar to a 'response.write' line in jscript?
The Response object is provided by the ASP engine so response.write
works in both vbscript and javascript.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Nov 20 '07 #12
OK, next step is to add in a connection.open statement utilizing a
connection string that you know will work.

zz12 wrote:
I created an .asp page that contains only the following like you
recommended:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>

and surprisingly it it didn't give me an error message. It just
shows a blank page which looks like a good thing in that the
jscript.dll is working?

Thanks again for your efforts Bob. This is really helping me out and
learning something new.
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>zz12 wrote:
>>Yes I temporarily changed the 'connection' name to a generic one
just for this debugging help group purpose.

I did change the 'Open' to 'open' and it still gives me the same
error. I guess I'll try to debug in seeing what the line above for
'connection' value is set at (if it's even being set and/or holding
it). Since this is jscript and I'm more of a vbscript guy

That means you can try testing vbscript code that does the same
thing, can't you?

Do this: create a page that contains nothing but the following code
and test it:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>
.
Does this produce the error?
>> would
anyone happen to know off the top of one's head in how to debug
similar to a 'response.write' line in jscript?

The Response object is provided by the ASP engine so response.write
works in both vbscript and javascript.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get
a quicker response by posting to the newsgroup.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Nov 20 '07 #13
I think I have it working now.

Thanks so much Bob and all for all of your helpful and speedy replies.
Totally appreciate it.

Take cares, you guys are awesome :-)
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
OK, next step is to add in a connection.open statement utilizing a
connection string that you know will work.

zz12 wrote:
>I created an .asp page that contains only the following like you
recommended:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>

and surprisingly it it didn't give me an error message. It just
shows a blank page which looks like a good thing in that the
jscript.dll is working?

Thanks again for your efforts Bob. This is really helping me out and
learning something new.
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>>zz12 wrote:
Yes I temporarily changed the 'connection' name to a generic one
just for this debugging help group purpose.

I did change the 'Open' to 'open' and it still gives me the same
error. I guess I'll try to debug in seeing what the line above for
'connection' value is set at (if it's even being set and/or holding
it). Since this is jscript and I'm more of a vbscript guy

That means you can try testing vbscript code that does the same
thing, can't you?

Do this: create a page that contains nothing but the following code
and test it:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>
.
Does this produce the error?

would
anyone happen to know off the top of one's head in how to debug
similar to a 'response.write' line in jscript?

The Response object is provided by the ASP engine so response.write
works in both vbscript and javascript.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get
a quicker response by posting to the newsgroup.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Nov 20 '07 #14
Bob Barrows [MVP] wrote:
Oh, wait. I never do ADO code in javascript. Can one of you javascript
users confirm whether using "Open" as opposed to "open" could cause
the error?
Don't know about javascript, but for JScript, .Open() is correct.

Incidentally, there are no reserved words or other objects in ASP/JScript
named "connection" or "Connection".
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Nov 21 '07 #15
I had these working on a w2k server (iis 5.0) and am now trying to run these on a w2k3 server (iis 6.0) and am getting the following error:

Microsoft JScript runtime error '800a01b0'
File name or class name not found during Automation operation
Would anyone know if there's a security setting or something that I'm missing in why the above error message shows on the w2k3 server when it was running fine on the w2k server?

Thanks in advance.
"zz12" <ID***********@Nowhere.comwrote in message news:Of**************@TK2MSFTNGP04.phx.gbl...
>I think I have it working now.

Thanks so much Bob and all for all of your helpful and speedy replies.
Totally appreciate it.

Take cares, you guys are awesome :-)
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
>OK, next step is to add in a connection.open statement utilizing a
connection string that you know will work.

zz12 wrote:
>>I created an .asp page that contains only the following like you
recommended:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>

and surprisingly it it didn't give me an error message. It just
shows a blank page which looks like a good thing in that the
jscript.dll is working?

Thanks again for your efforts Bob. This is really helping me out and
learning something new.
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcomwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl.. .
zz12 wrote:
Yes I temporarily changed the 'connection' name to a generic one
just for this debugging help group purpose.
>
I did change the 'Open' to 'open' and it still gives me the same
error. I guess I'll try to debug in seeing what the line above for
'connection' value is set at (if it's even being set and/or holding
it). Since this is jscript and I'm more of a vbscript guy

That means you can try testing vbscript code that does the same
thing, can't you?

Do this: create a page that contains nothing but the following code
and test it:

<script language="JavaScript" runat="SERVER">
var connection;
connection= new ActiveXObject("ADODB.Connection");
</script>
.
Does this produce the error?

would
anyone happen to know off the top of one's head in how to debug
similar to a 'response.write' line in jscript?

The Response object is provided by the ASP engine so response.write
works in both vbscript and javascript.
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get
a quicker response by posting to the newsgroup.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Jan 15 '08 #16

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

Similar topics

1
by: TopDawg044 | last post by:
I continue to lose Javascript functionality in any browser I use under WinXPPro...(IE6, Moz 1.4, NS 7.1...)it is now at the point where I'm unable to access my school sites which use jscript and...
2
by: moondaddy | last post by:
I'm using vb.net and have an aspx page where I want to call a function in the code behind to do something on the backend and I want to call this function from a jscript function in the aspx page. ...
1
by: perper | last post by:
Cannot use 'jscript' because another language has been specified earlier in this page I tring to# include an JScript file into a ASp.net in order to use functions declared in ti on the server...
4
by: RFS666 | last post by:
Hello, I have the following problem: I have a web project where I display an activeX control that displays 2D-graphs on an aspx-page. I use jscript to access and modify the properties of the...
6
by: RFS666 | last post by:
Hello, After I posted yesterday "using C# class in jscript", I have a new problem: I have a C# class - DBResult - that contains (and other variables) a string array (and other variables), that...
7
by: RFS666 | last post by:
Hello, I would like to use variables with a type in jscript.NET. I declare them as follows: var x : double = 5.03; This doesn't work in my script, that I write to the page in codebehind with...
0
by: tvin | last post by:
Hello all, I have a problem to use jscript.js file in aspx page: I wrote jscript file in Notepad and I compiled this jscript file,after compiled and .exe in command prompt,i see that the...
2
by: Jer425 | last post by:
Hello, I'm coding in VB and trying to include a jscript file. This will not work because you can only use one language in asp.net. Is there a way that I can use the jscript without having to...
2
by: tunk | last post by:
I dont know where to start my question so let me tell you my story :) The ASP that cause me trouble is running on IIS that set ASP default language to JScript instead of VBScript. This ASP page...
1
by: Andrew Wan | last post by:
How can VBScript code access JScript code variables in the same ASP page? <SCRIPT LANGAUGE="VBScript"> Dim a a = 10 </SCRIPT> <SCRIPT LANGUAGE="JScript"> Response.Write(a); </SCRIPT>
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: 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:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
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.