Search found 4769 matches

by rdonnay
Mon Jul 05, 2010 7:58 am
Forum: eXpress++ Support
Topic: Resident program
Replies: 4
Views: 10123

Re: Resident program

I have 2 applications that employ a taskbar using the TaskBarIcon() class.
You can see the source for this class in \exp19\source\taskbar

The sample code is in \exp19\samples\calendar\calendar.prg and \exp19\source\imclient\imclient.prg.
This is all Xbase++ code.
No Codejock is required.
by rdonnay
Fri Jul 02, 2010 6:50 am
Forum: XCodeJock Support
Topic: CJpushButton FONT
Replies: 3
Views: 14454

Re: CJpushButton FONT

Thanks Chris. I will add this to the code.
by rdonnay
Fri Jun 25, 2010 11:20 am
Forum: Xbase++ Support
Topic: Detecting disksize
Replies: 9
Views: 24721

Re: Detecting disksize

I can't get GetDiskFreeSpaceW() unicode version to work, but GetFreeDiskSpaceA() works fine: Put this in your source somewhere: #include "DLL.CH" DLLFUNCTION GetDiskFreeSpaceA( a, @b, @c, @d, @e ) USING STDCALL FROM KERNEL32.DLL Here's how it is used: a := 'C:\' b := 0 c := 0 d := 0 e := 0 GetDiskFr...
by rdonnay
Fri Jun 25, 2010 7:46 am
Forum: eXpress++ Support
Topic: Getoptions abort/exit/close query
Replies: 2
Views: 6952

Re: Getoptions abort/exit/close query

The below program works perfectly for me: #INCLUDE "dcdialog.CH" FUNCTION Main() LOCAL GetList[0], GetOptions, dDate := Date() @ 0,0 DCGET dDate DCGETOPTIONS ; CLOSEQUERY MSG {||MsgBox('CLOSE'), .f.} ; ABORTQUERY MSG {||MsgBox('ABORT'), .f.} ; EXITQUERY MSG {||MsgBox('EXIT'), .f.} DCREAD GUI FIT OPT...
by rdonnay
Fri Jun 25, 2010 7:24 am
Forum: eXpress++ Support
Topic: Getoptions abort/exit/close query
Replies: 2
Views: 6952

Re: Getoptions abort/exit/close query

I will look into this.
by rdonnay
Fri Jun 25, 2010 7:22 am
Forum: eXpress++ Support
Topic: DC_Excel2WorkArea()
Replies: 1
Views: 5825

Re: DC_Excel2WorkArea()

Look in \exp19\samples\excel
by rdonnay
Fri Jun 25, 2010 7:21 am
Forum: eXpress++ Support
Topic: Picture in dcbrowseol
Replies: 14
Views: 24103

Re: Picture in dcbrowseol

If the picture clause doesn't work then try using Transform() in the data code block.

Example:

Code: Select all

DCBROWSECOL DATA {|c|c := aData[2,oBrowse:arrayElement], Transform(c,IIF(SvcTest(c),'99999.99','99999'))}
by rdonnay
Fri Jun 25, 2010 7:15 am
Forum: eXpress++ Support
Topic: Hot News Xbase Part Pack #2 available!
Replies: 1
Views: 6020

Re: Hot News Xbase Part Pack #2 available!

That looks good. I am going to implement these 2 new classes in build 255 of eXpress++.
by rdonnay
Fri Jun 25, 2010 6:57 am
Forum: Xbase++ Support
Topic: Importing data
Replies: 6
Views: 13393

Re: Importing data

For a sample, look in \exp19\samples\excel.
by rdonnay
Thu Jun 24, 2010 4:19 pm
Forum: XCodeJock Support
Topic: CJPushButton Image
Replies: 14
Views: 38773

Re: CJPushButton Image

Ok, I finally figured out a seamless way to handle this problem. The attached file contains a new sample pushbutton program and updated XCodeJock source. Copy XCJCLASS.PRG and XCODEJOCK.PRG to \exp19\source\xcodejock. Copy XCODEJOCK.CH to \exp19\include Copy PUSHBUTTON.PRG to \exp19\XCodeJock\Sample...