473,761 Members | 10,684 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP access to Data on Remote devices

Good Morning Folks

I have a LAN
Among the several connections to it are the following four devices:
A MAXSTOR network Storage Device
A PC running Microsoft Windows 2000 Server 5.0.2195 (SP4)
A PC running Microsoft Windows XP Professional 5.1.2600 (SP2)
A PC running Microsoft Windows XP Professional 5.1.2600 (SP2)

All of the PCs are running IIS

The 'Public Internet' is connected via a Broadband connection from the
LAN

On the MAXSTOR is a folder called 'CENTRALDATA'
In that folder are a number of Access dotMDB files.

The Access files can be opened on all of the PCs by double clicking on
them in Windows Explorer.

=============== =============== =============== =============== ====
QUESTION ONE

Can the access files on the MAXTOR be accessed from dotASP pages on the
three PCs ??

If so, how ??

If so, are there any simple tutorial pages that explain in simple
language how to do it ??


=============== =============== =============== =============== ====
I have a similar 'CENTRALDATA' folder on a "Public Internet Server" that
I own

QUESTION TWO

Can the access files on the "Public Internet Server" be accessed from
dotASP pages on the three PCs ??

If so, how ??

If so, are there any simple tutorial pages that explain in simple
language how to do it ??


=============== =============== =============== =============== ====
I have a similar 'CENTRALDATA' folder on a "Public Internet Server" that
I own

QUESTION THREE

Can the access files on the "Public Internet Server" be accessed from
dotASP pages on other "Public Internet Server" servers ??

If so, how ??

If so, are there any simple tutorial pages that explain in simple
language how to do it ??


=============== =============== =============== =============== ====
By the way, I tried to create Virtual Folders using IIS Admin on the
three PCs on the LAN, but it will not allow it for 'Remote' folders.

I await your replies with interest
Thank You in Advance

Pete (Northolt UK)

Aug 25 '08 #1
25 3012
"p byers" <pb@sst-ltd.co.ukwrote in message
news:48******** *******@sst-ltd.co.uk...
Good Morning Folks
Whether it is morning depends on a) when the reader reads the message and b)
what timezone they are in.
I read this this morning and I'm UK based to so good morning back. But its
afternoon now, or is it?
>
I have a LAN
Among the several connections to it are the following four devices:
A MAXSTOR network Storage Device
A PC running Microsoft Windows 2000 Server 5.0.2195 (SP4)
A PC running Microsoft Windows XP Professional 5.1.2600 (SP2)
A PC running Microsoft Windows XP Professional 5.1.2600 (SP2)

All of the PCs are running IIS

The 'Public Internet' is connected via a Broadband connection from the
LAN

On the MAXSTOR is a folder called 'CENTRALDATA'
In that folder are a number of Access dotMDB files.

The Access files can be opened on all of the PCs by double clicking on
them in Windows Explorer.

=============== =============== =============== =============== ====
QUESTION ONE

Can the access files on the MAXTOR be accessed from dotASP pages on the
three PCs ??

If so, how ??

If so, are there any simple tutorial pages that explain in simple
language how to do it ??
You haven't stated whether you are expecting users to access the site
anonymously or not.

If all access is to be from users who have domain accounts on your network
then turn off anonymous access on the IIS site and turn on windows
intergrated security. Now grant access for those users to the file share
and folders containing the MDBs as would if the were accessing them via the
file system.

If you need anonymous access you will need more work. By default IIS
creates an IUSR_<machinena memachine guest account which it used to access
files. This account has not access to the network. Therefore you need to
create a new account in the domain and change the anonymous access on the
IIS to use this new domain account. Grant this account file access as
above.
>
=============== =============== =============== =============== ====
I have a similar 'CENTRALDATA' folder on a "Public Internet Server" that
I own

QUESTION TWO

Can the access files on the "Public Internet Server" be accessed from
dotASP pages on the three PCs ??

If so, how ??

If so, are there any simple tutorial pages that explain in simple
language how to do it ??
I guess that depends on what you mean by 'access'. If you mean can you use
JET queries against a copy of an MDB held on a public server I would say
thats probably not a good idea.
What is it you want to do? Download it? Do you need to upload it as well.
>
=============== =============== =============== =============== ====
I have a similar 'CENTRALDATA' folder on a "Public Internet Server" that
I own

QUESTION THREE
Seems identical to second.
>
=============== =============== =============== =============== ====
By the way, I tried to create Virtual Folders using IIS Admin on the
three PCs on the LAN, but it will not allow it for 'Remote' folders.
Creating virtual folders for a UNC path is possible, you must specific a
user name and password that IIS will use to access the folder. That however
would not help with DB queries against MDBs on remote server.


--
Anthony Jones - MVP ASP/ASP.NET
Aug 25 '08 #2
Anthony
Thank you for your reply.

I tried so hard not to 'screw-up' my request and to give all of the relevant
information !!

Such irony to slip-up on the 'Salutation' - lol

The access to the ASPages (both on the PCs on the Local LAN and on the 'Public
Internet') will be anonymous.

The access to the Databases is Jet Queries only - not uploading or downloading.

In simple language, I would like several servers running IIS (LAN and 'Public
Internet') to serve ASPages to be able to use the a Common (the same) Database -
not individual copies.

-AND-

to do it simply by quoting the appropriate Shared Folder in the DataSource of
the 'Open' statements.

-BUT-

I am too dim to be able to do it, I have Searched, Read and Struggled for ages -
and FAILed so far.

-HENCE-

My simple plea for simple help from clever folks

Thank you
Pete (Northolt UK)

Anthony Jones wrote:
"p byers" <pb@sst-ltd.co.ukwrote in message
news:48******** *******@sst-ltd.co.uk...
Good Morning Folks

Whether it is morning depends on a) when the reader reads the message and b)
what timezone they are in.
I read this this morning and I'm UK based to so good morning back. But its
afternoon now, or is it?

I have a LAN
Among the several connections to it are the following four devices:
A MAXSTOR network Storage Device
A PC running Microsoft Windows 2000 Server 5.0.2195 (SP4)
A PC running Microsoft Windows XP Professional 5.1.2600 (SP2)
A PC running Microsoft Windows XP Professional 5.1.2600 (SP2)

All of the PCs are running IIS

The 'Public Internet' is connected via a Broadband connection from the
LAN

On the MAXSTOR is a folder called 'CENTRALDATA'
In that folder are a number of Access dotMDB files.

The Access files can be opened on all of the PCs by double clicking on
them in Windows Explorer.

=============== =============== =============== =============== ====
QUESTION ONE

Can the access files on the MAXTOR be accessed from dotASP pages on the
three PCs ??

If so, how ??

If so, are there any simple tutorial pages that explain in simple
language how to do it ??

You haven't stated whether you are expecting users to access the site
anonymously or not.

If all access is to be from users who have domain accounts on your network
then turn off anonymous access on the IIS site and turn on windows
intergrated security. Now grant access for those users to the file share
and folders containing the MDBs as would if the were accessing them via the
file system.

If you need anonymous access you will need more work. By default IIS
creates an IUSR_<machinena memachine guest account which it used to access
files. This account has not access to the network. Therefore you need to
create a new account in the domain and change the anonymous access on the
IIS to use this new domain account. Grant this account file access as
above.

=============== =============== =============== =============== ====
I have a similar 'CENTRALDATA' folder on a "Public Internet Server" that
I own

QUESTION TWO

Can the access files on the "Public Internet Server" be accessed from
dotASP pages on the three PCs ??

If so, how ??

If so, are there any simple tutorial pages that explain in simple
language how to do it ??

I guess that depends on what you mean by 'access'. If you mean can you use
JET queries against a copy of an MDB held on a public server I would say
thats probably not a good idea.

What is it you want to do? Download it? Do you need to upload it as well.

=============== =============== =============== =============== ====
I have a similar 'CENTRALDATA' folder on a "Public Internet Server" that
I own

QUESTION THREE

Seems identical to second.

=============== =============== =============== =============== ====
By the way, I tried to create Virtual Folders using IIS Admin on the
three PCs on the LAN, but it will not allow it for 'Remote' folders.

Creating virtual folders for a UNC path is possible, you must specific a
user name and password that IIS will use to access the folder. That however
would not help with DB queries against MDBs on remote server.

--
Anthony Jones - MVP ASP/ASP.NET
Aug 25 '08 #3
"p byers" <pb@sst-ltd.co.ukwrote in message
news:48******** ******@sst-ltd.co.uk...
>
In simple language, I would like several servers running IIS (LAN and
'Public
Internet') to serve ASPages to be able to use the a Common (the same)
Database -
not individual copies.
<snip>

There's an oft-abused acronym of "UNC" which'd help you greatly here.

Have a read of the URL below; hopefully that'll be enough to set you in the
right direction.

http://en.wikipedia.org/wiki/Path_(c...ing_Convention

- Bob.
Aug 26 '08 #4
Bob

Thank you for your advice.

The "Computer Name" of my MAXTOR storage device is: MSS-0135F8
On the PC on which I am testing, it is Mapped as the 'S:' drive

I created a tiny test ASPage which is shown below.

There are three "dataBaseRo ot" values

=============== =============== =============== =============== ====

The first is to prove the Script by using a Local Database table - it works OK

=============== =============== =============== =============== ====

The second uses the Mapped drive name - it fails as below

Error Type:
Microsoft JET Database Engine (0x80004005)
's:\atest\ReCon stituted_wwwroo t\Data\common\d ata\org_data.md b' 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.
/test/testshare.asp, line 14

=============== =============== =============== =============== ====

The third is my attempt to use a UNC string - it fails as below

Error Type:
Microsoft JET Database Engine (0x80004005)
'\\MSS-0135F8\atest\Re Constituted_www root\Data\commo n\data\org_data .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.
/test/testshare.asp, line 14

=============== =============== =============== =============== ====

Where do I go next ??

Pete (Northolt UK)

<%

dataBaseRoot = "c:\inetpub\www root\Data\commo n\"

''dataBaseRoot = "s:\atest\ReCon stituted_wwwroo t\Data\common\"

''dataBaseRoot = "\\MSS-0135F8\atest\Re Constituted_www root\Data\commo n\"

DBCon = "Provider=Micro soft.Jet.OLEDB. 4.0; Data Source=" & dataBaseRoot &
"data\org_data. mdb"
''Response.Writ e("<P>" & DBCon)
''Response.end

set my_conn = Server.CreateOb ject("ADODB.Con nection")
my_Conn.Open DBCon

%>

Bob Milutinovic wrote:
>
There's an oft-abused acronym of "UNC" which'd help you greatly here.

Have a read of the URL below; hopefully that'll be enough to set you in the
right direction.

http://en.wikipedia.org/wiki/Path_(c...ing_Convention

- Bob.
Aug 26 '08 #5
"p byers" <pb@sst-ltd.co.ukwrote in message
news:48******** ******@sst-ltd.co.uk...
Anthony
Thank you for your reply.

I tried so hard not to 'screw-up' my request and to give all of the
relevant
information !!

Such irony to slip-up on the 'Salutation' - lol

The access to the ASPages (both on the PCs on the Local LAN and on the
'Public
Internet') will be anonymous.

The access to the Databases is Jet Queries only - not uploading or
downloading.
>
In simple language, I would like several servers running IIS (LAN and
'Public
Internet') to serve ASPages to be able to use the a Common (the same)
Database -
not individual copies.

-AND-

to do it simply by quoting the appropriate Shared Folder in the DataSource
of
the 'Open' statements.

-BUT-

I am too dim to be able to do it, I have Searched, Read and Struggled for
ages -
and FAILed so far.

-HENCE-

My simple plea for simple help from clever folks

I'm gonna guess that what you mean by public server is a server you run on
your network which is accessible to the public.

Add a new user to your domain (lets call it IUSR but you call it what you
like) and make it a part of the GUESTS group. Set its password never to
expire.

On the File server (MAXTOR?) grant IUSR read/write access to the file share
that contains the mdbs. Similarly grant the IUSR access to the folder that
is being shared.

The 2000 server will have a website or application folder which needs access
to an mdb on the file server. Open the site or applications properties in
IIS manager. Go to directory security, click edit... in authentication
control, clear Intergrated Windows authentication, click edit... anonymous
access, change the username to the domain IUSR account (use the browse
button to select this) and enter the IUSR account password. Clear the Allow
IIS to control password box and ok out the dialogs.

Grant IUSR at least read rights on the folder that is the root of the site
or application.

Open local security policy (in admin tools) on the 2000 server. Expand
Local Policies and click User Rights Assignment. In the list select and
edit 'Log on as batch job' add IUSR to the set of accounts that can logon as
a batch. While you're there look through the list of rights looking of
rights granted to IUSR_<machinena mewhere ever such a right is granted add
the IUSR (I think batch is the only one necessary, if that).

Access some simple htm or gif in the application from a browser to check you
got those steps correct. If that fails check the event logs, you'll likely
have some message complaining about the username, password or access rights.

I notice form subsequent replies that you may be attempting to access the
mdbs on a mapped network drive. The process that ASP applications run in
cannot see network drives. You must use UNCs to access network resources.

The site should now be able query the mdb files.

The steps for the XP systems are the same (note you only need one IUSR
account for the domain).

--
Anthony Jones - MVP ASP/ASP.NET

Aug 26 '08 #6
Anthony
Thank you for your reply

I will follow your advice step-by-step - hopefully arriving at the desired
solution.
I guess that I need to get to understand ActiveServer and create a Local Domain
on my LAN before I can start.

At the moment, connections on the LAN are achieved by IP Address or Machine
Name.

Only one point of correction - "Public Internet Server" is a phrase that I use
to describe a Windows 2003 Server hosted for me by '1and1 ltd' - I have total
use and control over that server, it is NOT shared access to a '1and1' Server.

I host around 80 of my own WebSites on it and provide hosting for other folks
too.

Sorry that I did not make that clear in my original question.

I also have several sites hosted with other ISPs

I dream of giving these other sites access to Databases on my 'own' server !!

Pete (Notholt UK)

Anthony Jones wrote:
"p byers" <pb@sst-ltd.co.ukwrote in message
news:48******** ******@sst-ltd.co.uk...
Anthony
Thank you for your reply.

I tried so hard not to 'screw-up' my request and to give all of the
relevant
information !!

Such irony to slip-up on the 'Salutation' - lol

The access to the ASPages (both on the PCs on the Local LAN and on the
'Public
Internet') will be anonymous.

The access to the Databases is Jet Queries only - not uploading or
downloading.

In simple language, I would like several servers running IIS (LAN and
'Public
Internet') to serve ASPages to be able to use the a Common (the same)
Database -
not individual copies.

-AND-

to do it simply by quoting the appropriate Shared Folder in the DataSource
of
the 'Open' statements.

-BUT-

I am too dim to be able to do it, I have Searched, Read and Struggled for
ages -
and FAILed so far.

-HENCE-

My simple plea for simple help from clever folks

I'm gonna guess that what you mean by public server is a server you run on
your network which is accessible to the public.

Add a new user to your domain (lets call it IUSR but you call it what you
like) and make it a part of the GUESTS group. Set its password never to
expire.

On the File server (MAXTOR?) grant IUSR read/write access to the file share
that contains the mdbs. Similarly grant the IUSR access to the folder that
is being shared.

The 2000 server will have a website or application folder which needs access
to an mdb on the file server. Open the site or applications properties in
IIS manager. Go to directory security, click edit... in authentication
control, clear Intergrated Windows authentication, click edit... anonymous
access, change the username to the domain IUSR account (use the browse
button to select this) and enter the IUSR account password. Clear the Allow
IIS to control password box and ok out the dialogs.

Grant IUSR at least read rights on the folder that is the root of the site
or application.

Open local security policy (in admin tools) on the 2000 server. Expand
Local Policies and click User Rights Assignment. In the list select and
edit 'Log on as batch job' add IUSR to the set of accounts that can logon as
a batch. While you're there look through the list of rights looking of
rights granted to IUSR_<machinena mewhere ever such a right is granted add
the IUSR (I think batch is the only one necessary, if that).

Access some simple htm or gif in the application from a browser to check you
got those steps correct. If that fails check the event logs, you'll likely
have some message complaining about the username, password or access rights.

I notice form subsequent replies that you may be attempting to access the
mdbs on a mapped network drive. The process that ASP applications run in
cannot see network drives. You must use UNCs to access network resources.

The site should now be able query the mdb files.

The steps for the XP systems are the same (note you only need one IUSR
account for the domain).

--
Anthony Jones - MVP ASP/ASP.NET
Aug 26 '08 #7
"p byers" <pb@sst-ltd.co.ukwrote in message
news:48******** *******@sst-ltd.co.uk...
Anthony
Thank you for your reply

I will follow your advice step-by-step - hopefully arriving at the desired
solution.
I guess that I need to get to understand ActiveServer and create a Local
Domain
on my LAN before I can start.
Umm... that would seem to me to be a pre-requisite.
At the moment, connections on the LAN are achieved by IP Address or
Machine
Name.

Only one point of correction - "Public Internet Server" is a phrase that I
use
to describe a Windows 2003 Server hosted for me by '1and1 ltd' - I have
total
use and control over that server, it is NOT shared access to a '1and1'
Server.
>
Sorry I'm not clear on this now. You want query an mdb hosted on this
server from one on your internal network?
Do you have access to file services on this machine? Are you really sure
you want to be doing JET queries (not known for their robust nature) over a
VPN style link (if you have file service access you would want be using a
VPN)?

I host around 80 of my own WebSites on it and provide hosting for other
folks
too.
Thats both the blessing and the curse of IIS. Much can be achieved without
a great deal of understanding of how it works.
Sorry that I did not make that clear in my original question.

I also have several sites hosted with other ISPs

I dream of giving these other sites access to Databases on my 'own' server
!!
>

--
Anthony Jones - MVP ASP/ASP.NET
Aug 26 '08 #8
"p byers" <pb@sst-ltd.co.ukwrote in message
news:48******** *******@sst-ltd.co.uk...
Bob

Thank you for your advice.

The "Computer Name" of my MAXTOR storage device is: MSS-0135F8
On the PC on which I am testing, it is Mapped as the 'S:' drive

I created a tiny test ASPage which is shown below.

There are three "dataBaseRo ot" values

=============== =============== =============== =============== ====

The first is to prove the Script by using a Local Database table - it
works OK

=============== =============== =============== =============== ====

The second uses the Mapped drive name - it fails as below

Error Type:
Microsoft JET Database Engine (0x80004005)
's:\atest\ReCon stituted_wwwroo t\Data\common\d ata\org_data.md b' 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.
/test/testshare.asp, line 14

=============== =============== =============== =============== ====

The third is my attempt to use a UNC string - it fails as below

Error Type:
Microsoft JET Database Engine (0x80004005)
'\\MSS-0135F8\atest\Re Constituted_www root\Data\commo n\data\org_data .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.
/test/testshare.asp, line 14

=============== =============== =============== =============== ====

Where do I go next ??

Pete (Northolt UK)

<%

dataBaseRoot = "c:\inetpub\www root\Data\commo n\"

''dataBaseRoot = "s:\atest\ReCon stituted_wwwroo t\Data\common\"

''dataBaseRoot = "\\MSS-0135F8\atest\Re Constituted_www root\Data\commo n\"

DBCon = "Provider=Micro soft.Jet.OLEDB. 4.0; Data Source=" & dataBaseRoot &
"data\org_data. mdb"
''Response.Writ e("<P>" & DBCon)
''Response.end

set my_conn = Server.CreateOb ject("ADODB.Con nection")
my_Conn.Open DBCon

%>

Bob Milutinovic wrote:
>>
There's an oft-abused acronym of "UNC" which'd help you greatly here.

Have a read of the URL below; hopefully that'll be enough to set you in
the
right direction.

http://en.wikipedia.org/wiki/Path_(c...ing_Convention

- Bob.
The "S" drive is mapped to a network file share on MSS-0135F8, correct? If
so, what is the name of that file share. The name of the file share should
appear in the folder tree in Windows Explorer (i.e. the file manager). It
should appear as something like:

myfileshare on 'MSS-0135F8' (S:)

So, in the example above the UNC you should use would be:

\\MSS-0135F8\myfilesh are\atest\ReCon stituted_wwwroo t\Data\common

Aug 26 '08 #9
"p byers" <pb@sst-ltd.co.ukwrote in message
news:48******** *******@sst-ltd.co.uk...
Bob

Thank you for your advice.

The "Computer Name" of my MAXTOR storage device is: MSS-0135F8
On the PC on which I am testing, it is Mapped as the 'S:' drive

I created a tiny test ASPage which is shown below.

There are three "dataBaseRo ot" values

=============== =============== =============== =============== ====

The first is to prove the Script by using a Local Database table - it
works OK

=============== =============== =============== =============== ====

The second uses the Mapped drive name - it fails as below

Error Type:
Microsoft JET Database Engine (0x80004005)
's:\atest\ReCon stituted_wwwroo t\Data\common\d ata\org_data.md b' 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.
/test/testshare.asp, line 14
This would appear to be a major failing.

From the machine you're running the ASP scripts on, can you get to
S:\atest\ReCons tituted_wwwroot \Data\common\da ta\org_data.mdb using Windows
Explorer?

If not, you'll need to create a permanent mapping to drive S: on _that_
machine, so IIS can reference the network drive.

If you can navigate to it with Explorer, then it'd likely be a
setting/permission issue within IIS, but I've never encountered this
before - and not having an IIS machine readily available to me at the
moment, I can't dig through the settings to see if there's anything in there
which would prevent you from accessing network shares from within a script.

To eliminate the possibility of it being a peculiarity of the external
Maxtor device, you might want to try accessing a share on another physical
(Windows-based) computer. You might also want to use
Scripting.FileS ystemObject and ReadTextFile to read a text file from drive
S:, to see if an ASP script can access simple files from a shared source
(and if this succeeds, the blame'll lay on JET/OLEDB).

- Bob.
Aug 27 '08 #10

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

Similar topics

3
5325
by: Kevin Ingram | last post by:
Is it possible to connect to devices and read SNMP data with ASP? I did a search and all I could find was utilities for sale to do it, wondered if it can be done using straight ASP. We are using InterDev 6, IIS5 on W2KServer. Thanks!
4
2840
by: Peter Larsson | last post by:
Hello everybody, I'm developing a system for a company that has production at two different locations. The production is stored in an Access database at each location, and I need to find a way to fetch data from both these databases and present them to the boss (who is at one of the locations). I've built a report generator in Excel (using VBA) that fetches data via ODBC from the database that's located in the same building. However, I...
6
3886
by: John | last post by:
Hi We have an access app (front-end+backend) running on the company network. I am trying to setup replication for laptop users who go into field and need the data synched between their laptops and the server upon return to the office. I am planning it this; Move all access tables to sql server and then link the tables to access front-end mdb app (using odbc?). Copy the same setup (access front end + sql backend) onto each laptop....
56
5969
by: Raphi | last post by:
Hi, I've been using an Access application I wrote for an office with the front-end stored on all computers and the back-end on one of them serving as an Access file server. Now we're moving to a 2nd office 15 minutes down the road. Only one office will be open at a time, so theoretically it'd be possible to copy the back-end manually every night from one office to another, but frankly, that's pretty annoying.
9
3313
by: Tony Lee | last post by:
Some time a ago, on this newsgroup the following comments were made in recommending good references for Access (2003) >I used to recommend Dr. Rick Dobson's, "Programming Access <version>" for >people moving from power user to developer, but now I suggest you browse >it, >too. It strongly emphasizes ADO, which knowledgeable Microsoft insiders no >longer recommend, and the Access ADP client to SQL Server. He writes well, >and is a good...
3
3493
by: Lyle Fairfield | last post by:
In a recent thread there has been discussion about Data Access Pages. It has been suggested that they are not permitted on many or most secure sites. Perhaps, that it is so, although I know of no site that has this prohibition, and I have uploaded DAPs to various sites and used them from those sites. I do not understand why any site manager would prohibit DAPs. To the best of my knowledge DAPs, as HTM files, are merely hosted on the...
22
8901
by: Nuno Fonseca | last post by:
Anyone knows if it is possible to make a database connection over TCP/IP to an MS ACCESS database? If yes please give me an example or any documentation please. Best regards, Nuno
64
4595
by: John | last post by:
Hello there, Im cursing my place of employment...and its taken me a month to realise it... The scenario: Ive just stepped into a role to migrate an access database to VB.Net. The access database runs on terminal services and supports approximatly 25-30 users. It is crapping out big time, corrupted data, changes to the front end are difficult for someone unfamiliar with the system (me), the table structure is bad...really bad....there is...
0
1293
by: SteveBark | last post by:
Can anyone point me in the right direction as to what control structure I should put in place for the following requirement. I have an Access Server which I have 30 modems connected to. I need to utilise these modems to dial out and collect data from remote devices. The plan is to write a perl script that will process a list of devices to call from an input file read into an array. That array will be the controlling information to be fed...
0
9521
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9333
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9945
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8768
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7324
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5214
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5361
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3442
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.