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 gkittelson 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. gearhead

    C6 - XP Manifest + Radio Buttons = Black Radio Buttons

    transparent attribute is not supported by OS for themes. some companys have worked around this and i heard that sv is going to release an update to do so as well. HTH
  2. gearhead

    new in clarion 6

    by the program
  3. gearhead

    Touch Screen Monitors with clarion 5

    Just use big buttons for the menu, not a pulldown. HTH
  4. gearhead

    MessageBox and Events

    I cannot tell from your post if you are using ABC but will make that assumption. Check out ResetFromQueue and ResetFromFile in the help file. HTH
  5. gearhead

    How to find out DAT. file (database) version

    There were two clarion DAT file formats and no more that I am aware of. The change happened just at or after 2.108. To find the version of ccvt enter "ccvt !" at the command line.
  6. gearhead

    error 36 - Invalid data file !!

    There is a documented 2gig limit to TPS files and many operating systems have a single file size limit as well; 2-4gig. I do not see how you have a TPS file of the size 4gig. If you have reched this limit your only choice is to reduce the size, possibly by removing the oldest non-used entries...
  7. gearhead

    Two versions of Clarion

    yes, the files are uniquely named. HTH
  8. gearhead

    Web Enabled Printing

    Check the SERVERS printer drivers and settings, this is where the metrics are being calculated. HTH
  9. gearhead

    How can I avoid the Quick start wizard when starting a new ap?

    Check the IDE's INI file in the ..\bin directory for an entry like [Environment] (section) quickstart=on change to quickstart=off if not there simply add it. HTH
  10. gearhead

    Converting old Clarion DOS 2.1 to MS Access

    The DAT file had a format change and the utility you have may be for the wrong version. I think the cutoff was 2.108. If you have a small file to send for testing I would be happy to try. HTH
  11. gearhead

    How to convert from *.dbf to *.tps files?

    There is no 3rd party tool which import data into a topspeed (tps) file which I am aware of. Also it is very risky as data inegrity checks often exist in code and adding "renegade" data may violate the entire dataset when program logic is not considered. HTH
  12. gearhead

    Win 2000 server and Clarion Problem ???

    The vendor has a list of items to review with Win 2000 check this link - http://www.softvelocity.com/test/osfaqs.htm HTH
  13. gearhead

    Looking for basic accounting modules...

    The products at this link http://www.gwduke.com/ have been around the longest (to my knowledge). HTH
  14. gearhead

    Slow performance with Windows XP

    Check: Opportunistic locking, anti-virus software, cache settings ...
  15. gearhead

    Converting .TPS Files to MS-Access or XML

    The file format for the TPS structure has not been published. An ODBC driver is available from the vendor and is sold in multi-packs not single seats. Even then the files may be owner encrypted and not accessible without a "password". It is easier (and often quicker and less costly)...
  16. gearhead

    I need Topspeed C++ Version 3.1

    Actually they did produce a C++ compiler, the last developed version was 3.1 and I think you can still purchase it from the vendor. It is the same compiler that the PSION company OEMs and resells. Which module are you looking for? Have you contacted Softvelocity (www.softvelocity.com)? HTH
  17. gearhead

    clarion general question

    The TPS ISAM file format is only accessible with an ODBC driver which the vendor sells seperately. It is not an ADO providor and is best used in read mode. www.softvelocity.com HTH
  18. gearhead

    Share Violation After some idle time

    I would review the MSKB articles on Opportunistic Locking, Q129202 and Q219022. HTH
  19. gearhead

    Launching .pdf file with Clarion button

    !! !! this will open the file with the associated viewer !! pdfFile = 'c:\myPDF.pdf' !! RetHandle = ShellExecuteA(window, &quot;open&quot;, pdfFile, &quot;&quot;, &quot;&quot;, 1) !! RetHandle = ShellExecuteA(Handle, Op, file, Param, Path, Show) IF RetHandle =< 32 CASE RetHandle OF 0...
  20. gearhead

    Clarion Dos 2.1 Convert to Windows Base

    The core clarion languange statements are the essentially the same and can be cut and pasted. But for the most part windoze and dos are so different you really want to rewrite. I would start with a new dictionary with the data in the windows format and the wizard a new application (or create...

Part and Inventory Search

Back
Top