Search found 113 matches

by jdsoft
Wed Feb 05, 2014 11:47 am
Forum: eXpress++ Support
Topic: How to draw text over a bitmap
Replies: 2
Views: 5062

Re: How to draw text over a bitmap

Hello Roger,

Thank you for the suggestion.
I look in to this today.

Jack
by jdsoft
Wed Feb 05, 2014 6:50 am
Forum: eXpress++ Support
Topic: How to draw text over a bitmap
Replies: 2
Views: 5062

How to draw text over a bitmap

Hello, Assume a bitmap that is a ResourceId or a BMP file. First I load the bitmap, no problem there I would like to ADD one or mort text labels that overlays the bitmap on specific positions. This text is different for every record in the database. Then I want to show this bitmap in an DCREAD GUI. ...
by jdsoft
Thu Jan 16, 2014 2:15 pm
Forum: eXpress++ Support
Topic: merging a DCSAY from a codeblock in a gui-Window
Replies: 8
Views: 10897

Re: merging a DCSAY from a codeblock in a gui-Window

Ok, try this: Procedure Main() LOCAL cVar1,cVar2, x LOCAL GetList := {} cVar1 := "text function" cVar2 := "text udf" @ 1,1 DCSAY "text 1" get cVar1 If .T. // Same result x={||Test2(GetList,cVar2)} Eval(x) Else Test2(GetList,cVar2) Endif DCREAD GUI return Function test2(GetList,cVar2) @ 2,1 DCSAY {||...
by jdsoft
Thu Aug 29, 2013 12:55 pm
Forum: Xbase++ Support
Topic: Large decimal numbers
Replies: 9
Views: 22092

Re: Large decimal numbers

This is how to calculate Mod(97) of any number of digits. // // cNumber = "22152829123456987654322612" // // Check if cNumber with Mod 10,97 (ISO/IEC 7064:2003) model // For ni := 1 To Len(cNumber) nValue := Asc(cNumber[ni])-48 nRet := ((nRet * 10 ) + nValue) % 97 Next ni // // The checksum is part ...
by jdsoft
Wed Aug 28, 2013 4:59 pm
Forum: eXpress++ Support
Topic: The response to the CANCEL did, no longer responding OK
Replies: 6
Views: 11728

Re: The response to the CANCEL did, no longer responding OK

How about DCREAD GUI EXIT after the DCPUSHBUTTON ?

Regards,
Jack Duijf
by jdsoft
Thu Feb 28, 2013 11:37 am
Forum: eXpress++ Support
Topic: DCPRINTON PREVIEW ....
Replies: 4
Views: 7798

Re: DCPRINTON PREVIEW ....

Hello Roger, Thank you for pointing this out. Indeed, i need to click first in the window to make the scroll wheel work. Unfortunaly, the first click expands the view. This makes dissapear my right column out of the view.... Suggestion: Do not expand the preview when clicking in the report. Set a ho...
by jdsoft
Tue Feb 26, 2013 5:35 am
Forum: eXpress++ Support
Topic: DCPRINTON PREVIEW ....
Replies: 4
Views: 7798

DCPRINTON PREVIEW ....

Hello, If a DCPRINT shows a preview, in general my output does not fit. I can use the VSCROLL bar to see the bottom of the page. Unfortunaly, the scroll-wheel on the mouse does not affect the preview. How can i activate the scrollwheel to shift the page up-down (and skip to next/privious page) ? Reg...
by jdsoft
Sun Feb 17, 2013 1:12 am
Forum: eXpress++ Support
Topic: How to create a multi-row tabpage?
Replies: 2
Views: 5963

Re: How to create a multi-row tabpage?

Hello,
Thank you for pointing this out.
This is exactly what i am looking for.
Regards,
Jack Duijf
by jdsoft
Sat Feb 16, 2013 11:21 am
Forum: eXpress++ Support
Topic: How to create a multi-row tabpage?
Replies: 2
Views: 5963

How to create a multi-row tabpage?

Hello, I want to add tab rows to DCTABPAGE. How can i do this? See sample screenshot taken from windows. multitab.png The tab-rows "flip" (up and down) when i click on one of the tabs. If "Algemeen" is visible now, and i click on "Datails" the the second image should be the result. I checked the xde...
by jdsoft
Fri Feb 01, 2013 10:35 am
Forum: eXpress++ Support
Topic: How to update DCTOOLBAR at runtime
Replies: 1
Views: 4823

How to update DCTOOLBAR at runtime

Hello, My main app window has a tool bar. LOCAL nBtnSize := 40 LOCAL nBtwSpace := 1 LOCAL oStatTop := nil LOCAL oTool := nil DCSTATUSBAR oStatTop WIDTH nBtnSize HEIGHT nBtnSize ALIGN DCGUI_ALIGN_TOP TYPE XBPSTATIC_TYPE_TEXT EVAL {|o|o:SetColorBg(GRA_CLR_WHITE),o:SetColorFg(GRA_CLR_WHITE)} @ 0,0 DCTO...