Search found 1193 matches

by skiman
Wed Nov 28, 2012 4:16 am
Forum: eXpress++ Support
Topic: dcbrowse FIT
Replies: 9
Views: 14963

Re: dcbrowse FIT

Hi Roger, I released a new version of my application with the dcbrowse FIT MAX implemented, and it seems as there is a problem. The horizontal scrollbar isn't working anymore with this clause. I have a DCBROWSE with the following @ 0,0 DCBROWSE oBrowse ALIAS 'bon1' SIZE 115,21 FIT MAX 115 ; USEVISUA...
by skiman
Wed Nov 28, 2012 4:05 am
Forum: eXpress++ Support
Topic: Printing Images
Replies: 4
Views: 7489

Re: Printing Images

Hi,

You would like to use a TIFF because it has multiple pages? Looks the same for PDF to me. :?:

Anyway, if you use PdfCreator, you can create PDF, PNG, JPEG, BMP, PCX, TIFF, PS, EPS, TXT, PSD, PCL, Raw and SVG.
by skiman
Wed Nov 14, 2012 12:13 pm
Forum: eXpress++ Support
Topic: How to attach a datablock to DCACTIVEXCONTROL
Replies: 8
Views: 12331

Re: How to attach a datablock to DCACTIVEXCONTROL

Hi,

There is a html editor available with standard xbase++.

Code: Select all

*     PROYECTO: HTMLEditor                       *
*  Programador: J.A. Diego Kerejeta              *
*       Creado: 14-03-2011                       *
It is available on the xbase++ newsgroup.
by skiman
Mon Nov 12, 2012 10:25 am
Forum: eXpress++ Support
Topic: Printing to multiple trays
Replies: 2
Views: 4913

Re: Printing to multiple trays

Hi Roger,

I'm switching between paperbins, but I always start/stop the printerjob.

With aprintOptions[40] := layout->paperbin I select the paperbin.

I suppose you know that the number of the paperbin isn't 1, 2, ... which would be logical, but can be different numbers. Paperbin 1 can be number 4.
by skiman
Wed Oct 31, 2012 12:50 am
Forum: eXpress++ Support
Topic: Task of color of the chosen field in DCBROWSE DCBROWSECOL
Replies: 4
Views: 8071

Re: Task of color of the chosen field in DCBROWSE DCBROWSECO

Hi Bobby,

Glad to see you are online. I saw the news yesterday evening, and it seemed as Sandy damaged a lot. I don't know if it is in the area where you are living.
by skiman
Thu Oct 18, 2012 12:20 am
Forum: eXpress++ Support
Topic: Strange error creating PDF files
Replies: 7
Views: 12887

Re: Strange error creating PDF files

Hi,

Put a sleep(100) or higher between each document or after each dcprint OFF.

It's just a timing issue. Xbase is sending too fast to the printer driver. I you would printing 10 different Word document to the driver in a few seconds, it would also have the same problem.
by skiman
Wed Oct 17, 2012 2:53 am
Forum: eXpress++ Support
Topic: dc_regquery()
Replies: 6
Views: 8914

Re: dc_regquery()

Hi Rudolf,

Code: Select all

"Computer\HKEY_LOCAL_MACHINE\SOFTWARE\GPL Ghostscript
In your screenshot there is local_USER instead of local_MACHINE? Maybe this the cause?
by skiman
Fri Oct 05, 2012 1:19 am
Forum: Did you Know?
Topic: Using wheel in a Get
Replies: 5
Views: 18256

Re: Using wheel in a Get

Hi Roger,

Looks as this will also work with dates.
by skiman
Wed Sep 26, 2012 12:05 pm
Forum: eXpress++ Support
Topic: dcbrowse FIT
Replies: 9
Views: 14963

Re: dcbrowse FIT

Roger, Yes, works as expected. Thanks for this quick addition. I implemented it in my own browse class, I had to change the following in _dcgetbx.prg: IF !Empty(oParent:fitMax) .AND. nWidth > oParent:fitMax*::colPixels nWidth := oParent:fitMax*::colPixels ENDIF Without the colpixels the maximum widt...
by skiman
Wed Sep 26, 2012 2:17 am
Forum: eXpress++ Support
Topic: dcbrowse FIT
Replies: 9
Views: 14963

dcbrowse FIT

Hi Roger, In my application a lot of browses are datadriven. I can't use the FIT clause, because I don't know how much columns the user will define. Would there be a way to have a DCBROWSE .... FIT MAX 120. So if the calculated width is more than the MAX value, the total width of the browse remains ...