Search found 1176 matches

by Tom
Tue Aug 20, 2013 4:21 am
Forum: eXpress++ Support
Topic: Codejock Shortcutbar
Replies: 13
Views: 26847

Re: Codejock Shortcutbar

Hi, Joe.

It's "MAIN.PRG" from <eXpressInstallation>\Samples\Codjock\Shortcutbar.
by Tom
Tue Aug 20, 2013 3:52 am
Forum: eXpress++ Support
Topic: Codejock Shortcutbar
Replies: 13
Views: 26847

Re: Codejock Shortcutbar

Hi, Joe. You need to place the version number of the Codejock installation you have in there, around line 17: #define shortcutbarCLSID 'Codejock.ShortCutBar.a.b.c' // a.b.c is your version number, like 14.0.0 You can retrieve the version number by checking the names of the OCX files. It's at the end...
by Tom
Fri Aug 02, 2013 12:04 am
Forum: eXpress++ Support
Topic: dcbrowse ... itemmarked ...
Replies: 5
Views: 10361

Re: dcbrowse ... itemselected ...

Shouldn't this evaluate the itemmarked block?
It does. If you move the pointer using :GoBottom(), it does aswell. Check your code. Is there a second ITEMMARKED in there?
by Tom
Mon Jul 29, 2013 7:23 am
Forum: eXpress++ Support
Topic: The use of third-party libraries in Alaska
Replies: 5
Views: 8318

Re: The use of third-party libraries in Alaska

You can't link non-Alaska-DLLs as static DLLs, but this is what you tried to do. Functions from 3rd-party-DLLs can be accessed dynamically using the DllLoad()-, DllPrepareCall()-, DllUnload()-mechanism, gathered as the "DLLFUNCTION" statement (see docs). You need to know the parameters and the "call...
by Tom
Wed Jul 24, 2013 8:41 am
Forum: eXpress++ Support
Topic: Problems with the 258 version
Replies: 15
Views: 22199

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

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

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

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

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

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 ...