Link to home
Start Free TrialLog in
Avatar of WilliamReid
WilliamReid

asked on

What are the implications of using an application developed in VB6 over a Citrix network?

I have a VB6 application, as a compiled DLL, which operates on the client desktop (XP) accessing databases on a server. They are planning to make use of Citrix which I believe is a thin client system. I know nothing about Citrix or if my application will work on Citrix. If it will not, where can I find out what changes/re-write will be necessary.

Here's hoping you guys can help.

Will
Avatar of Smallint
Smallint

Cytrix is really a flashback in computers, thin clients (or even terminals) and everything running on a server. Best way to know what to modify in your application is to imagine that several instances of your application are running on the same box and added exists a very strong permissions policies.

Problems I found:

* Creating temporary files. You must have a different name for each session running on shared directoris. If you are simply reading you must not open file in exclusive use.

* Accessing/modifiying registry entries (normally you only will have permissions on HKEY_CURRENT_USER).

* Disk quotas.

Hope this helps a bit.

Take a look here...

http://www.tek-tips.com/faq.cfm?pid=48

Cheers



ASKER CERTIFIED SOLUTION
Avatar of gbzhhu
gbzhhu
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial