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 TouchToneTommy 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. mbinfo

    How to stop a Harbour app (ALT-C or CTRL-C)?

    Thank you TonHu. SetCancel() will do the trick. Sorry for the misplaced word "between" in last post. I´m not a native english/american guy. I´m brazilian, so, sometimes words may go wrong in text. One more comment. This "Clipper" forum is almost completely inactive. Where do the Harbour users...
  2. mbinfo

    How to stop a Harbour app (ALT-C or CTRL-C)?

    OK. How can I enable the ALT-C cancel routine? I mean, the program entered an unknown routine between several of them and (I presume) some litlle difference of implementation led to the loop. If I am testing a single new routine and don´t know if everything is going right I usually place several...
  3. mbinfo

    How to stop a Harbour app (ALT-C or CTRL-C)?

    I am converting a large application to Harbour and faced a problem. If a program loops I need to stop it. How? ALT-C and CTRL-C does not work. Any help? Ulisses MBINFO
  4. mbinfo

    Compiler Error C3049 - String Space Exhausted

    By the way, does anyone have a NG file with the description of this message? I have both 5.2 and 5.3 NG files but no one contains it. The same with some rare messages I get sometimes that are undocumented in these files. Thanks Ulisses mbinfo
  5. mbinfo

    Compiler Error C3049 - String Space Exhausted

    I´m going to do this. This source code acomplishes two reports of the main application. I´ll have each one in a separate .PRG and I think global variables won´t be a great stuff to manage. The issue will be to tell the customer he´ll have to wait till tuesday to get the program running. :-)...
  6. mbinfo

    Compiler Error C3049 - String Space Exhausted

    I´m using 5.2e and did not find the description for the message on subject in the manual nor in the Norton Guides. Google did not find any reference! A search here in Tek-tips also returned 0 occurrences. The problem: A big program, part of a big application, was used to compile with no errors...
  7. mbinfo

    How to print to a Serial Printer (COMn) under XP?

    I have an application running well under W98, with serial printers. The approach used is SET PRINTER TO COMn and then print all data using Qout() and QQout(). When one of my customers moved to XP its serial printer is working no more. Under DOS, the copy command does its job and the printer...
  8. mbinfo

    Wrong Time function Ouput

    Thank you. I'll search for a new Blinker Version and try to squeeze this bug's throat. Ulisses / mbinfo
  9. mbinfo

    Disable Keyboard Shortcuts

    Sware, In Win98 and 2000 (and probably in XP also) there is a tab in the "Properties" of the PIF on the desktop that allows you to disable almost all the CTRL- and ALT- combinations used by windows to navigate from within your application through the desktop and other windows functions. In...
  10. mbinfo

    Converting tab-delimited file to comma delimited

    I hope I'm not coming too late for a simple solution. Why don't you write only: use myfile append from mytext.txt delimited with (chr(09)) Is there any reason not to work? Ulisses mbinfo
  11. mbinfo

    Wrong Time function Ouput

    This one is the only machine showing the problem, not the only one with 2kPro. The OpSys id is only to try a clue. I suspected hardware problems but the windows clock is working correctly. Thanks Ulisses / mbinfo
  12. mbinfo

    Wrong Time function Ouput

    I have an application running in many customers with several OpSystems with no problems. One of them reports now one machime running Win 2k Pro that gets always a fixed time whem the function time() is executed. Although the windows clock is working fine. I coult not get to the problem to...
  13. mbinfo

    Keyboard/character set for DOS applic.

    First of all thank you for your response. My closest customer showing the problem is 60 miles away and we are scheduled to show up there next friday (11/11). I'll check these questions and give a reply as soon as possible. I'll try your other sugestions too. My only XP is running OK and I did...
  14. mbinfo

    Keyboard/character set for DOS applic.

    I am from Brazil and I have an application running well in many machines. In portuguese we use the Code Page 850 in order to have access to all letters needed, like that obtained in HTML with á õ ç etc. Most of my users are now using XP and I'm facing a problem: Some of the...
  15. mbinfo

    Download a File with extension TXT

    Sleipnir214, Yes and yes. Here is my complete set of headers: header("Expires: 0"); header("Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private", false); header("Content-Type: application/octetstream...
  16. mbinfo

    W98 Server with W2000/XP Client

    I read elsewhere something about W98 having a FAKE lock system and not a REAL one. Is that true? If it is, that's the cause of these problems. My customers are allways recommended to change their servers to Linux or W2k or NT every time they show up with a W98. Ulisses
  17. mbinfo

    Unrecoverable error 667: Eval stack fault

    Programs in Clipper use EMS memory type. If your EMM386 states NOEMS you are in trouble with performance. If you don't have EMS all the processing and memory usage is done below 1Mb (in fact below 640k) and DISK. You can change NOEMS to RAM in order to have EMS memory available to Clipper. Also...
  18. mbinfo

    Get all $_POST variables

    If your products are defined in a prefixed order - as in an array - you could send value as an index to that array, and colect the indexes in a new array. After the submit, run thru the second array reading the indexes to the first array. I'm doing this and it is working fine.
  19. mbinfo

    Download a File with extension TXT

    Thank you sleipnir214, but the (loooong) discussion only told me some things I already knew. There is one item - about file names appended to URL's - that is significant for me. Although I'm NOT sending the file name with a URL, my browser IS Netscape 7. With IE the file name problem did not...
  20. mbinfo

    Download a File with extension TXT

    I'm trying to download a file named N5AETC.TXT. What must be the specified at the Content-Type field of the header? I tried several options. When using 'text/plain' the result changes to a display, not a file. If it is 'application/text' it appends a .php at the end of the file name - already...

Part and Inventory Search

Back
Top