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 bkrike 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: *

  • Users: RussA
  • Content: Threads
  • Order by date
  1. RussA

    Find and set the default path to a project

    If I have a FPW90 project on my USB flash drive and work on that project on different pc’s with different paths to that USB flash drive. Is there a simple command / code that will find and set the default path to that project? Thanks in advance. Russ A
  2. RussA

    Reports not printing from users default network printer

    Hi, I want my app to print to the users default network printer. It currently prints from my network printer. I have tried “Set printer to default” and “GETPRINTER()” without any luck. So far the only way I can change the printer is in report properties before I compile the EXE. Any...
  3. RussA

    Install all necessary files into one dir VFP6

    Is there a way to install all the necessary files that make a FoxPro 6.0 app run into a single directory? My objective is to avoid all the red tape involved with installing an app on a locked down drive. All the PC’s involved have a directory that is allocated for all our apps, so creating new...
  4. RussA

    Copy file error

    I assume I’m getting this error message due to the special characters in the file name, is there a way around this in FP60 / Windows2000 without renaming the file? Thanks in advance Russ A record in the table has these values in the two fields. cDestNam = C:\FPW60\CDM02\FIRST AND SECOND...
  5. RussA

    view a .jpg via Internet Explorer

    I’m looking for an easy way to view a .jpg via Internet Explorer using FoxPro 6.0. Thanks in advance.
  6. RussA

    Add 100 fields to an existing table

    I would like to add 100 fields to an existing table, what do I need to change to make this work? Thanks in advance Russ. For x = 1 to 100 field_name = "col" + str(x) Alter TABLE table_name ADD COLUMN field_name n(10,2) NULL Next x
  7. RussA

    Performance techniques?

    I’m working on a program that needs to be accessed from more than one location, but only one user at a time will be allowed access the program. For that reason I need to use the network which is dragging down the performance of my program. I’m doing my best to avoid using the network like...
  8. RussA

    Tables from an MS Access Database into FoxPro

    Is there an easy way to import tables from an MS Access Database into FoxPro using VFP6 code? I have no problem doing it manually but I would like to automate the process. Thanks, Russ A =)
  9. RussA

    I don’t want my program to run on any other PC.

    I want my program to run on one specific unit. I have access to this unit and could just install the software every time I make an update but that would be too inconvenient do to its location. I want to avoid sending the install disk to the user because there is nothing to prevent the user...
  10. RussA

    I want to avoid having my program installed on other PCs

    I want to avoid having my program installed on other PCs. If I have the PC in advance, is there info I can get from that specific PC that my FP60 program can check for before it continues. This way the original install disk can stay with the PC. Thanks in advance Russ A =)
  11. RussA

    I want to add new fields that exist in another database

    Is there a simple way in FP60 to combine the fields from two tables? In other words I want to add new fields that exist in another database to my table with out using table designer. Just like appending records but instead appending fields. Thanks in advance Russ A.

Part and Inventory Search

Back
Top