Search found 100 matches

by k-insis
Tue May 10, 2022 12:16 am
Forum: Xbase++ 2.0
Topic: Problem sending data using HttpEndpoint
Replies: 9
Views: 4231

Re: Problem sending data using HttpEndpoint

Local machine with Windows. Might there be some shared .dll in path that changed to another release (older one with bugs) - I saw problem like that already but with ssl libraries. That is indeed hard to find out. If there was "no code change" ... there was code change I agree with that assessment, h...
by k-insis
Sun May 08, 2022 11:22 pm
Forum: Xbase++ 2.0
Topic: Problem sending data using HttpEndpoint
Replies: 9
Views: 4231

Re: Problem sending data using HttpEndpoint

"This has been working fine until today. There have been no code changes on either end." If there was "no code change" ... there was code change . Did you consider some shared library used by handling routines at server side was updated ? Do you manage server too? Have you found the cause of this pr...
by k-insis
Tue May 03, 2022 10:54 pm
Forum: eXpress++ Support
Topic: A program for splitting a docx file into parts of no more than a specified size
Replies: 7
Views: 4023

Re: A program for splitting a docx file into parts of no more than a specified size

There exist some online docx splitters ( products.aspose.app ) If you need to do it xbase source, than easiest way would be using object of Ms Office Word itself. so in create object xoApp := CreateObject("Word.Application") then open source docx, and open two file copies of source docs (to retain s...
by k-insis
Wed Apr 13, 2022 3:39 am
Forum: PostGreSQL
Topic: Unlocking logs when a POSTGRESQL client disconnects abnormally
Replies: 10
Views: 8466

Re: Unlocking logs when a POSTGRESQL client disconnects abnormally

Locking just before change and unlocking right after update is more sensible solution, including for regular dbf / it spares server resources. Same situation with 'hanging' locks happens if connection between client and server is lost while app is running with active locks. But if AS might move this...
by k-insis
Wed Apr 13, 2022 1:33 am
Forum: eXpress++ Support
Topic: Line wrapping in DCMULTILINE
Replies: 6
Views: 3279

Re: Line wrapping in DCMULTILINE

Hello. Did you tried embedding strings into command directly ? like this: @43.3, 0 DCPUSHBUTTON CAPTION (IIF(mLanguage==1,'Помощь','Help')); SIZE LEN(IIF(mLanguage==1,'Помощь','Help'))+w,1.5; OBJECT oButton; ACTION {|| cOutString := MessHelp(), DC_GetRefresh(GetList) } Thank you, k-insis! It works p...
by k-insis
Mon Apr 11, 2022 11:27 pm
Forum: PostGreSQL
Topic: Unlocking logs when a POSTGRESQL client disconnects abnormally
Replies: 10
Views: 8466

Re: Unlocking logs when a POSTGRESQL client disconnects abnormally

Can you copy/paste reply by AS ? It would be interesting if and if, what they say about that (quite big) issue. Unless they use some additional timestamp and limit 'lock' on limited timeslot, or even use another table with information.... . Concept of record locking in sql is quite different to file...
by k-insis
Mon Apr 11, 2022 11:22 pm
Forum: eXpress++ Support
Topic: Line wrapping in DCMULTILINE
Replies: 6
Views: 3279

Re: Line wrapping in DCMULTILINE

as pt.A) Use NOHORIZSCROLL clause also you can set font, set max alloved chars, etc @ 1,1 DCMULTILINE cText FONT "10.Courier" SIZE 120,35 NOHORIZSCROLL MAXCHARS 60000 Not sure about pt.B, can you provide part of code ? What parameters should I use to access the DCMULTILINE so that it displays text w...
by k-insis
Sun Apr 10, 2022 10:52 pm
Forum: PostGreSQL
Topic: Unlocking logs when a POSTGRESQL client disconnects abnormally
Replies: 10
Views: 8466

Re: Unlocking logs when a POSTGRESQL client disconnects abnormally

Pgdbe (when using 'upsize' tool) uses a addition to every table, namely : __deleted boolean NOT NULL DEFAULT false, __record integer NOT NULL DEFAULT nextval('sometable___record_seq'::regclass), __rowversion integer NOT NULL DEFAULT 0, __keyversion integer NOT NULL DEFAULT 0, __lock_owner integer NO...
by k-insis
Thu Apr 07, 2022 11:49 pm
Forum: eXpress++ Support
Topic: Speed Windows 11
Replies: 23
Views: 12428

Re: Speed Windows 11

That was adressed by KB5006746 on 2021-10-21

https://www.amd.com/en/support/kb/faq/pa-400
Auge_Ohr wrote: Tue Mar 01, 2022 6:50 am
but "older" Hardware are not support by Windows 11
e.g. Ryzen 2xxx / 3xxx L3-Cache does not work correct ( -40% )
by k-insis
Tue Apr 05, 2022 11:23 pm
Forum: eXpress++ Support
Topic: Internal account lookup failure, when installing POSTGRESQL
Replies: 3
Views: 2989

Re: Internal account lookup failure, when installing POSTGRESQL

Cool. Do they still recommend 8.3 in documentation ? It is beyond reasoning why they don't update officially recomended pgsql to anything current. They should test pgdbe with it when having all source and tools needed in house . Hello k-insis In the Alaska Software download center, a version of Post...