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 strongm 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: pbsd
  • Order by date
  1. pbsd

    S87 and XP sorting problems

    Try running the program from a shortcut using the XP compatibility mode for Win95 or Win98 applied to the shortcut. I think this selects "command.com" automatically for you when it opens the command shell.
  2. pbsd

    Help for the newbie.

    Safest approach is to put all exe's, dbf's, and ntx files into the same folder and run the .exe from there. Data in dbf's should be picked up from that folder unless programmer has coded specific paths into the program itself. As long as exe's are doing the job, you won't need Clipper itself...
  3. pbsd

    W98 Server with W2000/XP Client

    A few years ago I had NTX corruption on a Win 2K server, so I did all the database operations locally on the workstation and then copied the database back to the server for storage. If you have multiple users simultaneously updating the db from the server, then this might not be possible...
  4. pbsd

    Printing with Lexmark under Win XP

    Set the printer up as a shared printer through a server or PC, ie., \\server\sharename. Then, RUN ("Net Use lpt1 \\server\sharename /persistent:yes") All lpt1 output will be routed to the shared printer with this command. To disconnect, RUN ("Net Use lpt1 /delete") HTH.
  5. pbsd

    Modify Structure of .dbf

    I found the CLUT program on the Simtel web site and it allows you to work with CDX index files as well as NTX in a DBU format. It is a lot more versatile than DBU. http://www.simtel.net/pub/pd/13996.html
  6. pbsd

    Starting Windows Apps From Clipper

    Use "command.exe /c" if you are running under Win 9X. Use "cmd.exe /c" for Win 2K and (maybe, XP - I haven't tried XP with Clipper yet).
  7. pbsd

    Starting Windows Apps From Clipper

    For Windows 2000, you'd be better off using the short file name path for the Word program in your RUN command (if you don't want to use a batch file as suggested by TonHu): C:\PROGRA~1\MICROS~1\OFFICE\WINWORD.EXE M$ (intentionally?) wrecked some of the DOS command compatibility between W9X...
  8. pbsd

    Installing Clipper 5.3

    Forget the work bench. It was full of problems that CA never fixed (I suspect they knew Ver. 5.3b would be the last Clipper ever).
  9. pbsd

    Old Clipper 5 + Blinker 3 application does not work under Windows XP

    If it's linked in "real mode" it may not run at all in XP. XP has a "compatibility mode" feature where you can make the exe think it's running in a Win 9X environment. Have you tried that?
  10. pbsd

    DOS Command Line Parameters For Wordpad/Notepad/Write.

    Here's the web site for the AutoIt home page: http://www.hiddensoft.com/AutoIt/ For Ton Hu - here's the script: run,notepad.exe %1% send,!f send,t send,{TAB 5} send,.75{TAB} send,.75{TAB} send,{DEL}{TAB} send,{DEL} send,{ENTER} send,!e send,f send,courier new{TAB} send,bold{TAB} send,10{ENTER}...
  11. pbsd

    DOS Command Line Parameters For Wordpad/Notepad/Write.

    There is a program out there on the Web named "AutoIt" that lets you create *.exe's out of its "macro" capabilities for Windows. With AutoIt, I made a little program that sets margins and fonts in Notepad before printing a text file. In my Clipper code, I shell out to the...
  12. pbsd

    dos-clipper conversion to visual clipper

    I've used Clip-4-Win for 6 years now and am very comfortable with it. However, it creates 16-bit programs which are not too much in favor these days. But, I've run the same program version on Win 9X, Win 2K, and Win XP without any problems. Took about 6 months to learn how to structure the...
  13. pbsd

    () vs &

    I got curious about this question snd wrote some small test prgs. So, FWIW: Using Clipper 5.3b, Exospace, and NTX indices: cDBF:="DBF" cIDXKEY:="FIELD" cIDXF:="TEMP" The following code worked: USE (cDBF) INDEX ON &cIDXKEY TO (cIDXF) USE (cDBF) INDEX (cIDXF)...
  14. pbsd

    using clipper application to locate files

    Be csreful when checking for the file name. Being 16-bit, Clipper's Directory fumction returns only DOS 8.3 file names, NOT long file names.
  15. pbsd

    Problem PRINTING with Windows Printers

    You can also use "write /p [file name]" from the DOS command line to print files with WordPad (instead of Notepad).
  16. pbsd

    Printing Under Windows

    >> All I want it to do is to print some plain Ascii-reports. I allways write the the (ascii)reports to a file, show it on the screen, and then the I can decide to have it printed by pressing a function-key. << Have you tried printing your file from a WIN 98 DOS window with Notepad? ex.: RUN...

Part and Inventory Search

Back
Top