Search found 1172 matches

by Tom
Wed Jul 24, 2013 8:41 am
Forum: eXpress++ Support
Topic: Problems with the 258 version
Replies: 15
Views: 21868

Re: Problems with the 258 version

Hi, Miguel. 1) Does not work @ NFila, font cTexto nColumna cFuente DCPRINT SAY COLOR {255,255,255}, {0116232} The two color parameters of DCPRINT SAY should be each either an array with 3 elements ({R,G,B}) OR a number indicating a GRA color. Your second parameter is an array with one element. This ...
by Tom
Fri Jul 12, 2013 6:04 am
Forum: Xbase++ Support
Topic: json response to ajax request
Replies: 7
Views: 18830

Re: json response to ajax request

JSON is quite simple - it's almost an array, similar to the ones we have in Xbase++. Take a look here:

http://en.wikipedia.org/wiki/Json

If you just want to create a data response, it should be not more than 10 lines of code to format a JSON array.
by Tom
Thu May 30, 2013 4:32 am
Forum: eXpress++ Support
Topic: How can I setup my own Windows Web server ?
Replies: 2
Views: 5726

Re: How can I setup my own Windows Web server ?

Hi, Joe. 1. If you don't get a static IP from your provider, create a DynDns-account. Point your URL to that one. Or use the URL from DynDns, which will be something like "joe.dyndns.info". 2. Ensure you have enough bandwith. Remember: Upload is the bottleneck! This is what your server will do most ...
by Tom
Wed May 08, 2013 9:12 am
Forum: Xbase++ Support
Topic: Large decimal numbers
Replies: 9
Views: 21982

Re: Large decimal numbers

Google Translate does the same job. Be careful if source code is translated. ;)
by Tom
Tue May 07, 2013 2:42 am
Forum: Xbase++ Support
Topic: Large decimal numbers
Replies: 9
Views: 21982

Re: Large decimal numbers

Great! :)

You may take a look at the string padding. Account numbers are filled with trailing zeros in this version - but leading zeros may be correct (change PadR() to PadL()).
by Tom
Tue May 07, 2013 2:26 am
Forum: Xbase++ Support
Topic: Large decimal numbers
Replies: 9
Views: 21982

Re: Large decimal numbers

Just take the code (three functions) and ignore or delete the comments. You may call the function FUNCTION CalcIban(cCiBlz,cCiKonto,cCiIban,cCiLaenderCode) with at least two parameters, the account number and the old numeric bank id ("Bankleitzahl" in germany). If done so, the country code defaults ...
by Tom
Tue May 07, 2013 1:58 am
Forum: Xbase++ Support
Topic: Large decimal numbers
Replies: 9
Views: 21982

Re: Large decimal numbers

No way, the limit is exceeded.

But it seems you're trying to calculate the "IBAN" - International Bank Account Number. You may look at my solution for this, to be found in the German Xbase Forum:

http://www.xbaseforum.de/viewtopic.php?f=6&t=6863

(2nd message)
by Tom
Fri Apr 26, 2013 3:54 am
Forum: eXpress++ Support
Topic: How Can Common dialogs be extended ?
Replies: 1
Views: 5099

Re: How Can Common dialogs be extended ?

The XbpFileDialog object references an encapsulated API object, which only provides few properties and methods. It's very hard to extend this. Take a look at this article: http://www.codeproject.com/Articles/19566/Extend-OpenFileDialog-and-SaveFileDialog-the-easy There is a link in this article, whi...
by Tom
Mon Apr 22, 2013 3:18 am
Forum: eXpress++ Support
Topic: Parent objects and HIDE option
Replies: 1
Views: 5038

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: 14702

Re: Xbase++ Deployment on Large network

Hi, Joe.

This small tool is very much customized, so useless for you.