473,769 Members | 4,909 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Remote access - TS, pcAnywhere?

Sorry if this is a bit off topic, but I can't seem to find a 'remote
control' newsgroup on my news server. And anyway I know Tony has some
experience of this.

The app is split FE/BE. I'd like remote access to at least the server,
hopefully the whole network. And to be able to upload/download, to install
new versions of the FE to the server (which then get sent up to the clients
at runtime).

What experience does anybody have of this. Is this doable via TS? There
doesn't seem to be any FTP feature in RDP, or have I missed it?

TIA, Mike MacSween
Nov 12 '05
12 3385
The problem is trying to use a JET backend on the server. I agree there
should be no problem with a SQL server backend.

"Chuck Grimsby" <c.*******@worl dnet.att.net.in valid> wrote in message
news:mk******** *************** *********@4ax.c om...

Depends. I can't say as I've had too many problems using a Access FE
to SQL Sever BE over a VPN network. I've updated quite a number of
client's FE's (Forms, Reports, Queries, Modules, etc.) using
automation over the VPN as well (as I mentioned in my previous post).

Neither TS or Citrix were required for either operation.

I'm not certain exactly what problems with this methodology you've
experienced are without more information, all I can say is that it's
worked well for me.
On Mon, 22 Sep 2003 09:48:43 -0500, "paii" <pa**@packairin c.com>
wrote:
Access FE/BE over a VPN with the FE on the remote and the BE on the server
will be very slow and possibly unreliable. I have Access on Windows 2000 TSwith Citrix using the VPN to make the remote terminal connection. This keepsthe FE/BE on the same network.
Be aware that TS is expensive and Access pushes the server hard. Treat eachAccess users as a power user when sizing the server.

"Chuck Grimsby" <c.*******@worl dnet.att.net.in valid> wrote in message
news:0q******* *************** **********@4ax. com...

Wrong technology, Mike. TS is for remote control of a PC. What you
need is a VPN (Virtual Private Network) so you can link the drives on
your system to those on the other system.
Is it do able? Yes! I've used it quite a number of times. There are
a number of ports that will need to be opened in your NAT box and at
the client's Firewall (which ones will depend upon the VPN you
choose), but that's not really a huge task. (Changing the Network
Admin's thoughts on this tends to be the hardest part!)

On Sun, 21 Sep 2003 08:41:32 +0100, "Mike MacSween"
<mi************ ******@btintern et.com> wrote:
>Sorry, not enough info there was there? The clients have a cable
>connection,
>always on and a single server, not a dedicated db fileserver. They're
>behind
>a firewall, though I don't know anything about it. They have part time
>sysadmin who comes in as required. I'm on a DSL connection here, behind >NAT.
>When I can afford it I'll probably get a firewall so I can have a
>permanent IP."Mike MacSween" <mi************ ******@btintern et.com> wrote in message
>news:3f******* **************@ pubnews.gradwel l.net...
>> Sorry if this is a bit off topic, but I can't seem to find a 'remote
>> control' newsgroup on my news server. And anyway I know Tony has some >> experience of this.
>> The app is split FE/BE. I'd like remote access to at least the server, >> hopefully the whole network. And to be able to upload/download, to
>> install
>> new versions of the FE to the server (which then get sent up to the
>> clients at runtime).
>> What experience does anybody have of this. Is this doable via TS? There >> doesn't seem to be any FTP feature in RDP, or have I missed it?

--
Copywight 1994 Ewmer Fudd. All Wights Wesewved. Heheheh...

Nov 12 '05 #11
c.*******@world net.att.net.inv alid (Chuck Grimsby) wrote in
<nn************ *************** *****@4ax.com>:
I avoid the use the subforms, continuous forms, datasheets, etc.
like the plague! But I should mention that I do that in all my
apps, not just the SQL Server ones. (The last time I mentioned
that I got blasted by other members of the group here. I remember
the last discussions on it people, no need to repeat them.)
Personally, I just don't like the "look and feel" of such things,
but in "remote" databases such things lock more records then are
really needed and tend to do nothing but slow things down. Users
may want to *see* a bunch of records, but they are only going to
work with 1 regardless of how many are on the screen. A unbound
list box takes care of that, and won't lock the records.


I don't want to rehash the old discussion, but short lists (<100
records) are very much a needed feature in any application.
Single-attribute lists can be presented in an unbound form with
listboxes. But once you get to several attributes that can become
unwieldy. Also, if you edit a record that has been presented in a
listbox, you still have to hit the server to update the unbound
list.

Have you looked into disconnected recordsets in ADO? I haven't used
them myself, but the whole point of them is to address precisely
the problem you are raising.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 12 '05 #12
c.*******@world net.att.net.inv alid (Chuck Grimsby) wrote in
<8m************ *************** *****@4ax.com>:

Comments in-line...

On Wed, 24 Sep 2003 16:12:00 GMT, dX********@bway .net.invalid
(David W. Fenton) wrote:
c.*******@wor ldnet.att.net.i nvalid (Chuck Grimsby) wrote in
<nn********** *************** *******@4ax.com >:
I avoid the use the subforms, continuous forms, datasheets, etc.
like the plague! But I should mention that I do that in all my
apps, not just the SQL Server ones. (The last time I mentioned
that I got blasted by other members of the group here. I
remember the last discussions on it people, no need to repeat
them.) Personally, I just don't like the "look and feel" of such
things, but in "remote" databases such things lock more records
then are really needed and tend to do nothing but slow things
down. Users may want to *see* a bunch of records, but they are
only going to work with 1 regardless of how many are on the
screen. A unbound list box takes care of that, and won't lock
the records.
I don't want to rehash the old discussion, but short lists (<100
records) are very much a needed feature in any application.
Agreed, but so are long lists. . . .


I disagree with that in regard to UI implementation. You should
never present more than 100 or so items to a user, and any time
you're presenting more than 10 or so, you must have a clear
organizational principle for ordering them that is organic to the
kind of data you're presenting (e.g., invoices should be in invoice
number or date/reverse date order).
. . . What is optimal (for a list box)
seems to depend on the application, so I'd rather not put a number
on it.


Well, I think the issue is lists, not widget, and it doesn't really
make any difference whether it's a subform or a listbox or a combo
box -- more than 100 is something you should design around. I won't
go into the details of how to do that, as it's been discussed a
great deal in the newsgroup. But I will say that it's a pretty
important principle for designing not just user-friendly UIs, but
also helps you to be efficient with resources, since you won't be
dragging lots of unnecessary data across the wire.
Single-attribute lists can be presented in an unbound form with
listboxes. But once you get to several attributes that can become
unwieldy.


I can't say as I've had many problems working with multi-column
list boxes myself, David. As I mentioned earlier, I often use code
or a Stored Procedure to do most of the work for me so perhaps
that's part of it? No idea.


It's not the data retrieval part of it that is problematic. It's
the presentation that I have problems with, and the updatability of
it once you've edited a record in a detail form and then need to
refresh the listbox that displays the same data in the list
version.
Also, if you edit a record that has been presented in a
listbox, you still have to hit the server to update the unbound
list.


That will rather depend upon *how* you populate the list box. If
you use a "User-Defined Function" to populate the list box (or
combobox for that matter, although I've never had a need to use a
UDF on a combo box), there's no need to hit up the server at all
once you're past the initial load. The UDF can update the list
box without the need to link up at all. (Admittedly however, I
usually do though. It gives me and the user some confidence that
whatever they did actually happened.) There's a fairly good
example of using a User-Defined Function in Access help if you
want to give it a try. *Really* nice for long lists of
information, like progress and error reports!


But for multi-column lists of any number of rows, a UDF is far, far
slower than SQL. Yes, I've used UDFs because sometimes what you
need to display can't be done with SQL (or, not efficiently).

But I don't see how that's a fix -- the data still must be
retrieved, it still needs to be refreshed. It's a hit on the back
end, and that's what you were worrying about causing you to avoid
continuous forms.
Have you looked into disconnected recordsets in ADO? I haven't
used them myself, but the whole point of them is to address
precisely the problem you are raising.


I have, and I've used them, I just prefer the other methods. It
isn't a problem however. I should also note that List Boxes are
also rather nice for those cases where the user has to do updates
to multiple records. They can select which records to update
(including the whole screen) and just click on one button, rather
then scrolling through multiple screens of records in a 'hit and
miss' methodology. With a list box they only 'touch' the records
they need to, and don't touch the records they don't need to at
all, regardless if they've narrowed down the selection enough.


That would be a good justification for it, yes, I agree.

But I still don't see any reason to avoid continuous subforms, none
whatsoever.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 12 '05 #13

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

Similar topics

1
3582
by: Bihari Srinivasan | last post by:
I am using two PCs, say PC-1 and PC-2 in a networked environment (TCP/IP). Both of these run Windows 2000. PC-1 is a development platform and PC-2 is a remote debug platform. I have a very simply console application written in VB.NET that is built on PC-1 using VisualStudio.NET. I set the VisualStudio.NET debugging environment to execute the application on PC-2. This works as long as pcAnywhere is NOT installed on PC-2 (it does not...
9
3665
by: Greg Gursky | last post by:
Hello: I'm doing some planning on a potential project with which I need some help. The database at the focus of this question is a MS Access database that is currently accessed by DAO from a local webserver. I need to access the same database remotely through TCP/IP. There will be potentially many transactions coming from both the web server and remotely, so the solution needs to keep the data safe in such an environment. However,...
4
1652
by: Catherine Jo Morgan | last post by:
I'm making a database using the Developer's Edition. The client will need 2 copies of the runtime edition, one for herself and one for her virtual assistant located in another county. Both of these people are running Windows XP. Instead of using replication to keep the two copies synchornized, would it be possible to use Remote Access? So that the virtual assistant would be actually updating the db on the main client's computer? TIA
9
1827
by: D | last post by:
Hi all, I'm investigating a remote access solution for a client. Five employees need to work from home on an Access 2K split db. It's all working well on the LAN, but I wonder what is the best solution for remote access? -I've read that VPN won't work due to speed and corruption issues. -Terminal Services/Remote Desktop worked well during my tests on my XP boxes, but wondering about security issues (sensitive data will be...
1
1834
by: sparks | last post by:
We have some databases in other states that are being used, and contain data. they want to delete 1 field in a table and add another field. on the form they want to change a check box to now be tied to the new field. and change its label. is there a way to do this with a script of some type on users computers that only understand that the shortcut runs the database for data entry?
4
1805
by: kimi | last post by:
Please help me decided the best way to do this... I have a shopping cart web site that stores its data in an SQL server database. The client wants to retrieve daily orders via their access DB on their desktop. I have written macros to connect to the same SQL server, retrieve data and process data on my desktop.
4
2187
by: Aidan | last post by:
Our organization uses IIS6 virtual directories for remote access to the server file system. We also use a frewall and would like to leave as little exposure as possible. When we connect via the Internet to the virtual directory, we can launch the Access 2003 database on our remote computer but it is really a copy of the database on the server at the office. Some users in the office update the database at the same time as the remote users...
52
9983
by: Neil | last post by:
We are running an Access 2000 MDB with a SQL 7 back end. Our network guy is upgrading to Windows Server 2003 and wants to upgrade Office and SQL Server at the same time. We're moving to SQL Server 2005, and, since he already has licenses for Office Pro 2002, he wants to upgrade to that. I've been saying that we need to upgrade to Access 2003, not 2002, even if Office is kept at 2002. We are also looking to do a fair amount of...
2
3765
by: Jobi | last post by:
Hello, I'm currently trying to configure PCAnywhere 10 to go through my work proxy and to my personal network at home. Last night i tried it from my friends house and it worked, granted he's only on a linksys router (which i am as well). I am attempting to use ports data: 1270 and status 10000 but when attempting to connect it just times out. Should i be using different ports or is there something i'm missing? Any help would be greatly...
0
9586
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...
1
9990
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9861
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8869
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
7406
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
6672
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5446
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3561
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2814
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.