Search found 138 matches
- Sun May 18, 2025 11:10 pm
- Forum: eXpress++ Support
- Topic: PDF in tooltip?
- Replies: 5
- Views: 193
Re: PDF in tooltip?
This is best solution. You will offload pdf processing to already optimized system with integrated solution on xpphtmlviewer(2) ? I think I have stored HTML that has simple logic to display arbitrary pdf (and with modification to it of any other file type supported) through it. If you need that smal...
- Fri May 09, 2025 12:11 am
- Forum: eXpress++ Support
- Topic: Apple
- Replies: 2
- Views: 718
Re: Apple
As I doubt they want to buy old x86 laptops, you need to test this with current lineup. https://www.techpowerup.com/331239/apple-silicon-macs-gain-x86-emulation-capability-run-x86-windows-apps-on-macos They have free option so you can try it beforehand. https://www.parallels.com/products/desktop/ It...
- Tue May 06, 2025 10:46 pm
- Forum: PostGreSQL
- Topic: ADS vs PG
- Replies: 42
- Views: 11533
Re: ADS vs PG
xpp+sqlexpress solves our need for xpp based programs -> {oracle,postgresql,mariadb} since 2005 ; where it is too little, app server side php/python and stored procedures on servers help . It works reliably and reasonably fast, support is fast and good. On python xpp interface In 2014 Lorenzo Succi ...
- Mon May 05, 2025 5:20 am
- Forum: PostGreSQL
- Topic: ADS vs PG
- Replies: 42
- Views: 11533
Re: ADS vs PG
Python and php are easy to learn. Not that hard at all and integrate greatly in web apps. Add xsharp (open source and activelty developed) into mix of less known xb* suites. A suite that is integrated into .NET system and Visual Studio ; As such it uses latest C# compiler at backend with support for...
- Mon May 05, 2025 2:34 am
- Forum: PostGreSQL
- Topic: ADS vs PG
- Replies: 42
- Views: 11533
Re: ADS vs PG
There is absolutely nothing wrong for DBMS or any other software to be installed fully or party by script language, whether it is bash shell , powerShell or good old CMD batch. They all have purpose. And what you saw was probably output of installer that invoked start Oracle specific services too th...
- Mon May 05, 2025 2:14 am
- Forum: PostGreSQL
- Topic: ADS vs PG
- Replies: 42
- Views: 11533
- Sun Apr 13, 2025 11:00 pm
- Forum: Xbase++ 2.0
- Topic: Windows 11 Double Monitor problem
- Replies: 1
- Views: 5688
Re: Windows 11 Double Monitor problem
A update to Martin Question Not full solution, but fixed 'windows blinks' by using HIDE in dcgetoptions then repositioning window and displaying it again. DCGETOPTIONS HIDE DCREAD GUI TITLE "Some Window Title" FIT ; OPTIONS GetOptions; ENTEREXIT ; EVAL {|o| o:SetPos(CalculateIdealPos(o), o:Show()} ;...
- Thu Apr 10, 2025 11:12 pm
- Forum: eXpress++ Support
- Topic: ADS
- Replies: 5
- Views: 2389
Re: ADS
Virtualize old server, put it onto new hardware, remove other (unecessary) services and be done with it. And it is sysadmins job. We have a user moving servers, and ADS. Anybody know what has to be done to handle that, from the ADS side. All I know is where the install files are, but not sure that h...
- Tue Apr 08, 2025 11:41 pm
- Forum: PostGreSQL
- Topic: Database backup and restore in pg xbade++
- Replies: 9
- Views: 11899
Re: Database backup and restore in pg xbade++
Mr. Joe you are wrong in basic concept of how pgdbe server access works. This is client server and you do not execute shell commands via SQL command interface as that would be a huge security no-no if implemented. To start backups/restores from your application you have to do that on client side or ...
- Tue Apr 01, 2025 2:12 am
- Forum: PostGreSQL
- Topic: Database backup and restore in pg xbade++
- Replies: 9
- Views: 11899
Re: Database backup and restore in pg xbade++
This is not advisable method by Postgresql official documentation: https://www.postgresql.org/docs/16/backup-file.html You may directly create a backup of the physical files where your database is stored. Open pgAdmin, select your database and open the query tool. Type this command: show data_direct...