Search found 100 matches

by k-insis
Tue Apr 05, 2022 4:30 am
Forum: eXpress++ Support
Topic: Internal account lookup failure, when installing POSTGRESQL
Replies: 3
Views: 2989

Re: Internal account lookup failure, when installing POSTGRESQL

Did you perhaps use some very old pgsql installer or current one ? My computer had Windows 7. I changed it to Windows 10. On windows 7, I installed postgresql correctly. But, now in Wibdows 10, right at the end of the installation this error appears: "Internal account lookup failure: No mapping betw...
by k-insis
Thu Mar 31, 2022 1:07 am
Forum: eXpress++ Support
Topic: cXml
Replies: 9
Views: 4252

Re: cXml

Of course, but it would be mighty helpful if you posted more about which standard for electronic invoice in xml format they need. See - It is not trivial, but not 'hard as hell' to produce xml invoices and send them to specific web service together with pdf and some other files to process. Even sign...
by k-insis
Mon Mar 14, 2022 1:53 am
Forum: eXpress++ Support
Topic: DCBROWSE combined with a DCCOMBOBOX
Replies: 3
Views: 2235

Re: DCBROWSE combined with a DCCOMBOBOX

DCBROWSECOL has "EDITOR" property. If you are express++ user, the demo is under : Xdemo.exe -> "Samples" -> "Sample group 1" -> [o] CellEdit Which is just what you need. I am looking for an example of a DCBROWSE, where one of the columns is a DCCOMBOBOX, OR A DCLISTBOX. I have been searching for sev...
by k-insis
Mon Mar 14, 2022 12:39 am
Forum: eXpress++ Support
Topic: Error when accessing the site
Replies: 10
Views: 5391

Re: Error when accessing the site

Interesting, I do run all Windows instances under Linux VMs and dc_spawnurl works as documented . But url.dll that is used inside that is part of internet explorer which might be blocked under specific configuration due to safety issues. This: "rundll32 url.dll,FileProtocolHandler file://fil...........
by k-insis
Thu Mar 10, 2022 12:35 am
Forum: eXpress++ Support
Topic: Error when accessing the site
Replies: 10
Views: 5391

Re: Error when accessing the site

@Eugene: dc_spawnurl does indeed fail (and produce error) on some machines (w10+domain+security restrictions), but there is replacement If it is only to open certain webpage, then use sample: //ShellOpenFile( "https://duckduckgo.com/?q=ShellExecuteA&t=h_&ia=web", .f., "open", ) //code : it was poste...
by k-insis
Mon Mar 07, 2022 1:40 am
Forum: eXpress++ Support
Topic: Speed Windows 11
Replies: 23
Views: 12424

Re: Speed Windows 11

"Notice" is not a valid method of measurement. Do some tests on same hardware, write specs and timings into spreadsheet, compare numbers. Some of slow downs can come for cpu mitigations that are enabled fully on W11 and cause (on older cpus like intel core 8xxx) a significant slowdown This is old .p...
by k-insis
Fri Feb 25, 2022 12:53 am
Forum: eXpress++ Support
Topic: copy to
Replies: 2
Views: 2346

Re: copy to

Generally this is what you should read: https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file and "/" is not allowed. But you can mitigate that with replacing "/" in date with "-" easily. Look under chapter "Naming Conventions" that includes list of restrictions. Roger, What are the ch...
by k-insis
Thu Feb 24, 2022 1:48 am
Forum: PostGreSQL
Topic: dbfUpsizing questions
Replies: 8
Views: 6667

Re: dbfUpsizing questions

The fault on slow speed are extensive use of triggers: isam_rowversion_update , isam_rowversion_update and each table adds own triggers ( which combined is expensive when having isam type indexes): CREATE TRIGGER parts_isam_rowversion AFTER UPDATE ON public.parts FOR EACH ROW EXECUTE PROCEDURE publi...
by k-insis
Tue Jan 04, 2022 2:06 am
Forum: eXpress++ Support
Topic: Is there a portable ADS with an ISAM interface?
Replies: 41
Views: 21608

Re: Is there a portable ADS with an ISAM interface?

Privjet! What you came to is that you bumped to limits of DBF and in xbase too. IMHO apart to moving to SQL there is no sensible option to manage large datasets in 32bit as alaska xbase has file size 2^32 bytes limit and dbf format 2038 (foxdbe) field limit, but all that was already said here. On "j...
by k-insis
Tue Jan 04, 2022 12:47 am
Forum: eXpress++ Support
Topic: How to Verify that a given SQL statemen is a valid
Replies: 2
Views: 2198

Re: How to Verify that a given SQL statemen is a valid

There is sqlfiddle (a online site) that does that (not sure how deep it supports ansi sql) 1) You are looking into wrong direction. For such testing purposes there are integrated environments that do that job (sql enterprise manager is good example, also mysql workbench and pgadmin for postgresql). ...