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. Tore Bleken

    Latest VFP Version

    No, I have not used it. I have seen it demonstrated several times, and I will see it presented once more next week, at Virtual FoxFest. But the reality is that I have never had any reason to switch, and I don't expect anything to happen in the future that will make me change my mind. I...
  2. Tore Bleken

    Latest VFP Version

    Yes, 7423 is, and will always be, the last version.
  3. Tore Bleken

    Excel to Foxpro 2.6

    You have nothing to lose by making a copy of all the relevant files to a new set of folders, and try to run it from VFP9. Most likely it will run, but look "funny". This funny look is mostly caused by different fonts. If you change _screen.fontname you can try other fonts. VFP9 installs a font...
  4. Tore Bleken

    Excel to Foxpro 2.6

    I am not talking about rewriting the software in another language, I am talking about upgrading it to work in VFP9. I have done several such upgrades, none took more than one week. And I am willing to assist if you want.
  5. Tore Bleken

    Excel to Foxpro 2.6

    Why don't you take a look at the calendar? It's 2025... DOS is dead, and has been dead for more than 30 years. Upgrade the software to VFP9 before it's too late.
  6. Tore Bleken

    MySql to VFP cursor

    I don't use MySql myself, so I am not quite sure about the syntax. Could it be that you need to add a Where clause? Something like
  7. Tore Bleken

    SQLEXEC crashes VFP

    Too many fields? One or more incompatible field types? Illegal field names? Just guessing.... Anyway, Select * should be avoided, it's better and faster to list only the necessary fields. If you use Thor, SuperBrowse can help you create the Select statement
  8. Tore Bleken

    Report not showing selected records

    Are you absolutely sure that the cursor is the data source for the report? If so, try to add Nofilter to the select statement.
  9. Tore Bleken

    LEDGER PAGE NO.

    My ears hurts when people shout...
  10. Tore Bleken

    LEDGER PAGE NO.

    Again, please don't SHOUT!!! Using UPPER case only is considered SHOUTING!!!
  11. Tore Bleken

    LEDGER PAGE NO.

    Please don't SHOUT in this forum.
  12. Tore Bleken

    how to send Esc code to Epson LQ-590II for draft, courier, etc.

    Make sure that you use a printer driver that passes the data directly to the printer. It's called Generic, text only, or something like that.
  13. Tore Bleken

    VFP Issue with date selection 1/1/25 returns 1/1/1925

    You have already been presented with the right answer. And may I say, the only practical solution. You need to add one or two lines. Both lines involve Set Century. More details at https://www.vfphelp.com/vfp9/_5wn12pevx.htm If you need personal help, email me at <firstname>@<lastname>.no
  14. Tore Bleken

    Using 1 table in 2 different forms

    Then repeat the procedure I showed you!!!!!! There's no other explanation to your problem than Set Exclusive On or a misplaced Exclusive in a Use statement. Or Exclusive=ON in your config.fpw. That means you should also run GoFish and search for the word Exclusive. Remember that the word...
  15. Tore Bleken

    Using 1 table in 2 different forms

    Honestly, are you blind? You showed us the line which says Set Exclusive On, and I told you to change it into Set Exclusive Off. That will fix your problem, why don't you simply do as told????
  16. Tore Bleken

    Using 1 table in 2 different forms

    Of course, and that line is Set Exclusive On!!! Set it to Off, and your problem is solved.
  17. Tore Bleken

    Using 1 table in 2 different forms

    When you get the error, select Suspend. Then type ?Set('exclusive') in the command window, and see the result. If that doesn't help, keep the debugger open when you run the program. Before running the program, select the debugger, and add a breakpoint (ctrl-B), Type =Break when expression has...
  18. Tore Bleken

    Using 1 table in 2 different forms

    You write that Set Exclusive is Off, I say that you're wrong! Scan your code with GoFish, and search for the word Exclusive.
  19. Tore Bleken

    Running Visual Foxpro on local Windows 10 machines, what if any adjustments are needed if I upgrade to Windows 11?

    To run VFP9 on a Win11 machine, whether it's 32-bit or 64-bit, just go ahead. Most likely you won't have any problem. I run the same setup on several machines, no problem at all so far. And no special things to worry about. The only thing you should be careful about, is not to install VFP9 in...
  20. Tore Bleken

    a little confused about the transform() function problem

    In this case, instead of Select ... norekening ... from ..., you write Select ... cast(norekening as char(13)) as norekening ... from .... This will make sure that the field is returned as a string, and your problem is gone.

Part and Inventory Search

Back
Top