Search found 273 matches

by reganc
Tue Apr 14, 2026 3:42 am
Forum: Xbase++ Support
Topic: Touch screen help
Replies: 11
Views: 3645

Re: Touch screen help

8-) Take a look at the VirtualScreen class(object) of Xbase++ (2.0). VirtualScreen():getPhysicalScreenCount() returns the number of physical screens attached to the workstation. Great. That was what I was looking for. Never noticed this class.. Or if I did, I forgot.. Old age creeping in... ;-)
by reganc
Mon Apr 13, 2026 1:16 am
Forum: Xbase++ Support
Topic: Touch screen help
Replies: 11
Views: 3645

Re: Touch screen help

Tom wrote: Wed Apr 08, 2026 5:37 am

Code: Select all

lHave2ndMonitor := IF(confirmbox(,'Do you have a second monitor?','Just a question',XBPMB_YESNO,XBPMB_QUESTION+XBPMB_SYSMODAL,XBPMB_DEFBUTTON2)=XBPMB_RET_YES,.T.,.F.)
8-)
Oh, very funny... :)
by reganc
Wed Apr 08, 2026 4:43 am
Forum: Xbase++ Support
Topic: Touch screen help
Replies: 11
Views: 3645

Re: Touch screen help

Hi Chris In case you want it on a second monitor. With the following you get the width of the primary monitor. aWorkArea := dc_getworkarea() nWidth := aWorkArea[3] - aWorkArea[1] Then nWidth+1,0 is the first pixel of the second monitor. Just for info, is there an easy way to see if a second monitor ...
by reganc
Thu Feb 19, 2026 10:56 am
Forum: eXpress++ Support
Topic: Chilkat UNLOCK
Replies: 13
Views: 26979

Re: Chilkat UNLOCK

Just for info, it appears the 'unlockcomponent' method was 'removed' from Chilkat 11.0.0 onwards.

So unless I'm mistaken, that error seems to imply that you are using a v11 version of the Chilkat assembly there...?
by reganc
Wed Feb 04, 2026 10:56 am
Forum: Xbase++ Support
Topic: Using Chilkat with a Reg-Free Manifest
Replies: 4
Views: 33429

Re: Using Chilkat with a Reg-Free Manifest

Hi Piotr, It's below... <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity name="rba32.exe" type="win32" version="10.90.0.0"/> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Micros...
by reganc
Mon Sep 08, 2025 2:01 am
Forum: phpBB Board Support
Topic: We are back!!!
Replies: 7
Views: 41513

Re: We are back!!!

Roger,

I'm so glad that the issue with the forum wasn't worse than it turned out to be. Although, I'm sure it felt bad enough when you got back and had to deal with it.

And I'm also glad that in dealing with it you gained something from it. Always nice when that happens.

Regan
by reganc
Tue May 13, 2025 3:51 am
Forum: Zen and the art of Software Maintenance
Topic: Happy Birthday
Replies: 4
Views: 18573

Re: Happy Birthday

I too hope you had a great birthday, Roger!

I always seem to come to the party too late...

Regan
by reganc
Tue May 14, 2024 2:01 am
Forum: Zen and the art of Software Maintenance
Topic: Birthdays come every year but only once a year!
Replies: 5
Views: 70750

Re: Birthdays come every year but only once a year!

Well, I'm sorry I missed the actual day.

But I hope you had a great birthday!
Thanks for all your help and I hope to speak to you sometime soon, perhaps about something other than work for a change...

Regan
by reganc
Tue Nov 21, 2023 5:00 am
Forum: Xbase++ Support
Topic: Using Chilkat with a Reg-Free Manifest
Replies: 4
Views: 33429

Using Chilkat with a Reg-Free Manifest

I have tried to get Chilkat ActiveX library working without a user having to register it first, which should be possible according to everything I have read. We want to be able to 'embed' the manifest into our application rather than have it all as external files in a subfolder. But I've still not b...