Search found 51 matches

by Tim K
Wed Jan 23, 2013 8:56 am
Forum: Xbase++ Support
Topic: Batch Files Win8 Program Files (x86)
Replies: 2
Views: 7714

Re: Batch Files Win8 Program Files (x86)

I figured out a workaround by having the batch file change to the source directory first. Thanks for getting my mind going in a different direction.
by Tim K
Tue Jan 22, 2013 6:46 pm
Forum: Xbase++ Support
Topic: Batch Files Win8 Program Files (x86)
Replies: 2
Views: 7714

Batch Files Win8 Program Files (x86)

Trying to write a batch file to copy the necessary run time dlls to a data directory. Whether I use %ProgramFiles(x86)% or explicitly with the spaces it can't find the files in the directory. This is the text copied straight from Windows Explorer: "C:\Program Files (x86)\ALASKA\XPPW32\runtime" (quot...
by Tim K
Wed Aug 15, 2012 3:18 pm
Forum: Announcements
Topic: Alaska xBase conference in October
Replies: 5
Views: 17004

Re: Alaska xBase conference in October

Roger, is this a good event? Will you be around and available after Thursday?
by Tim K
Tue Jul 12, 2011 3:24 pm
Forum: eXpress++ Support
Topic: Flexfile memo arrays workaround
Replies: 5
Views: 8952

Re: Flexfile memo arrays workaround

I'm getting a C "math error M6104 floating-point overflow" when L2BIN() in function _dcitem() tries to convert a 10 digit integer (13123020000). I don't see any documentation in the clipper guide on limits on this function. This isn't greater than the largest 32 bit decimal (4294967295), any ideas?
by Tim K
Fri Jul 08, 2011 2:34 pm
Forum: eXpress++ Support
Topic: Flexfile memo arrays workaround
Replies: 5
Views: 8952

Re: Flexfile memo arrays workaround

Shall I pull out the code I need from _dcasave.prg to link into my clipper app? It will have to be usable in my original app since it is the only thing that will read flexfile memo arrays, unless I'm missing something.
by Tim K
Wed Jul 06, 2011 11:48 am
Forum: eXpress++ Support
Topic: Flexfile memo arrays workaround
Replies: 5
Views: 8952

Flexfile memo arrays workaround

Hi Roger:

I talked to you before about my clipper app I want to convert to XBASE++ that uses the Flexfile arrays. You said you were able to use strings to emulate that structure. Do you have a tool or some code to work from?

Tim Kromholtz
Ziegler Lumber Company
by Tim K
Tue Jun 22, 2010 10:46 am
Forum: eXpress++ Support
Topic: dcprint box
Replies: 5
Views: 12178

Re: dcprint box

That worked, by the way, thank you.
by Tim K
Fri Jun 11, 2010 11:30 am
Forum: eXpress++ Support
Topic: dcprint box
Replies: 5
Views: 12178

Re: dcprint box

Thanks, I hadn't considered that. It didn't matter with third party crosshatch boxes. I'll review my code.
by Tim K
Thu Jun 10, 2010 9:01 am
Forum: eXpress++ Support
Topic: dcprint box
Replies: 5
Views: 12178

Re: dcprint box

Sorry, I had so much trouble posting this that when it finally went through I didn't notice it wasn't complete. I'm trying to find a way to print a transparent box. I'm using a colored box which is giving me a gray box on my monochrome printer, but it's opaque. I want to show what I'm printing as we...
by Tim K
Wed Jun 09, 2010 2:45 pm
Forum: eXpress++ Support
Topic: dcprint box
Replies: 5
Views: 12178

dcprint box

aAttr := Array(GRA_AA_COUNT) aATTR[GRA_AA_MIXMODE] := GRA_FGMIX_OR @ TOPROW, LEFTCOL, BOTTOMROW, RIGHTCOL DCPRINT BOX FILL GRA_FILL AREACOLOR 7,1 //GRAY 5 AREAATTR aATTR The following gives me a syntax errror: aAttr := Array(GRA_AA_COUNT) aATTR[GRA_AA_MIXMODE] := GRA_FGMIX_OR @ TOPROW, LEFTCOL, BOTT...