Search found 32 matches

by dougtanner
Tue Jun 12, 2012 5:03 am
Forum: Xbase++ Support
Topic: Xbase++ and Windows 7 64 bit do not work together
Replies: 4
Views: 10312

Xbase++ and Windows 7 64 bit do not work together

I am successfully running Xbase++ applications compiled with Xbase++ 1.90.355 Apr 9, 2009. All compiled on a Windows XP machine. My company wants to upgrade to Windows 7 64 bit. However, when I compile my applications on the Windows 7 machine they do not run. They also give me a "Possible DLL versio...
by dougtanner
Wed Jun 06, 2012 5:22 am
Forum: Xbase++ Support
Topic: Hide Xbase++ application
Replies: 6
Views: 12072

Re: Hide Xbase++ application

Thanks Roger,

That code does what I wanted to do. I like Tom's idea of creating a service too.

Doug
by dougtanner
Tue Jun 05, 2012 6:34 am
Forum: Xbase++ Support
Topic: Hide Xbase++ application
Replies: 6
Views: 12072

Hide Xbase++ application

How can I hide an xBase++ application so it is not visible on the desktop and on the windows task bar. I want an application to wake up when a file appears at a network location.

Doug
by dougtanner
Tue Jun 05, 2012 5:53 am
Forum: Xbase++ Support
Topic: CDX Index File errors.
Replies: 10
Views: 22244

Re: CDX Index File errors.

Thanks, Auge_Ohr

Those changes to my dbesys() worked. You and Roger are the best!

Doug
by dougtanner
Mon Jun 04, 2012 12:31 pm
Forum: Xbase++ Support
Topic: CDX Index File errors.
Replies: 10
Views: 22244

Re: CDX Index File errors.

Hi Roger, I added "COMIX" to my DBESYS. Changed my program to the following. It errors when the key length gets to 121. What am I doing wrong? Doug PROCEDURE MAIN LOCAL mDBPath := "" LOCAL mDBIndex := "TESTCDX" LOCAL cDBKeyC := "KeyField" LOCAL bDBKeyC := {|| FIELD->KeyField} FOR mLen := 1 TO 140 IF...
by dougtanner
Mon Jun 04, 2012 10:26 am
Forum: Xbase++ Support
Topic: CDX Index File errors.
Replies: 10
Views: 22244

Re: CDX Index File errors.

Hi Roger,

" What is your reason for not liking COMIX?"

Fear of the unknown and I couldn't get it to work. I tried adding:
DbeInfo( COMPONENT_ORDER, CDXDBE_MODE, CDXDBE_FOXPRO2X )
and it still didn't work. How can I enable COMIX?

Doug
by dougtanner
Mon Jun 04, 2012 9:06 am
Forum: Xbase++ Support
Topic: CDX Index File errors.
Replies: 10
Views: 22244

Re: CDX Index File errors.

Thanks for you help. Alaska support agrees that the documentation is misleading (Translation "It's Wrong") and recommends limited the length of the key for CDXs to 100 characters. Without much effort, I can rewrite the code. I would prefer not to go with COMIX or FOXPRO2. (Alaska said, and I verifie...
by dougtanner
Sat Jun 02, 2012 8:52 am
Forum: Xbase++ Support
Topic: CDX Index File errors.
Replies: 10
Views: 22244

CDX Index File errors.

I have a problem when a .CDX is created in the following example. The index key is 140 characters with the field “Collection” included. xBase++ does not like this length and errors when the index is opened. It I remove “Collection”. The key index length is 85 and the program does not error. The docs...
by dougtanner
Fri May 04, 2012 7:40 am
Forum: Xbase++ Support
Topic: Slow Printing in Alaska
Replies: 6
Views: 12077

Re: Slow Printing in Alaska

I got a response from Alaska Support. They pointed out that if I change to file to a local hard drive file, the time dropped to 2.15 seconds. I was able to duplicate those results and will change my program to now print to a local drive.

Doug
by dougtanner
Fri May 04, 2012 7:10 am
Forum: Xbase++ Support
Topic: Slow Printing in Alaska
Replies: 6
Views: 12077

Re: Slow Printing in Alaska

When I created my own DevPos() and DevOut() to print reports to a file, the time went down to 1.2 Seconds. From 12.9 seconds in Clipper and 126 seconds in Alaska. That is the solution I am going to implement. Users are always happy when you make the application runs 10 times faster. Ten times slower...