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. mxPavel

    Crypto & Copy Protection Routines

    In order to control who has a "licenced copy" of your exe I like to use the HASP hardware Key (or "dongle") from Aladdin. More of this in: http://www.ealaddin.com/hasp/default.asp?cf=tl There are other's like Sentinel from Rainbow Tech, but I still prefer the one from...
  2. mxPavel

    Error Base 1082

    You are perfoming an operation with the minus (-) sign, but the arguments used are of incompatible types, so, maybe your data is corrupted or changed in some form. If you had the source, review it to try to discover the faulty operation.
  3. mxPavel

    ordcreate (0) Internal Error 8002

    8002: The type or length of the key doesn't match what's stored on disk This error code indicates that a key expression has changed since the index was created. For example, if you had an index on LAST, and changed the width of the field from 20 bytes to 25 bytes, and then tried to use the...
  4. mxPavel

    Clipper for Sun UNIX Options

    To port an xBase app to Unix environment maybe you can use FlagShip, you can check it at: Main site: http://www.fship.com FAQs: http://www.fship.com/faq-fs.html
  5. mxPavel

    Symbols table exausted

    From the Blinker´s manual: "Blinker has reached an internal size limit while compressing the symbol table of a CA-Clipper application. This is extremely unlikely to occur in normal operation. Please contact Blinker technical support with your serial number and exact details of the...
  6. mxPavel

    Printing Under Windows

    This is a very basic procedure to print under Windows, Lantastic, Novell, DOS... I extract this code from my own library, so you can adapt it to your desire. You can use it to write a "black box function" or generic function as I do, so you simple pass parameters as File name, port...
  7. mxPavel

    HELP !!!!! DBFCDX/1011 Write Error

    A write which should have worked failed. This would occur if the media failed, or if a physical lock on the region existed. Be sure to release all file and record locks as soon as you can, to avoid contention. From the NG docs: DBFCDX/1011 Write error Explanation: A write error...
  8. mxPavel

    Migration to XBASE to include GRUMP.CH

    Hi! Check into The Oasis: http://www.the-oasis.net/ Look at the lib section, there you will find the source code of the Grumpfish library, because now is public domain. So, you can take whatever function that you need to translate into xBase. :)
  9. mxPavel

    Hey, clipper programmers !!!

    The official site of xbase++ is: http://alaska-software.com/ They can send to you a full demo CD if you fill the request form (look for it at their web site) They are located in Germany and they send it to me (in Mexico). It arrives 3 weeks later. Best regards...
  10. mxPavel

    Hey, clipper programmers !!!

    The official site is http://alaska-software.com/ They can send to you a full demo CD if you fill the request form (look for it at their web site) They are located in Germany and they send it to me (in Mexico). Best regards...
  11. mxPavel

    Keyprog

    Well, that's the objetive of the Key (or dongle, or keylock, or whatever you call it): If you have the right key connected to the parallel or USB port then the software runs, if not, you cannot use the software. So, you need to get the source code to remove the programmed calls to the key. Try...
  12. mxPavel

    Debugging a clipper application

    Lets see... The things you can INCLUDE in a PRG file are text files with #define's, #translate's and other preprocessor commands, but you can not include a LIB file! Why? Because a lib file is a binary collection of compiled code... So, in order to run the debugger using ALT-D you must place...
  13. mxPavel

    Keyprog

    What do mean with hardware keyprog? Are you taklking about hardware key protection against copy? Please be more specific...
  14. mxPavel

    Debugging a clipper application

    Do you include the cld.lib in your link script?
  15. mxPavel

    Clipper 5.2 Problem

    Hello mfigueiredo! When you declare an inline array like aArray := { x, v, z ...} and its too big the compiler fails with the errror space exhausted... instead, declare it as: Local aArray[100] and then assing values later using aArray[ n ] := xValue This is because at compiler time clipper...
  16. mxPavel

    ..... AND WHAT ABOUT GNU / LINUX ?

    I (and many of us are) interested in the futere of our bussiness. I agree with you respect the main point of this disccussion: we are linked to the OS and we are not free to develop in other ways but those marked by the people that makes the OS. Linux is a great choice and most of us undestand...
  17. mxPavel

    corrupted dbase file

    fbizzell: I still use FileFix sometimes to repair that kind of errors in dbf´s. Bertha: To fix the dbv you must write a routine to "pack" the VLF container, if you wish I can send to you the one I write, my email is pablormc@yahoo.com
  18. mxPavel

    Clipper 5.2 Problem

    Maybe you are running out of conventional memory (that one below 640Kb) and you are declaring inline arrays that are too large. This problem can be resolved by reducing the size and/or number of strings and arrays that are active at any one time. Probably the most common cause of this error is...
  19. mxPavel

    Compiler Error C3049 "String Space Exhausted"

    Maybe you are running out of conventional memory (that one below 640Kb) and you are declaring inline arrays that are too large. This problem can be resolved by reducing the size and/or number of strings and arrays that are active at any one time. Probably the most common cause of this error is...
  20. mxPavel

    Clipper 5.3 generates runtime error with Windows 98

    The R6003 its an error derived of the execution of certain code in some CPU´s including some K6´s from AMD and some of the faster Pentium II, try to link the _wait.obj file with your executable or try a fix driver that loads in the config.sys. I post these in this forum a couple of months ago...

Part and Inventory Search

Back
Top