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 Chriss Miller 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. mpastore

    report in duplex mode

    Hi, Just a follow-up to last week's duplexing question. I found that if I do not save printer environment settings and keep the following in the .expr field of row 1 of the .frx file, any printer I point to will duplex, if it has that capability. ORIENTATION=1 PAPERSIZE=1 COPIES=1...
  2. mpastore

    report in duplex mode

    mgagnon, I also see this in my report. I think though the tag/tag2 binary fields also need to be updated in order to have duplex go dyanmically to other printers. The link stella gave me speaks to this. I'm doing additional testing and will post my results. Thanks Mike Pastore Hats off to...
  3. mpastore

    report in duplex mode

    No, that did not work. The VFP documentation makes reference to the NOPAGEEJECT command for duplexing, but I can't figure out how to put it together. Mike Pastore Hats off to (Roy) Harper
  4. mpastore

    report in duplex mode

    Duplex is when the report prints on both sides of the paper. Mike Pastore Hats off to (Roy) Harper
  5. mpastore

    report in duplex mode

    Hi, I have a report that I would like to make duplex. Can this be done programatically? Thanks Mike Mike Pastore Hats off to (Roy) Harper
  6. mpastore

    Loading VFP 8 on a server

    Thanks for the feedback, Rick. Mike Pastore Hats off to (Roy) Harper
  7. mpastore

    Loading VFP 8 on a server

    Hi, Hope this is the appropriate forum for this question. I would like to avoid doing a full VFP 8 intall on a workstation for development purposes. Would rather be able to access required executables from a network folder so that I can write code and compile. Is this possible? Thanks Mike...
  8. mpastore

    Linked table size - text file

    I'd wager it is the size. In the past I have taken 2 routes to handle files of this size: 1) Partition the file into a series of smaller files based on something like date. i.e. FY96, FY97, FY98, etc. The shortcoming here is that your queries will have to account for different files. 2)...
  9. mpastore

    Query Help

    nix my example, it does not work, should have tested before posting. Mike Pastore Hats off to (Roy) Harper
  10. mpastore

    Query Help

    select agentid,agentname from mytable group by agentid,agentname having count(*) > 1 Mike Pastore Hats off to (Roy) Harper
  11. mpastore

    Only return part of a field in query

    Why not just: select left([myfield],len("Mac Industries")) from mytable? This assumes all the fields have "Mac Industries" as the prefix. Mike Pastore Hats off to (Roy) Harper
  12. mpastore

    CREATE A CUSTOM FIELDS IN A TABLE

    You can do it in 2 steps: docmd.RunSQL("alter table table1 add column myfield text(10)") docmd.RunSQL("update table1 set myfield ='KLONDIKE1 '") Mike Pastore Hats off to (Roy) Harper
  13. mpastore

    Expression too complex in query expression

    I would just use a reference table called tbMonthsBack like: monthsback desc 0 0-3 1 0-3 3 0-3 4 4-6 5 4-6 etc... Then you can just join to this table to get your description... Mike Pastore Hats off to (Roy) Harper
  14. mpastore

    VFP job scheduler?

    It looks like that is where we may head...but job scheduling can really get pretty intense, we have over 200 jobs that run at different intervals and have multiple dependencies. Mike Pastore Hats off to (Roy) Harper
  15. mpastore

    VFP job scheduler?

    Does not have job dependenciy, reporting capability Mike Pastore Hats off to (Roy) Harper
  16. mpastore

    VFP job scheduler?

    Hi, Hope this is the appropriate forum for this question. We are looking at switching our daily job scheduler to another product. We use a lot of VFP and would like a product that uses .dbf file structures to manage job queues. We are currently using a btrieve-based product. The product...
  17. mpastore

    Tables that must be updated by different forms

    Add the primary key to the second table. Mike Pastore Hats off to (Roy) Harper
  18. mpastore

    Unmatched records

    If you just want to know what table a records are not in table b select * from tablea where stuid not in (select stuid from tableb) ...do the opposite to find tableb records not in tablea. If you want to find records where the stuid's match between tables but there is at least one...
  19. mpastore

    Unmatched records

    Does each table share the same primary key? Mike Pastore Hats off to (Roy) Harper
  20. mpastore

    UNION SELECT question

    Yes, eash "," is considered a pseudo-column on the bottom query, You could put place-holders on the top query in order to make them match, the widths will have to be the same. Mike Pastore Hats off to (Roy) Harper

Part and Inventory Search

Back
Top