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: RichardH
  • Content: Threads
  • Order by date
  1. RichardH

    sys(3)

    Can anyone tell me more about sys(3). I know it generates a randum number, but what is it based on. Will it always be unique over time and on different computers. I want to be able to generate randum numbers on different computers and be sure that they are all unique. Thanks
  2. RichardH

    Unicode support

    Can anyone tell me if Visual Foxpro is Unicode compliant (http://www.unicode.org) and if so, what version of Unicode and VFP. Thanks.
  3. RichardH

    Printing to PDF file

    In my application I allow the user to print to an Adobe PDF file by selecting "Adobe PDF Writer" as the printer. This works fine except that it always assigns a default file name of "Visual FoxPro.pdf". Is there anyway to change that? Thanks...Rick
  4. RichardH

    Report pages

    I would like to print "Continued on Next Page" on the bottom of each page of a report except the last page of the report (or the first page, if it is a single page report). I know about the "Print When" option, but don't know if there is a statement I can use to determine if...
  5. RichardH

    Frontpage 2002 Discussion Web is terrible

    I just upgraded from FrontPage 98 to FrontPage 2002 and am not happy. The one and only reason I use FrontPage is to create and manage a web discussion group. Not only are there no enhancements in the 2002 version, but it has a problem that in my mind makes it unusable. When a visitor posts a...
  6. RichardH

    Email problem with Outlook XP

    I have been using code similar to this to create a bulk email for everyone in the table mydatabase: scan oApp = createObject("Outlook.Application") oMail = oApp.CreateItem(0) oMail.to=alltrim(mydatabase.emailaddress) oMail.subject = "Subject here" oMail.body =...
  7. RichardH

    Pocket PC and Visual Foxpro

    Does anyone know of development software that can be used to build a simple application the runs on a Pocket PC that reads and writes data to Visual Foxpro or Dbase files? Thanks...
  8. RichardH

    Pocket PC and Visual Foxpro

    Does anyone know of development software that can be used to build a simple application the runs on a Pocket PC that reads and writes data to Visual Foxpro or Dbase files?
  9. RichardH

    Grid Update Problem

    I am having an intermittent problem updating a Grid. It involves two forms. On the first form is a Grid that displays the payments received from a single customer. I have the Grid Recordsourcetype property set to 1-Alias. To populate the Grid I use these commands in the Refresh method of...
  10. RichardH

    MS-Access and ODBC

    I am trying to setup a link to Visual Foxpro tables using ODBC. I am able to open all of the linked tables in Access except one. When I try to open it I get the message: "The form or report is based on a query that exceeds the limit for data in a single record" The Visual Foxpro...
  11. RichardH

    ODBC link to Visual Foxpro

    I am trying to setup a link to Visual Foxpro tables using ODBC. I am able to open all of the tables except one. When I try to open it I get the message: "The form or report is based on a query that exceeds the limit for data in a single record" The Visual Foxpro table has 169...
  12. RichardH

    Image Refresh

    When I include an image on a form and assign the picture property as “mypicture.jpg” the image displays, then I copy a different image into the same file name “mypicture.jpg”. The new image will not display until I exit and restart VFP6. Is there any way I can display the new image without...
  13. RichardH

    Creating Labels with VFP6.0

    When I try to create a new label layout in VFP6 for example with the command CREATE LABEL MYLABELS, it get the message "No label layouts found". When I try this with VFP5 on the same computer it gives me a list of Avery labels to choose from, which is what I want. Microsoft in...
  14. RichardH

    Printing Word document from VFP

    I am using the following code to print a Word 2000 document from VFP6. oWord=CREATEOBJECT("Word.Basic") oWord.FileOpen ("MyLetter.doc") oWord.FilePrint It prints to the default printer. Is there a way I can prompt the user to select a different printer?. Like when using...
  15. RichardH

    Printing Word Mail-merged letters from VFP6

    I want to print Word 2000 mail-merged letters for my VFP application. For example I have created a document in Word “Myletter.doc” and bookmarked the fields “contact” and “company”. Then in the application I have used this code: USE customers public oWord scan...
  16. RichardH

    How to launch a Web Browser from VFP

    Is there a way to launch a web browser and go to a selected url. I am using VFP6 and I would like to have a field on a form for “Website”. Then if the user clicks on the field (or a command button next to it), the browser will start and take them to the website. Thanks...Rick
  17. RichardH

    Espia Imaging

    I have been using Espia Imaging verison 3.0.0.1 in My VFP5 application for years and it has been great until the introduction of Windows ME. Now my users are experiencing lockups when Espia is loaded or shutdown. Since Espia is no longer supported, does anyone know of a fix. Thanks Rick Hilton
  18. RichardH

    Customizing VFP System Menu

    I am posting this again because I didn't get an answer that worked last time I posted it. I hope that doesn't mean it is impossible. I want to customize the View portion for the VFP System Menu that is diplayed when my users modify reports. I don't want them to be able to Preview reports from...
  19. RichardH

    Modifying the VFP System Menu

    In VFP 6.0 is there a way to remove "Preview" and "Data Enviroment" from the View menu that is dislayed when modifying a report. I know how to modify the system menu _MSYSMENU and about SYS(2013) which displays many of the system menu names but not the ones I am looking for...
  20. RichardH

    Import / Export memo data to Excel or ASCII

    When I import and export data with the IMPORT/EXPORT or COPY TO /APPEND FROM commands, the memo fields are ignored. Is there any way around that?

Part and Inventory Search

Back
Top