Search found 1174 matches

by Tom
Wed Mar 09, 2011 3:02 am
Forum: eXpress++ Support
Topic: Dialog timeout
Replies: 3
Views: 8116

Re: Dialog timeout

Hi, Wolfgang. As you can see in DC_GetList:EventLoop() (_DCGETBX.PRG), the start time of the dialog is stored into a local var "nSeconds". Some changes to the DC_GetList class would allow to access this information. The timeout itself is stored into the class var "timeOut", which can be manipulated....
by Tom
Tue Mar 08, 2011 3:46 am
Forum: eXpress++ Support
Topic: Data acquisition from a Serial port
Replies: 8
Views: 13952

Re: Data acquisition from a Serial port

Hi, Simon. You have a set of serial port functions available in the Xbase-Tools-library (part of the prof. subscription, otherwise available as an add-on). All you need in addition are the communication parameters (baudrate, handshake a.s.o.) and the data format transmitted, which should be document...
by Tom
Fri Mar 04, 2011 9:45 am
Forum: eXpress++ Support
Topic: Right click in DCBrowse
Replies: 21
Views: 31800

Re: Right click in DCBrowse

Hi, Chris. RBDOWN must be the event firing first, since this is the "real" event (right button of the mouse down), while "RBSELECT" follows this: The right mouse button was clicked into a cellgroup, the cell can be selected, so it creates this event afterwards. The first thing is the "what" (mouse e...
by Tom
Fri Mar 04, 2011 8:44 am
Forum: eXpress++ Support
Topic: Transparent Get's
Replies: 8
Views: 14549

Re: Transparent Get's

A XbpBitmap is not a XbpPart! It's a class for bitmap objects. Try this: @ 0,0 DCSTATIC TYPE XBPSTATIC_TYPE_BITMAP CAPTION MYBITMAPRESOURCE SIZE .... OBJECT oBitmap @ ... DCGET cWhat PARENT oBitmap SLE transparency is hard to achieve, and it depends on the os, the manifest file and other parameters.
by Tom
Fri Mar 04, 2011 2:53 am
Forum: eXpress++ Support
Topic: Transparent Get's
Replies: 8
Views: 14549

Re: Transparent Get's

Hi, Rudolf.

Take a look at this thread in the German Xbase-Forum:

http://www.xbaseforum.de/viewtopic.php?f=23&t=4464
by Tom
Thu Mar 03, 2011 11:45 am
Forum: eXpress++ Support
Topic: HOW TO GET BROWSE COLUMN HEADING AT RUNTIME ?
Replies: 3
Views: 7825

Re: HOW TO GET BROWSE COLUMN HEADING AT RUNTIME ?

Multiplication. 8-)

By default, a "column" has 7 pixel, a "line" has 20 - in eXpress++. As long as you didn't change this in your app.
by Tom
Thu Mar 03, 2011 10:25 am
Forum: eXpress++ Support
Topic: RMChart and Windows 7
Replies: 5
Views: 9348

Re: RMChart and Windows 7

Hi, Roger.

By the installer (Inno Setup). The app itself looks for several components and tries to install them if they are not installed, starting REGSVR32 with RunShell. This works on Vista or 7 only if the app runs with admin rights.
Edit: RMCHART.DLL is needed even if the OCX is used!
by Tom
Thu Mar 03, 2011 9:34 am
Forum: eXpress++ Support
Topic: RMChart and Windows 7
Replies: 5
Views: 9348

Re: RMChart and Windows 7

Yes. Active-X-version. Works perfect on all kinds of systems at hundreds of customer's sites.
by Tom
Wed Mar 02, 2011 2:18 pm
Forum: eXpress++ Support
Topic: Right click in DCBrowse
Replies: 21
Views: 31800

Re: Right click in DCBrowse

Hi, Chris. Could you clarify the RBDOWN {| a,b,c,d | .... } You can do things like this by yourself: RBDOWN {| a,b,c,d | DC_DebugQout(a),DC_DebugQout(b),DC_DebugQout(c),DC_DebugQout(d) } And you will find out: a is the absolute position clicked. b is nil. c is a reference to the XbpCellGroup-Object ...