Search found 620 matches

by Cliff Wiernik
Fri Oct 22, 2010 9:55 pm
Forum: Xbase++ Support
Topic: Scanning (twain)
Replies: 5
Views: 11223

Re: Scanning (twain)

I use GDPicture, not for scanning, and I think it is a good product.
by Cliff Wiernik
Thu Sep 23, 2010 5:50 pm
Forum: eXpress++ Support
Topic: Anybody there using CRYSTAL REPORT
Replies: 5
Views: 11160

Re: Anybody there using CRYSTAL REPORT

Pricing and link to order is in the above message (2 messages up).

Cliff.
by Cliff Wiernik
Wed Sep 15, 2010 8:38 am
Forum: eXpress++ Support
Topic: Error in array index
Replies: 6
Views: 12783

Re: Error in array index

Should Getlist := [0] be

GetList[0] or Getlist := {}

I cannot get the above to compile.
by Cliff Wiernik
Fri Sep 10, 2010 7:59 am
Forum: eXpress++ Support
Topic: dialog background
Replies: 7
Views: 12964

Re: dialog background

My understanding is that it adds to an existing Setup only, not overriding the defaults.

Cliff
by Cliff Wiernik
Wed Sep 08, 2010 12:48 pm
Forum: eXpress++ Support
Topic: dialog background
Replies: 7
Views: 12964

Re: dialog background

I thing you need to do it slightly differently if you want to do 2 sets of options.

Code: Select all

  
    DC_GetOptDefault(GetOptions)               
    DCADDGETOPTION BITMAP 'FEATHERTEXTURE.BMP' HIDE
by Cliff Wiernik
Tue Sep 07, 2010 11:01 am
Forum: eXpress++ Support
Topic: DC_Browsecolor()
Replies: 1
Views: 5579

DC_Browsecolor()

Is there anyway to turn on/off dc_browsecolor() entirely for a given browse. I would like on most browses, but not some browses.

Cliff.
by Cliff Wiernik
Fri Sep 03, 2010 5:51 am
Forum: eXpress++ Support
Topic: DCTABPAGE ... SUBCLASS "XbpImageTabPage()"
Replies: 8
Views: 14269

Re: DCTABPAGE ... SUBCLASS "XbpImageTabPage()"

I have noticed that with SL1, sometimes I have to click twice for focus to change, especially with the X to close a window. Probably is something related in the behavior your are seeing with the tabpages. I might have seen something with just top tabpages, but do not recall it. I will keep this in m...
by Cliff Wiernik
Thu Sep 02, 2010 12:18 pm
Forum: eXpress++ Support
Topic: DCBROWSE COLOR determine record with highlight bar
Replies: 3
Views: 8120

Re: DCBROWSE COLOR determine record with highlight bar

I ran into problems with item selected clause screwing things up. I settled on the the following code which worked all the time. The key was the use of the {nil,nil}.

Code: Select all

COLOR {|| iif(condition{GRA_CLR_YELLOW,GRA_CLR_RED},{nil,nil})}  
Thanks,

Cliff.
by Cliff Wiernik
Wed Sep 01, 2010 9:18 am
Forum: Xbase++ Support
Topic: AES encryption and key storage
Replies: 3
Views: 9693

Re: AES encryption and key storage

Thanks,

Could not find it.

Cliff
by Cliff Wiernik
Tue Aug 31, 2010 12:43 pm
Forum: eXpress++ Support
Topic: DCBROWSE COLOR determine record with highlight bar
Replies: 3
Views: 8120

Re: DCBROWSE COLOR determine record with highlight bar

Thanks, Roger.

I used the following modification of your suggestions and it works fine. I am using CURSORMODE XBPBRW_CURSOR_ROW.

Code: Select all

        
COLOR {|| iif(!nRecordMarked==(cAlias)->(recno()) .AND. (cAlias)->lbadacct,{GRA_CLR_YELLOW,GRA_CLR_RED},{nil,nil})}