Search found 4769 matches

by rdonnay
Mon Oct 25, 2010 10:28 am
Forum: eXpress++ Support
Topic: DCBROWSE ... SORT and dc_setscopearray()
Replies: 10
Views: 18422

Re: DCBROWSE ... SORT and dc_setscopearray()

Regan -

It seems to me that you are going in the right direction.
Alternatively, you could reload the scope array in your sort code block but this may take longer depending on the database size.

Roger
by rdonnay
Sun Oct 24, 2010 3:02 pm
Forum: eXpress++ Support
Topic: DCGET GETPRESENTATION
Replies: 2
Views: 6404

Re: DCGET GETPRESENTATION

Jack -

Have you looked at the Get-Set function: DC_XbpGetPres() ?

This will set the presentation of all DCGETs in the application.

Code: Select all

aPres := MyGetPresentation()  // returns an array

DC_XbpGetPres( aPres )
by rdonnay
Wed Oct 20, 2010 1:53 pm
Forum: eXpress++ Support
Topic: dcget keyblock
Replies: 16
Views: 25295

Re: dcget keyblock

Here is a sample that appears to be doing what you want: #INCLUDE "dcdialog.CH" #INCLUDE "appevent.CH" FUNCTION Main() LOCAL GetList[0], cGet := Space(50), aDir := Directory(), oBrowse, bAction bAction := {|oGet|MyKeyboard(oBrowse,oGet)} @ 0,0 DCGET cGet KEYBLOCK {|n,x,oGet|MyKeyDelay(n,0.8,oGet)} @...
by rdonnay
Mon Oct 18, 2010 6:05 pm
Forum: eXpress++ Support
Topic: DCSETPARENT TO
Replies: 4
Views: 8687

Re: DCSETPARENT TO

Jack -

Try removing the comment marker from in front of the following line of code in _dcgetbx.prg.

oOptions := oSetParent

Roger
by rdonnay
Mon Oct 18, 2010 4:15 pm
Forum: eXpress++ Support
Topic: DCSETPARENT TO
Replies: 4
Views: 8687

Re: DCSETPARENT TO

Jack -

This is very difficult.
I think I need to figure out why you are having a problem with DCGROUP.

Roger
by rdonnay
Mon Oct 18, 2010 2:11 pm
Forum: eXpress++ Support
Topic: dcget keyblock
Replies: 16
Views: 25295

Re: dcget keyblock

Zdeno -

I'm going to need more time to figure out a solution.

Roger
by rdonnay
Sun Oct 17, 2010 10:13 am
Forum: phpBB Board Support
Topic: Eureka
Replies: 1
Views: 11647

Eureka

For many months, some BB users have not been able to post messages. It was a mystery to me why it was only a small percentage of board users who were experiencing the problem. That problem has finally been resolved. I replaced my DSL router with a Netgear DGN2200 and now everything works much better...
by rdonnay
Thu Oct 14, 2010 8:31 am
Forum: Xbase++ Support
Topic: dbappend() problem on Windows7 shared drive.
Replies: 40
Views: 66448

Re: dbappend() problem on Windows7 shared drive.

Chris -

You don't have to ask all of your customers to buy an ADS license, only those who are experiencing such problems.

Roger
by rdonnay
Wed Oct 13, 2010 9:45 am
Forum: Xbase++ Support
Topic: dbappend() problem on Windows7 shared drive.
Replies: 40
Views: 66448

Re: dbappend() problem on Windows7 shared drive.

Chris - Your solution appears to be the only one that will guarantee a record is created. That's what Bobby and I had to do. We created a wrapper for dbAppend() and then did a dbSeek() in the new wrapper function to be sure it was added. I don't know if it is feasible for you to use Advantage Server...
by rdonnay
Wed Oct 13, 2010 9:42 am
Forum: eXpress++ Support
Topic: Add object to GetList?
Replies: 1
Views: 5028

Re: Add object to GetList?

Tom - There are lots of ways to do this. Your function can add items to the GetList in the same way that a complete document system is added to the GetList in the sample \exp19\samples\document\document.prg. In this sample, Document is a class and it is called from test.prg. Another examples of mult...