Search found 1174 matches

by Tom
Mon Apr 22, 2013 3:18 am
Forum: eXpress++ Support
Topic: Parent objects and HIDE option
Replies: 1
Views: 5053

Re: Parent objects and HIDE option

Which version of eXpress++? Did you try "DC_GetRefresh(GetList)" after toggling the lHide-value? DC_WhenHideEval() (the function which tests which objects are to hide/disable and so on) is not automatically called with every action-codeblock. You may also try "DC_GetRefresh(<oObject>)" instead of "D...
by Tom
Thu Apr 18, 2013 2:58 am
Forum: eXpress++ Support
Topic: Xbase++ Deployment on Large network
Replies: 9
Views: 14726

Re: Xbase++ Deployment on Large network

Hi, Joe.

This small tool is very much customized, so useless for you.
by Tom
Wed Apr 17, 2013 12:16 pm
Forum: eXpress++ Support
Topic: Xbase++ Deployment on Large network
Replies: 9
Views: 14726

Re: Xbase++ Deployment on Large network

As Cliff said. Besides, it may cause tremendous network traffic to load all runtime files from a network server everytime an app is started. You may also fail when using ActiveX components located there. We do the same thing Cliff does. Updates are automatically copied to a network folder if an upda...
by Tom
Tue Mar 12, 2013 3:48 am
Forum: eXpress++ Support
Topic: How to sign coordinate axes?
Replies: 5
Views: 8716

Re: How to sign coordinate axes?

Try "LABELTEXT <aLabelArray>" at DCAddDataAxis.
by Tom
Mon Mar 04, 2013 9:54 am
Forum: eXpress++ Support
Topic: Retrieve actual position and size of gelistelement
Replies: 4
Views: 7610

Re: Retrieve actual position and size of gelistelement

Hi, Rudolf.

If you use the methods Roger added to all getlist objects (o:DCCurrentPos, o:DCCurrentSize, o:DCSetPos ...), they all reflect scaling and the other options - and even the line/col-translations.
by Tom
Mon Mar 04, 2013 9:47 am
Forum: eXpress++ Support
Topic: Textsize
Replies: 12
Views: 16356

Re: Textsize

Hi, Rudolf. If you calculate the text size based on a special font, you need to use this font for displaying the text aswell. ;) Try this: function Main() ****************************************************************** local getlist := {},nLeft := 300,cFont := "8.Tahoma",x local aLabel := {} aadd...
by Tom
Mon Mar 04, 2013 7:31 am
Forum: eXpress++ Support
Topic: Retrieve actual position and size of gelistelement
Replies: 4
Views: 7610

Re: Retrieve actual position and size of gelistelement

Try oGetListObject:DCCurrentPos()

This translates pixel values into line-col-coordinates aswell.
by Tom
Mon Mar 04, 2013 5:53 am
Forum: eXpress++ Support
Topic: Textsize
Replies: 12
Views: 16356

Re: Textsize

Hi, Rudolf.

This:

Code: Select all

? DC_GraQueryTextbox('iiii','8.Tahoma')
results: {8,13}

And this:

Code: Select all

? DC_GraQueryTextbox('WWWW','8.Tahoma')
results: {40,13}

Try "SAYOPTIONS XBPALIGN_RIGHT" with DCSAY.
by Tom
Mon Mar 04, 2013 5:17 am
Forum: eXpress++ Support
Topic: How to installl on the ActiveX computer?
Replies: 17
Views: 23632

Re: How to installl on the ActiveX computer?

You may also try the "REGISTER" clause of "DCACTIVEXCONTROL". Look at "..\samples\chadospell\ChadoSpell.prg" of your eXpress++-installation.
by Tom
Mon Mar 04, 2013 1:59 am
Forum: eXpress++ Support
Topic: Textsize
Replies: 12
Views: 16356

Re: Textsize

Try

Code: Select all

DC_GraQueryTextBox(cText,cFont)