Search found 1174 matches

by Tom
Tue Jul 13, 2010 7:06 am
Forum: eXpress++ Support
Topic: Problems Using XDBU.EXE is slow
Replies: 7
Views: 13887

Re: Problems Using XDBU.EXE is slow

How many fields does the table have? Does it happen with all kinds of tables or only with a special one?
by Tom
Fri Jun 11, 2010 1:17 am
Forum: eXpress++ Support
Topic: Multi core CPU
Replies: 21
Views: 35957

Re: Multi core CPU

Hi, Stu. Xbase++ programs are not able to run on multiple CPUs at the same time. By default, they select CPU #1 to run on. You can switch the core for each instance of your application by using "_sysSetCPU" from the XppRt1-lib of your Alaska installation (..\Source\Samples\Solution\smp). This works ...
by Tom
Wed Jun 09, 2010 11:22 am
Forum: eXpress++ Support
Topic: DCdialog blink
Replies: 5
Views: 10704

Re: DCdialog blink

Hi, Nolberto. CLEAREVENTS works good. I have several huge dialogs which used to flicker, but they stopped this behaviour with "clearevents". You make look for unneeded DC_Getrefreshs, oDialog:InvalidateRect and stuff like this in your code. Maybe you do something inside the EVAL clause of DCREAD GUI...
by Tom
Wed Jun 09, 2010 7:21 am
Forum: eXpress++ Support
Topic: VALID and HIDE
Replies: 1
Views: 5895

Re: VALID and HIDE

The VALID clause is evaluated before something happens to the second get and it's HIDE clause. This should work: Procedure Main() LOCAL GetList[0], GetOptions, cWorkOrderType, cValidType, nAmountA, nAmountB DCGETOPTIONS AUTORESIZE cWorkOrderType := cValidType := SPACE(1) nAmountA := nAmountB := 0 @ ...
by Tom
Tue Jun 08, 2010 2:49 pm
Forum: eXpress++ Support
Topic: Soap Envelopes
Replies: 3
Views: 8706

Re: Soap Envelopes

Hi, Fred. Take a look at the samples in ..\Samples\Soap. You may try the SOAPTEST.PRG to get an idea. If you want to know more about SOAP communication, I recommend to install the freeware "SOAPUI": http://www.eviware.com/Download-SoapUI/download-latest-release.html This software shows and retrieves...
by Tom
Tue Jun 08, 2010 2:21 pm
Forum: eXpress++ Support
Topic: Preventing modal windows from overlapping
Replies: 9
Views: 15360

Re: Preventing modal windows from overlapping

This does the job. The modal window can't be moved outside the parent dialog: #include "dcdialog.ch" #pragma library("dclipx.lib") PROCEDURE appsys() ; RETURN PROCEDURE MAIN() LOCAL GetList := {}, GetOptions := {}, oDialog @ 1,1 DCSAY 'Blabla' SIZE 100,28 @ 29,1 DCPUSHBUTTON CAPTION 'New Window' SIZ...
by Tom
Mon Jun 07, 2010 11:05 am
Forum: eXpress++ Support
Topic: Wishlist/may-be forgotten things
Replies: 5
Views: 9936

Re: Wishlist/may-be forgotten things

Hi, Roger.
Below is my current code. Commented out. Are you saying that Alaska still traps the errors?
Oops. I just looked for "ErrorBlock" in the new code you sent me (fonts with DC_AutoRestoreBrowse) and missed that it was already commented out. So forget # 1. ;)
by Tom
Mon Jun 07, 2010 9:02 am
Forum: XCodeJock Support
Topic: Going nuts with DockingPanes
Replies: 12
Views: 42078

Re: Going nuts with DockingPanes

Hi, Chris. Indeed, these are CJPUSHBUTTONS. They work good, but the captions are bitmaps (CJLoadBitmap) with a background color set with DC_BitmapTransparentColor. There is only one cosmetic thing: All other items on this dialog react properly on changes effecting their WHEN-/HIDE-clauses, but somet...
by Tom
Mon Jun 07, 2010 8:03 am
Forum: eXpress++ Support
Topic: Wishlist/may-be forgotten things
Replies: 5
Views: 9936

Wishlist/may-be forgotten things

Hi, Roger. This is a short list of things which were already mentioned, but seem to be forgotten: 1. DC_XbpBrowse:ForceStable(): This method still replaces the errorblock during the force-stable-process, so there is no access to the error system if there are errors inside color codeblocks of the bro...
by Tom
Mon Jun 07, 2010 6:16 am
Forum: eXpress++ Support
Topic: Testing Internet
Replies: 5
Views: 11092

Re: Testing Internet

Hi, Bruce.

The "Windows Management Instrumentation" (WMI) should lead to a result. Look at the samples (active x) here:

http://www.activexperts.com/activmonito ... mi/samples