Search found 105 matches

by SlavkoDam
Wed Oct 18, 2023 9:25 am
Forum: Xbase++ 2.0
Topic: Error in XbpToolbar
Replies: 11
Views: 15150

Re: Error in XbpToolbar

Hi Jimmy, I got your code of RTF control you have sent to me and its great. But, I will suggest you to implement in the code all Windows API functions calls with Alaska C-API, instead of of using DllCall() and Ot4Xb library. Your code will be shorter, simpler and more consistent, the control will be...
by SlavkoDam
Tue Oct 17, 2023 5:34 am
Forum: eXpress++ Support
Topic: ADS
Replies: 24
Views: 19078

Re: ADS

I want to have good results in short time. I don't think that 1 year is a short and acceptable time. If you have it, good. And I do care about the optimization of my database and application and want the best results from them. I will always work with direct and best technique and not some simulati...
by SlavkoDam
Mon Oct 16, 2023 11:19 pm
Forum: eXpress++ Support
Topic: ADS
Replies: 24
Views: 19078

Re: ADS

I don't think that application code migration from ISAM to true SQL would be so long process (1 year :?: :o ), if you have the right tool. In PowerSql library you have the same SQL function for each DBF function, there is one to one counterpart with very similar name. You don't have to manually crea...
by SlavkoDam
Sat Oct 14, 2023 6:49 am
Forum: eXpress++ Support
Topic: ADS
Replies: 24
Views: 19078

Re: ADS

k-insis wrote: PGDBE might not be cooperating well when another software (web server, .net app) is reading/writing same data as it relies on set of special columns and tables across database with multiple triggers that need to be updated for simulated fixed indexes, 'deleted' and 'dbrlock' to work ...
by SlavkoDam
Sun Oct 08, 2023 11:38 pm
Forum: PostGreSQL
Topic: DbRegisterClient() with PostGres
Replies: 15
Views: 14075

Re: DbRegisterClient() with PostGres

Cris, I use the same model as you. There is the current database and the archive database. When the last business year is finished and closed, the client can copy data from the current database to the archive database and remove them from the current database. When he wants data from the old years h...
by SlavkoDam
Thu Jul 27, 2023 3:07 am
Forum: CXP / Web Development
Topic: PowerWeb app example - Article Codebook with 1.000.000 Recs (Part 6)
Replies: 10
Views: 17932

Re: PowerWeb app example - Article Codebook with 1.000.000 Recs (Part 6)

As I said, I work only on Windows. If you have some of those tablets, you can try.
by SlavkoDam
Tue Jul 25, 2023 11:33 pm
Forum: CXP / Web Development
Topic: PowerWeb app example - Article Codebook with 1.000.000 Recs (Part 6)
Replies: 10
Views: 17932

Re: PowerWeb app example - Article Codebook with 1.000.000 Recs (Part 6)

This is a link to a public server where is installed PowerWeb app example Article Codebook. It is available all the time. This shows that PowerWeb app can run from any web address, not only on a local computer. It all depends what is the address of the HTTP server, the app is running on. http://serv...
by SlavkoDam
Tue Jul 25, 2023 3:50 am
Forum: CXP / Web Development
Topic: PowerWeb app example - Article Codebook with 1.000.000 Recs (Part 6)
Replies: 10
Views: 17932

Re: PowerWeb app example - Article Codebook with 1.000.000 Recs (Part 6)

Yes, PowerWeb demo examples work only on a local computer, because they are demos and work on a locally created HTTP server. But, PowerWeb production version can run on any internet address on the web. Alaska software is for Windows OS, you can check that on Alaska website. I am developing libraries...
by SlavkoDam
Mon Jul 24, 2023 11:11 am
Forum: CXP / Web Development
Topic: PowerWeb app example - Article Codebook with 1.000.000 Recs (Part 6)
Replies: 10
Views: 17932

Re: PowerWeb app example - Article Codebook with 1.000.000 Recs (Part 6)

Pedro, PowerWeb can service any kind of web app. As I said before, I work only in Windows and have no experience with Android. There are two ways of printing in a web app: 1. Create HTML print document and print it with document print() function to a default system printer. 2. Create XPP print docum...
by SlavkoDam
Sun Jul 23, 2023 11:35 pm
Forum: eXpress++ Support
Topic: I NEED A UNIQUE NUMBER GENERATOR FUNCTION
Replies: 8
Views: 7725

Re: I NEED A UNIQUE NUMBER GENERATOR FUNCTION

It is transaction document ID. I am thinking of something derivable from Date()+Seconds()+Computer ID. When you derive your string ID as above, you can convert it to HEX and that HEX to DEC, what will gives you a unique number. PowerUtl library contains functions for this. Unique number can be also...