Search found 105 matches

by SlavkoDam
Wed Aug 28, 2024 12:13 am
Forum: Xbase++ 2.0
Topic: Tooltip
Replies: 6
Views: 4029

Re: Tooltip

Hi, I know all Windows controls, including Tooltip. In my PowerWin library I have implemented some of them: Animation, SysLink and Up-Down. I think that Alaska has no more interest to implement other missing Windows controls. If you prefer Windows Tooltip control, why don't you implement it and make...
by SlavkoDam
Mon Aug 26, 2024 6:02 am
Forum: Xbase++ 2.0
Topic: Tooltip
Replies: 6
Views: 4029

Re: Tooltip

Hi, I know that MagicHelp is an Alaska sample in Source\Samples\Solution\Tooltip. It works fine in their example, and I don't think its a bad solution. Maybe its usage in eXpress++ system is not correct and needs some changes. In my PowerWin library I also implemented tooltip, but its simpler than i...
by SlavkoDam
Fri Aug 23, 2024 7:35 am
Forum: Xbase++ 2.0
Topic: Tooltip
Replies: 6
Views: 4029

Re: Tooltip

Hi, There are a number of complains with problems of using DC_ToolTipEnable(.T.) and MagicHelp, and none of them are solved??? It seems that MagicHelp in not so "Magic", or DC_ToolTip don't use it correctly. I think that in the line 938 the cause of error is this part: lastmp1[1] == mp1[1] .AND. las...
by SlavkoDam
Tue Jul 30, 2024 10:52 pm
Forum: eXpress++ Support
Topic: Fields
Replies: 1
Views: 2647

Re: Fields

FieldName( nFieldPos ) // field name
FieldInfo( nFieldPos, FLD_TYPE ) // data type
FieldInfo( nFieldPos, FLD_LEN ) // field length
FieldInfo( nFieldPos, FLD_DEC ) // decimal places
by SlavkoDam
Tue Jul 09, 2024 1:05 am
Forum: PostGreSQL
Topic: Which version of Postgresql works on windows 7
Replies: 10
Views: 11181

Re: Which version of Postgresql works on windows 7

I wonder if it works with current versions of Xbase++. No, I'm not interested; I just wonder. Believe or not, It works with Xbase++ build 2158. Also, Alaska documentation says this: "The PostgreSQL Database Engine supports all PostgreSQL servers, starting with Version 8.2 or higher". And again, you...
by SlavkoDam
Sun Jul 07, 2024 7:03 am
Forum: PostGreSQL
Topic: Which version of Postgresql works on windows 7
Replies: 10
Views: 11181

Re: Which version of Postgresql works on windows 7

It maybe won't work with PGDBE/ISAM emulation.
Yes it works, I use it with PGDBE/ISAM emulation and its works fine. You obviously didn't try and don't know. :lol:
This version is distributed with old versions of XPP 2.0, and it works with PGDBE on Windows XP, 7, 8.1, 10.
by SlavkoDam
Sat Jul 06, 2024 11:30 am
Forum: PostGreSQL
Topic: Which version of Postgresql works on windows 7
Replies: 10
Views: 11181

Re: Which version of Postgresql works on windows 7

I use 8.3.18.

Slavko
by SlavkoDam
Thu Jun 27, 2024 12:27 pm
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 15370

Re: ZAP and PACK command for DBF files - error Win 11

Hi, These WinAPI functions allow scheduling a thread(s) to run on a single or multiple processors. GetProccesAffinityMask() obtains the processors that a process and its threads are allowed to run on. SetThreadIdealProcessor() runs the thread on the specified processor. SetThreadAffinityMask() force...
by SlavkoDam
Thu Jun 27, 2024 1:24 am
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 15370

Re: ZAP and PACK command for DBF files - error Win 11

Jimmy, Xbase++ can only use 1 x CPU. Multi-Threading, under Xbase++, does not use multi-CPU. This is not true at all. You should read the SetLogicalProcessor() and GetLogicalProcessorCount() functions. This is what Alaska documentation says: SetLogicalProcessor( [<nLogicalProcessor>] ) --> nOldLogic...
by SlavkoDam
Wed Jun 26, 2024 6:43 am
Forum: eXpress++ Support
Topic: ZAP and PACK command for DBF files - error Win 11
Replies: 29
Views: 15370

Re: ZAP and PACK command for DBF files - error Win 11

Victorio, If you want to speed up your massive data file processing, you have to create a multi-threaded application. In that case, the size of RAM memory is of no matter. You have to allocate to each thread a small file part or small array, and synchronize and join the results of all threads. By my...