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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jlucio

  1. jlucio

    How can i Copy record of the same file (duplicate record)

    Try This: // Inside the record wanted Copy Next 1 To Temp Append From Temp // Done Juan Lucio Garcia
  2. jlucio

    Problem PRINTING with Windows Printers

    Install the printer once more. There is a question like "Do you want to print MSDOS? or something like that. Answer yes. and configure output to LPT1 In a Net environment, Use a batch file like this: NET USE LPT1: \\somename\portname MYPROGRAM NET USE LPT1: /DELETE Hope be useful JLucio
  3. jlucio

    First field Focus Missed in FiveWin

    How can I control de first focus in a Edit Screen?. I am using Redefine an have tried SetFocus()in several ways, but nothing seems work. Of course I can position anywhere with mouse, but I need could be done automatically. Thanks for your time JLucio
  4. jlucio

    If I define class in a .prg file. F

    Ramani: Thanks for the tip, but I couldnt find the PrgToVcx zip file. JLucio
  5. jlucio

    If I define class in a .prg file. F

    If I define class in a .prg file. For Example: Forms.Prg ******************* DEFINE CLASS MyForm AS Form Height = 400 Width = 640 . . . etc. ENDDEFINE ******************** I have already the class definition. Suppose that my new library is NewLib. How can I save my first class in this new...
  6. jlucio

    TextBox in a Customer Form

    Thanks Dave and Rick. Mike: I agree with you, but, where must I put de Calling Function?. I have all the normal navigation buttons: Next, Previous, etc. JLucio
  7. jlucio

    TextBox in a Customer Form

    How can I display a variable in a TextBox in a Customer Form?. For example, I want to display only part of a field, for example Left(customer.name,20), and of course, when I move the pointer, changes must be showed. THank you
  8. jlucio

    INDEX ON CHILD TABLE

    chpicker and Ian: Thanks for the tip. I'm going to try via SQL. Both of you agree it is not so dangerous JLucio
  9. jlucio

    INDEX ON CHILD TABLE

    Hi! Here is a clue. In Command Window: SELECT 2 USE CUSTOMER && Fields custid,custname INDEX ON CUSTID TAG CUSTID SELECT 1 USE INVOICES && Fields invid,custid SET RELATION TO CUSTID INTO CUSTOMER INDEX ON CUSTOMER.CUSTNAME TAG NAME BROWSE FIELDS INVID,CUSTID,CUSTOMER.CUSTNAME All seems...
  10. jlucio

    HOW TO ENCRYPT CONTENT OF PRG FILE

    Rick, a simple manner to "hide" your code is put in a ZIP file with a password. That manner, you can put all your .prgs safe and other type of files too. JLucio
  11. jlucio

    Display Number of Invoices for a Customer

    mgagnon: Thanks for the tip. However, all works fine when I tried in the InteractiveChange event of the commandgroup, not in de click envent. The last doesn´t seem to work jlucio
  12. jlucio

    Display Number of Invoices for a Customer

    Hi!. I Know somebody can helpme. In an aplication, I must show how many invoices has each customer in a Customer Form. There are Customer.DBF (Parent) and Invoices.DBF (Child). The problem is that I must count number of invoices for customer as the operator click in Next, Previous, etc. Which...
  13. jlucio

    EASY COMMAND WINDOW

    Can somebody tellme how can I do command window friendly?. In old versions of Fox Pro, something like &quot;Dir&quot; or ? <something> was easy to see in the same window. Now, list are huge. Por example &quot;List Memo&quot; is almost impossible to read.

Part and Inventory Search

Back
Top