Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BryonB

    Logging in through Citrix changes file associations

    I have two servers that are getting the file associations for .HTM and .HTML files changed to HTTP, instead of htmlfile when a user logs in via an ICA connection. It does not happen when logging in through terminal services. I've verified that it happens with multiple user profiles, so I don't...
  2. BryonB

    dual monitor

    In Windows, applications usually only span one monitor when you maximize them. For some reason, the setting in Citrix to "Maximize on Startup" causes applications running in Seamless mode to span both monitors, regardless of what default resolution I set for the application. This seems like a...
  3. BryonB

    Upgrading XPe to PS 4.0

    I just upgraded a test server, and haven't noted any issues yet. You have to install a bunch of stuff before you can do the install though: Windows Installer version 3.1 Mirosoft .NET Runtime version 1.1 Java Runtime version 1.4.2.06 or higher It's probably a good idea to make sure your...
  4. BryonB

    dual monitor

    I have this issue also. It didn't seem to be a problem until the latest versions of the Citrix client. But if someone knows a way to configure Citrix to restrict itself to one monitor or the other, that would be really cool. I use primarily the web client.
  5. BryonB

    Xerox Workcentre Pro 412 Printer in Citrix

    I think we may have found at least a temporary solution. I read somewhere that this printer does PCL emulation, so I set up the print share to use the HP 4000 series PCL6 driver. The folks onsite report that it seems to be working, at least with our application.
  6. BryonB

    Xerox Workcentre Pro 412 Printer in Citrix

    Has anyone set up Citrix printing to a Xerox Workcentre Pro 412 printer? We have a dedicated print server (a Windows 2003 Advanced Server cluster) on which I have set up a print share (available to Everyone via standard TCP/IP port) to make this printer accessible to our Citrix farm. When users...
  7. BryonB

    Windows Foxpro 2.6 SYS() question

    I just fired up FPD 2.6 and typed "Help SYS(2027)", and got the following explanation: =========================================================== SYS(2027,<expC>) ----------------------------------- Returns a path with the shorthand notation for the Macintosh. Return value - Character...
  8. BryonB

    Is it possible to embed a dll into an exe?

    You can embed a .dll file inside an .exe. You just can't declare functions or call them from the DLL without writing it to an external file first. You could include the DLL in your project with a modified name, say with an underscore added (You have to use an altered name, or code that...
  9. BryonB

    Terminal Server - this a hole or what?

    If you look at the Permissions defined in many places, you may see a user called &quot;TERMINAL SERVER USER&quot; listed with explicit rights to many items. This is a NT AUTHORITY type user, like SYSTEM. I'm not sure, but you may be able to add this user to the local Users group, and limit its...
  10. BryonB

    Interesting Problem

    It seems like the user interface you're trying to simulate would best be served by an option group control (radio buttons) instead of two checkboxes. Your two options are mutually exclusive (you can have either one checked, but not both) so it seems like this would make more sense to users. The...
  11. BryonB

    SetForegroundWindow API in WinXP

    I think the rule in Windows 2000/XP is that an application can't bring itself to the top, but another application can do it. I've found that a windows scripting object can sometimes get the job done. The WScript.shell object has an AppActivate() method that works. It takes a window caption...
  12. BryonB

    W2k and metaframe xp 1.0 server freezes

    Has anyone else run into this? I'm getting this on one of my servers also. On my server it only seems to affect certain users, and only Citrix connections (Terminal Server connections work fine). The affected users try to launch a Citrix app. and their connections hang. I see multiple error...
  13. BryonB

    Loop through results of DIR() function?

    With the ADIR() function, you just have to be careful that you don't use it in such a way that you'll get more than 13000 files in the resulting array - or you'll get an error. ADIR() returns an array, and arrays are limited to 65000 elements. Since the array has 5 columns (at least in VFP 7)...
  14. BryonB

    Need grid blank upon opening form

    Or you can bind the grid to a local view over the table - open the view with the NODATA clause initially, then when you know which records to display, you can requery the view. This works especially well if the view is parameterized (so you can specify which values to view for different grid...
  15. BryonB

    Timers Won't Fire

    I had a similar problem with timers not firing in an abstract class I was working with a while back. The only workaround I could find was to make sure some sort of event loop was in place. Instantiating a non-modal form and issuing a READ EVENTS got all the timers firing. I'm working in VFP 7.0...
  16. BryonB

    copying comlete records to new table

    Oops! I almost forgot! You can also use SQL SELECT to copy the records directly to the second table: SELECT * FROM <Table1> WHERE <Conditions> INTO TABLE <Table2> - or - SELECT * FROM <Table1> WHERE <Conditions> INTO CURSOR <CursorName> As of VFP 7.0 you can also include the READWRITE...
  17. BryonB

    copying comlete records to new table

    Another technique that works well for me, at least to copy/insert new records, is to use SQL SELECT or COPY TO ARRAY to copy the desired records into an array. You can then use SQL INSERT to insert the record(s) into the second table/cursor from the array. This works if the two tables have the...
  18. BryonB

    Visual FoxPro 7.0 - Form Data Environment

    You could also try something similar to what I suggested for the following post: thread184-482927 hope that helps. - Bryon
  19. BryonB

    Terminal Services Printing Problem

    I believe that mapping the network printer to a local drive does work. The only other way I know of to get network printers from the local PC mapped is to use Citrix, which runs on top of Terminal Services. Citrix adds a lot of other capabilities too, but is pricey to license.
  20. BryonB

    Reinstalling Terminal Service

    I ran into the same problem on a test server. Re-installing Terminal Services overwrote at least one registry key that Citrix had put something in. I don't remember now what keys were affected, but I was able to fix them without re-installing Citrix. In retrospect though, it would probably have...

Part and Inventory Search

Back
Top