Search found 1173 matches

by Tom
Tue Dec 19, 2023 2:02 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4271

Re: Opening A Website

Nobody says there is no word marked with a double-click, Jimmy. Just read carefully.
by Tom
Mon Dec 18, 2023 11:36 pm
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4271

Re: Opening A Website

This is not what Chris is talking about. With the IE control, you can double-click on a text (a word) and just move it (in order to drag it and drop it elsewhere). With the edge control, you can double-click and the word gets marked, but if you try to grab it (in order to drag and drop), the marked ...
by Tom
Mon Dec 18, 2023 8:06 am
Forum: Xbase++ 2.0
Topic: Opening A Website
Replies: 16
Views: 4271

Re: Opening A Website

Is this already available or is this on your todo list?
Just add the XbpHtmlViewer2-asset to the project "DCLIPX_20.XPJ" and replace any call to XbpHtmlViewer with XbpHtmlViewer2 in the DCLIPX-sourcefiles. Rebuild everything. That's it.
by Tom
Mon Dec 18, 2023 2:25 am
Forum: eXpress++ Support
Topic: Problem with MemoWirit
Replies: 5
Views: 1548

Re: Problem with MemoWirit

StrFile() does the same, without any conversions.
by Tom
Sun Dec 17, 2023 11:49 pm
Forum: eXpress++ Support
Topic: Problem with MemoWirit
Replies: 5
Views: 1548

Re: Problem with MemoWirit

MemoWrit() adds an EoF-character to the file contens (HEX 1A, Dec 26). Use StrFile() instead (take care - parameters are exchanged), or the low level functions.
by Tom
Tue Nov 28, 2023 7:35 am
Forum: eXpress++ Support
Topic: rm chart
Replies: 4
Views: 1431

Re: rm chart

We just register the component (manifest-driven), no problems at any client sites. All kinds of OSes in use.

But we remove all rmcharts step by step and replace them with cool JavaScript charts embedded in HTML-documents, shown using the XbpHtmlViewer2.
by Tom
Sun Nov 19, 2023 4:30 am
Forum: phpBB Board Support
Topic: Recovering from surgery
Replies: 6
Views: 2898

Re: Recovering from surgery

Get well soon, Roger!
Hopefully, I will be able to smell and taste food again.
I hope the same for you too.
by Tom
Thu Nov 16, 2023 7:02 am
Forum: eXpress++ Support
Topic: ADS: sp_mgGetUserTables() with same user name
Replies: 19
Views: 3881

Re: ADS: sp_mgGetUserTables() with same user name

SQL_STATEMENT_LIMIT means the maximum number of statements for one connection at a time . It's really hard to reach this limit as long as all statements are properly finished and closed. See correction of my message. Another alternative is to set a Registry Value: SQL_STATEMENT_LIMIT (DWORD) in \HKE...
by Tom
Thu Nov 16, 2023 2:56 am
Forum: eXpress++ Support
Topic: ADS: sp_mgGetUserTables() with same user name
Replies: 19
Views: 3881

Re: ADS: sp_mgGetUserTables() with same user name

The username is W2016SVR on each connection This is the name of the computer connecting to the ADS , which only is an user name in terms of the ADS. The OS User Login Name is the real username. Anyhow, you get all this information (including the TSAddress) with "sp_mgGetTableUsers()", so it's easy ...
by Tom
Tue Nov 14, 2023 6:08 am
Forum: eXpress++ Support
Topic: ADS: sp_mgGetUserTables() with same user name
Replies: 19
Views: 3881

Re: ADS: sp_mgGetUserTables() with same user name

Addition: Using those stored procedures again and again may lead to ADS Error 7216, which means the number of SQL-statements for that connection is exceeded. sp_SetStatementLimit(0) solves that problem. Edit: Correcting a misbehaviour solves the problem aswell. I took the functions from ADSMGT.PRG, ...