Search found 486 matches

by Wolfgang Ciriack
Wed Jan 12, 2022 11:24 pm
Forum: eXpress++ Support
Topic: Ads Remote Server Info
Replies: 24
Views: 11746

Re: Ads Remote Server Info

Hello Roger,
thanks for the link, that works.
I use Firefox not Edge.
by Wolfgang Ciriack
Wed Jan 12, 2022 11:35 am
Forum: eXpress++ Support
Topic: Ads Remote Server Info
Replies: 24
Views: 11746

Re: Ads Remote Server Info

As always: The jpg-file is not clickable, the zip-file is not existing anymore :oops:
by Wolfgang Ciriack
Tue Jan 11, 2022 12:22 am
Forum: Announcements
Topic: eXpress++ Build 268 is released
Replies: 35
Views: 24251

Re: eXpress++ Build 268 is released

Thanks Roger, that works for me.
Now i can go on with build 268.
by Wolfgang Ciriack
Mon Jan 10, 2022 3:07 pm
Forum: Announcements
Topic: eXpress++ Build 268 is released
Replies: 35
Views: 24251

Re: eXpress++ Build 268 is released

The file is there, if i click on it, i can download. So it seems to be a rights problem somewhere on the server/phpbb.
Roger, I have send the problem with an mail and zip-File to you on Friday or Saturday, perhaps it is in your spam ?
But i will send it to you with extension ZIX again.
by Wolfgang Ciriack
Mon Jan 10, 2022 12:34 am
Forum: Announcements
Topic: eXpress++ Build 268 is released
Replies: 35
Views: 24251

Re: eXpress++ Build 268 is released

Hello Roger, i found an error in version 268, which i can not solve. Run the attached sample (extracted from my app) with build 266 and 268. You see, that with 268 all output with HIDE in Group are not refreshed (shown), when selecting an Tree item, which works with 266. Do you have a solution for m...
by Wolfgang Ciriack
Mon Dec 27, 2021 2:39 pm
Forum: Xbase++ 2.0
Topic: Print PDF file in background
Replies: 4
Views: 3069

Re: Print PDF file in background

So you can try (from german newsgroup):

Code: Select all

lSuccess := ShellExecute( 0, ;
                             "print", ;  
                             cPath + cFILE, ;
                             cPara, ;
                             cHome, ;
                             SW_HIDE)
by Wolfgang Ciriack
Mon Dec 27, 2021 7:17 am
Forum: Xbase++ 2.0
Topic: Print PDF file in background
Replies: 4
Views: 3069

Re: Print PDF file in background

Use the Microsoft Print to PDF printer:

Code: Select all

 DCPRINT ON NAME "Microsoft Print to PDF" ;
         TOFILE OUTFILE (<MyfileWithPath.pdf>) ;
 	 TO oPrinter ;
  	 SIZE .... ;
  	 FORMSIZE XBPPRN_FORM_A4 ;
	 TITLE ...
by Wolfgang Ciriack
Wed Dec 22, 2021 10:43 pm
Forum: Announcements
Topic: eXpress++ Build 268 is released
Replies: 35
Views: 24251

Re: eXpress++ Build 268 is released

Here it is: ELSE // aDAttrs[GRA_AS_COLOR] := GraMakeRGBColor(IIF(lEnabled,{0,0,0},{180,180,180})) nColor := ::fgColor IF Valtype(nColor) == 'A' nColor := GraMakeRGBColor(nColor) ENDIF ** Added Ciriack, 18.12.2021 if .not. lEnabled nColor := GraMakeRGBColor({180,180,180}) endif *** aDAttrs[GRA_AS_COL...
by Wolfgang Ciriack
Sat Dec 18, 2021 2:06 am
Forum: Announcements
Topic: eXpress++ Build 268 is released
Replies: 35
Views: 24251

Re: eXpress++ Build 268 is released

Hello Roger, the changes you made because of the color settings in _dcclass.prg will break existing code, the lEnable is not noticed anymore. So f.e. in DCSUBMENU all items are shown as they are selectable. So i added (line 5809): if .not. lEnabled nColor := GraMakeRGBColor({180,180,180}) endif