Search found 131 matches

by Piotr D
Mon Mar 30, 2020 1:17 am
Forum: Xbase++ 2.0
Topic: Color of DCCHECKBOX
Replies: 9
Views: 15158

Color of DCCHECKBOX

Hi,
is a way to change color of check box in DCCHECKBOX (and in DCRADIOBUTTON)? For example, I want that check box will be yellow when is edit protect, and white (normal) when no. I know, that when use clause WHEN the check box can be grayed, but this is for me not useful.

Regards
Piotr
by Piotr D
Tue Jul 02, 2019 12:28 pm
Forum: Xbase++ 2.0
Topic: Bar code readers
Replies: 8
Views: 16351

Re: Bar code readers

Hi Bob, I have made exactly, what you want. Main program, in which I collect all inventory, can print tickets with inventory ID as barcode (I use IDAutomationC128 fonts for this) or as QR-code (in this I use MW6QRCode). Next, I generate "package" with small program for physical inventory with empty ...
by Piotr D
Wed May 08, 2019 10:37 pm
Forum: Xbase++ 2.0
Topic: XML and CHR(12)
Replies: 1
Views: 7238

XML and CHR(12)

Hi,
I must export a database with memofield using a XML file. But in this fields are formfeed characters CHR(12). XML file don't accept ASCII code <32 (except chr(9), chr(10) and chr(13)). How can I do it?

Regards
Piotr
by Piotr D
Wed Sep 05, 2018 1:59 am
Forum: Xbase++ 2.0
Topic: Conversion to ADS ideas
Replies: 7
Views: 13848

Re: Conversion to ADS ideas

Roger, here is an idea: make three arrays: - first with original names of databases - second with temporary names - third with new short names Then make an program, which read all source (PRG). With every PRG first automatically change words from first array with words from second (temporary names) ...
by Piotr D
Fri Aug 24, 2018 6:00 am
Forum: Xbase++ 2.0
Topic: Odd problem with calculation result
Replies: 2
Views: 8736

Re: Odd problem with calculation result

Hi Regan, this is typicall bahavior. This is difference of representation between integer and real value. For example, value 2 (integer) is not the same as 2.0 (real). With real value, it can be f.e. 1.9999999999999999.... and in machine code is translate to 2.0. In thic case, you must use the same ...
by Piotr D
Mon Aug 06, 2018 1:16 pm
Forum: Xbase++ 2.0
Topic: Slow work with Windows 1803
Replies: 1
Views: 6571

Slow work with Windows 1803

Hi, one of my customer reported, that after update Windows to 1803 version, program work very slow. From time to time the speed is normal (like under Windows 7 or Windows 10 release befor 1803). Database is DBF/NTX, server is Window Server 2012 R2, computers are DELL with Windows 10 Pro. Any idea? R...
by Piotr D
Wed Jun 13, 2018 12:10 pm
Forum: Xbase++ 2.0
Topic: Outlook Activex doesn't work
Replies: 4
Views: 11737

Re: Outlook Activex doesn't work

Hi Roger,
I have a similiar problem. One of my users report me, that don't work CreateObject('Word.Application') on computer with Windows 10 with Office 365 installed on local machine. Any idea?
Piotr
by Piotr D
Sat Apr 21, 2018 1:19 pm
Forum: eXpress++ Support
Topic: The problem with MEMO
Replies: 36
Views: 50703

Re: The problem with MEMO

Hello Eugen, in DbeSys.PRG what type of COMPONENT_ORDER you use? Try this: IF ! DbeLoad( "FOXDBE", .T.) Alert( "Motor bazy danych FOXDBE nie został załadowany" , {"OK"} ) ENDIF IF ! DbeLoad( "CDXDBE",.T.) Alert( "Motor bazy danych CDXDBE nie został załadowany" , {"OK"} ) ENDIF IF ! DbeBuild( "FOXCDX...
by Piotr D
Fri Mar 16, 2018 2:13 pm
Forum: Xbase++ 2.0
Topic: Problem with DbCommit
Replies: 5
Views: 13723

Re: Problem with DbCommit

Zolifree thanks for your tips, I will look what antivirus is installed on this (customer) computer. One year ago I was little similar problem with McAfee antivirus. Problem occurs when open a DBF file for indexing. McAfee was configured in "scan all opened files in real time". When problem want open...
by Piotr D
Thu Mar 08, 2018 12:54 pm
Forum: Xbase++ 2.0
Topic: Problem with DbCommit
Replies: 5
Views: 13723

Problem with DbCommit

Hi, one of my customer report me problem which occurs on network (Windows Server 2012) stochastic. I have one file (FoxPro file DBF with FPT) in which I save in memo field some informations. From time to time an error occurs in line with DbCommit() (first I lock a record, then replace memo field wit...