Search found 205 matches

by RDalzell
Thu Jul 26, 2012 6:04 am
Forum: eXpress++ Support
Topic: DcBrowse - Tagging
Replies: 11
Views: 17038

Re: DcBrowse - Tagging

Hi Chris, Actually that is the another way which Roger's TAG functions, using DC_RecTagArray(). Somewhere it appears that something is really slowing the process down. It is only noticeable on a network and when more than one person is in the application. I will look at your suggestion with ITEMSELE...
by RDalzell
Wed Jul 25, 2012 7:32 pm
Forum: eXpress++ Support
Topic: DcBrowse - Tagging
Replies: 11
Views: 17038

Re: DcBrowse - Tagging

Hi Roger,

Just a gentle reminder for a review.
I have commented out the TAGENABLE and the browse speed is great.

Thanks,
Rick
by RDalzell
Mon Jul 16, 2012 5:22 am
Forum: eXpress++ Support
Topic: Sample acceleration
Replies: 3
Views: 7882

Re: Sample acceleration

Another example of one-to-many (browse) is Roger's XSample_130() using as Chris stated scopes and additionally codeblocks.

Rick
by RDalzell
Sun Jul 15, 2012 6:29 am
Forum: eXpress++ Support
Topic: Questions of zero level
Replies: 96
Views: 137795

Re: Questions of zero level

From Alaska Docs (creating a database)...

A field name may contain a maximum of 10 characters.

The same rules apply to field names that apply to variable names. The first letter must be an alphabetical character or an underscore and all other characters must be alphanumeric or an underscore.
by RDalzell
Sat Jul 14, 2012 6:13 am
Forum: eXpress++ Support
Topic: Questions of zero level
Replies: 96
Views: 137795

Re: Questions of zero level

I find that Roger's DC_DBFILE() is an easier solution.
by RDalzell
Sun Jul 08, 2012 11:09 am
Forum: eXpress++ Support
Topic: DcBrowse - Tagging
Replies: 11
Views: 17038

DcBrowse - Tagging

Roger, The attached program functions properly when only a single user is on, but when multiple users login, the speed really degrades (ITEMSELECTED). When performing the ITEMSELECTED of a record, as single user within the speed of the mouseclick, when multiuser, as long as 15 seconds elapse before ...
by RDalzell
Fri Jun 22, 2012 4:58 am
Forum: eXpress++ Support
Topic: Renewal Fees
Replies: 23
Views: 36143

Re: Renewal Fees

Joseph,

Thanks for the direction.

Rick
by RDalzell
Thu Jun 21, 2012 7:53 pm
Forum: eXpress++ Support
Topic: Renewal Fees
Replies: 23
Views: 36143

Re: Renewal Fees

Hello Joseph Owoyemi, I noticed within your program listing you specify HelpScribble. I too have this program, would you be so kind as to possibly share a coding example on how you interface your eXpress++ code with HelpScribble? I would be most appreciative of any assistance that you could provide....
by RDalzell
Mon Jun 18, 2012 8:16 pm
Forum: eXpress++ Support
Topic: Renewal Fees
Replies: 23
Views: 36143

Re: Renewal Fees

Roger,

Stay away from deers this time.....

Have a great time.

Rick
by RDalzell
Mon Jun 18, 2012 8:13 pm
Forum: eXpress++ Support
Topic: Help With DCCOMBOBOX
Replies: 2
Views: 5987

Re: Help With DCCOMBOBOX

Hi Gene, Try... #include "DcDialog.Ch" #include "DcPick.Ch" FUNCTION Main() LOCAL GetList := {} cLetter := cItem := " " aItems := {" "} @ 1, 1 DCGET cLetter PICTURE "!" VALID {|| FillItems(cLetter,@aItems,GetList) } @ 2, 1 DCCOMBOBOX cItem LIST aItems SIZE 15,10 OBJECT oComboBox DCGETOPTIONS ; NOCON...