Search found 15 matches

by mzipkin
Sat Feb 27, 2021 8:15 am
Forum: eXpress++ Support
Topic: XSample49()
Replies: 5
Views: 5253

Re: XSample49()

Roger,

Thank you *very* much. That did the trick!

Regards,

'Mark
by mzipkin
Sat Feb 27, 2021 8:13 am
Forum: eXpress++ Support
Topic: ONLINE PAYMENT PLATFORM
Replies: 2
Views: 3852

Re: ONLINE PAYMENT PLATFORM

Hey Joe, For credit & debit cards, I've had great success with NETePay from Datacap Systems. They are a 30-ish person company out of PA with a very solid product. Their support has been excellent as well. The best feature of their product is that it can make your app "OUT OF SCOPE" with regards to P...
by mzipkin
Wed Feb 24, 2021 10:25 pm
Forum: eXpress++ Support
Topic: XSample49()
Replies: 5
Views: 5253

Re: XSample49()

Roger, thanks for your reply. The test program will add a new row to the browse only if the following steps occur beforehand: Navigate to the last column of the last row and press Enter to enter edit mode, then press Enter again to exit edit mode. i.e. it will perform the same function as ALT_A. How...
by mzipkin
Tue Feb 23, 2021 8:13 pm
Forum: eXpress++ Support
Topic: XSample49()
Replies: 5
Views: 5253

Re: XSample49()

Update: The cell editors are implemented by DC_BrowCellEdit() in _DCGETBX.prg. Because this function clears events just before exiting, any events created in the GET/VALID block are discarded. One approach is to post the event after DC_BrowCellEdit() exits by making the following call in the valid c...
by mzipkin
Mon Feb 22, 2021 3:27 pm
Forum: eXpress++ Support
Topic: XSample49()
Replies: 5
Views: 5253

XSample49()

I'm attempting to build a data entry browse based on XSample_49(), an array editor using DCBROWSE, DCBROWSECOL and DCGETs to implement the editing. (exp20\samples\xdemo\xsample2.prg) But I want to Append a new row to the browse when the last field of each row is successfully VALIDated. I expected th...
by mzipkin
Mon Jan 18, 2021 11:34 am
Forum: User Contributions
Topic: FastReport for Alaska Xbase++ FRAX
Replies: 12
Views: 19339

Re: FastReport for Alaska Xbase++ FRAX

Thank you Slobodan!

The download from your site was successful.
Not sure why the original attempt failed.

Regards,

Mark
by mzipkin
Sat Jan 16, 2021 10:41 am
Forum: User Contributions
Topic: FastReport for Alaska Xbase++ FRAX
Replies: 12
Views: 19339

Re: FastReport for Alaska Xbase++ FRAX

The following error appears when attempting to download the file:
"The selected attachment does not exist anymore."

Would it be possible to obtain a copy of the file?

Many thanks,

Mark
by mzipkin
Sun Jul 12, 2020 10:32 am
Forum: eXpress++ Support
Topic: A little help please - Una pequeña ayuda por favor
Replies: 9
Views: 12616

Re: A little help please - Una pequeña ayuda por favor

Hola Jose, In your ValidarCampo function, try adding the commented lines below which reference oGet. Regards, Mark STATIC FUNCTION ValidarCampo(oCaso,GetList) LOCAL lRetVal := .t. LOCAL oGet // Add line DO CASE CASE oCaso == 1 DBSelectArea("INVFILEH") Set Order To 1 If DBSeek(cRepCod) ELSE oGet := d...
by mzipkin
Sat Jul 11, 2020 1:47 pm
Forum: eXpress++ Support
Topic: A little help please - Una pequeña ayuda por favor
Replies: 9
Views: 12616

Re: A little help please - Una pequeña ayuda por favor

Hola Jose,

When your barcode validation/lookup fails, try something like this:

oGet := dc_getactive()
oGet:xbpsle:clear()
oGet:refresh()

...this assumes your sample code is is called from the "valid" codeblock for the cRepcode input.

Let us know what happens.

Regards,

Mark
by mzipkin
Sun Aug 07, 2016 6:43 am
Forum: eXpress++ Support
Topic: HOW CAN I START ADS SERVICE ON A GIVEN SERVER IF NOT STARTED
Replies: 6
Views: 12585

Re: HOW CAN I START ADS SERVICE ON A GIVEN SERVER IF NOT STA

Joe, Sounds like you want to do this under program control... Although I've not tried this myself, it looks like you'd need to perform the following steps using Windows API calls: 1) OpenSCManager, to open the service control manager on the desired machine https://msdn.microsoft.com/en-us/library/wi...