Search found 1193 matches

by skiman
Mon Jun 14, 2010 12:51 am
Forum: XCodeJock Support
Topic: CJPushButton Image
Replies: 14
Views: 38377

Re: CJPushButton Image

Hi Roger,

Did you find the time to check this?
by skiman
Fri Jun 11, 2010 10:25 am
Forum: eXpress++ Support
Topic: Multi core CPU
Replies: 21
Views: 35863

Re: Multi core CPU

Hi ROger, I'm trying to understand this piece of code. FOR i := 1 to 32 // count processors IF nCPU[i] // processor present aadd(aSet, i) // add processor id to list ENDIF NEXT if nCPU ... : when will that be .T. :?:
by skiman
Fri Jun 11, 2010 2:44 am
Forum: eXpress++ Support
Topic: dcprint box
Replies: 5
Views: 12100

Re: dcprint box

Hi,

Transparent printing isn't possible, as far as I know.

You have to print first the box, and afterwards you print the text above the box. So you have to work as you would do with layers. You decide what has to be on top, ant you print that as last.
by skiman
Mon Jun 07, 2010 6:36 am
Forum: eXpress++ Support
Topic: Testing Internet
Replies: 5
Views: 11064

Re: Testing Internet

Hi Bruce, The Marshalsoft functions always return a value. If that value is negative, then there is something wrong. You can test on them. Code = XfceConnect(0, @cServer, @cGebruiker, @cPassword) if Code <0 XfceClose(0) XfceRelease() return .F. endif Code = XfceSetLocalDir(0, @cLocalDir) if Code < 0...
by skiman
Sun Jun 06, 2010 11:44 pm
Forum: XCodeJock Support
Topic: CJPushButton Image
Replies: 14
Views: 38377

Re: CJPushButton Image

Hi Roger,

Yes, the cjpûshbutton sample is working with transparancy. This is with the use of SuiteControlsGlobalSetting and cjLoadBitmap.

No problem for me if that is the way to use it. I thought it could maybe be done direct in one command.
by skiman
Sat Jun 05, 2010 2:02 am
Forum: XCodeJock Support
Topic: CJPushButton Image
Replies: 14
Views: 38377

Re: CJPushButton Image

Hi Jimmy,

I'm using BMP files.

I think that using that imagelist will be necessary when using Codejock. Roger succeeded to avoid this for some commands, but it seems as the use of the imagelist will solve problems as this.
by skiman
Sat Jun 05, 2010 1:56 am
Forum: eXpress++ Support
Topic: Chinese and eXpress++
Replies: 7
Views: 14190

Re: Chinese and eXpress++

Hi Jimmy, Yes, that's a good tip. With the double space I can enter Chinese characters in de DCSLE. DCSLE is a command from Roger, that replaces the standard DCSAY/GET. :dance: Next step is to save it in my database. Last I need to create HTML pages with the Chinese text to upload it on a webshop.
by skiman
Sat Jun 05, 2010 1:49 am
Forum: eXpress++ Support
Topic: DCSLE syntax error
Replies: 2
Views: 7445

Re: DCSLE syntax error

Roger,

I created my sample and saw that I had a typo space(100)).

Sorry, it is working now.

I'm testing it for the use of Chinese characters. I can copy/paste Chinese characters in it. That's a start. :)
by skiman
Fri Jun 04, 2010 8:42 am
Forum: XCodeJock Support
Topic: Going nuts with DockingPanes
Replies: 12
Views: 39984

Re: Going nuts with DockingPanes

Tom,

In the screen shots you placed in the first post of this thread, you have buttons on top of your application. Are these CJPushButton's?

If so, are they working without problems? I want to switch from dcpushbuttonxp to cjPushbuttons. I want to be sure that it won't give me some problems.
by skiman
Fri Jun 04, 2010 8:36 am
Forum: XCodeJock Support
Topic: CJPushButton Image
Replies: 14
Views: 38377

CJPushButton Image

Hi Roger, If I use the IMAGE clause of cjPushButton the image isn't transparent. This is the syntax I use: @ 170,10 CJPushButton oBut1 ; Size 130,30 ; Caption fMessage(6000) ; ToolTip fTooltip(6000) ; Font '8.Arial Bold' ; ; // TextImageRelation xtpTextBeforeImage ; Transparent ; Appearance xtpAppea...