Search found 569 matches

by unixkd
Mon Jan 02, 2023 1:41 pm
Forum: eXpress++ Support
Topic: DC_XbpMenuConfig()
Replies: 1
Views: 1942

DC_XbpMenuConfig()

Happy new year to all members. aCfg := DC_XbpMenuConfig() aCfg[11] := GRA_CLR_DARKBLUE // NOT WORKING DC_XbpMenuConfig(aCfg) Joe #include "dcdialog.ch" #include "gra.ch" FUNCTION XSample_9() Local aCfg := DC_XbpMenuConfig() LOCAL GetList := {}, oFileMenu, oMenuBar, oEditMenu, oMemo, oUtilMenu, ; cMe...
by unixkd
Sun Dec 25, 2022 12:52 am
Forum: Xbase++ 2.0
Topic: What Java library or dll can be used to develop a WEB GUI in Xbase++?
Replies: 62
Views: 57423

Re: What Java library or dll can be used to develop a WEB GUI in Xbase++?

What I need most now is to upload a PDF to the browser, display it in the browser. Browsers block PDF views if they are not included in a URL. I would like to know how to create a local URL, to be able to show in the browser, the PDFs that I have created successfully, with the EXpress library. Hope...
by unixkd
Thu Oct 27, 2022 10:22 am
Forum: eXpress++ Support
Topic: Correct handling of execution errors
Replies: 6
Views: 4228

Re: Correct handling of execution errors

Try this, work for me. DC_IsAppRunning() did not work for me #include "dll.ch" #include "WinAPI.Ch" #include "ot4xb.ch" #DEFINE SW_RESTORE 9 FUNCTION IsAppRunning(cExe,cTitle,lRestore,lExactTitle) /* Developed on Windows 98 2nd Edition using XBase++ 1.7 Tested on Windows 98, 2000, and NT 4.0 Richard...
by unixkd
Mon Aug 15, 2022 6:39 am
Forum: eXpress++ Support
Topic: The new ILX portal
Replies: 8
Views: 7598

Re: The new ILX portal

Hi Tom

Code: Select all

I'm happy they didn't waste their limited time with programming such a thing with CX/P.
Are you insinuating that PHP is better than CXP for web application development ?

Joe
by unixkd
Sat Aug 13, 2022 2:49 am
Forum: eXpress++ Support
Topic: The new ILX portal
Replies: 8
Views: 7598

Re: The new ILX portal

Code: Select all

I am surprised that it is written in PHP instead of CXP.
This is a very pertinent question as by Roger. That was what came to my mind when I first visited the new portal.

Joe
by unixkd
Mon Aug 08, 2022 12:46 pm
Forum: eXpress++ Support
Topic: How can I default first element in DCBROWSE with editor
Replies: 1
Views: 2522

How can I default first element in DCBROWSE with editor

Hi All,
I have

@ ... DCBROWSE oBrowse .... EDIT...

@ nil,nil DCCOMBOBOX xNIL LIST aProduct SIZE 50,15 TYPE XBPCOMBO_DROPDOWNLIST IMMEDIATE ID "PRODUCT_TYPE"

I want the first element of aProduct i.e. aProduct[1] to be in xNIL when it get focus

Thanks

Joe
by unixkd
Mon Aug 01, 2022 4:25 am
Forum: eXpress++ Support
Topic: How can I update the DCBROWCOL FOOTER
Replies: 2
Views: 3052

How can I update the DCBROWCOL FOOTER

Hi all

How can I update the DCBROWCOL FOOTER in DCBROWSE ... EDIT Array at runtime. After editing a cell and want to display the total in the footer.

Thanks

Joe
by unixkd
Wed Jul 13, 2022 7:20 am
Forum: eXpress++ Support
Topic: Here is an example of the use of Biometric Fingerprint Reader
Replies: 10
Views: 8500

Re: Here is an example of the use of Biometric Fingerprint Reader

If you want to get serious with biometrics, I recommend innovatrics sdk. Fast, sleek with good documentation. I have been using it since 2009 on a very large human resources application. www.innovatrics.com

Joe
by unixkd
Thu Jun 16, 2022 11:39 am
Forum: eXpress++ Support
Topic: Topaz signature tablet
Replies: 12
Views: 10255

Re: Topaz signature tablet

Hi Roger

Your response was great, we all know where Tom headed.

A lot of responses in this forum follow this maxim. you ask for a and possibly get not directly related x,y, z and at times may be plus 'a' itself. For me that is cool too because it enrich this forum one way or the other.

Joe
by unixkd
Sun May 22, 2022 11:48 am
Forum: CXP / Web Development
Topic: How to develop reports on the Web with CXP and Express
Replies: 10
Views: 15009

Re: How to develop reports on the Web with CXP and Express

Hi I have no knowledge of web programming, but follow Roger sample on CXP during the early days of its release. In one of the sample Roger explained that to create report for web, just find a way to output your report to a pdf file and and then use the HTMLVIEWER to send it to the browser. In that c...