Search found 390 matches

by byron.hopp
Wed Mar 12, 2025 5:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Ping several items in xHarbour
Replies: 4
Views: 2761

Re: Ping several items in xHarbour

Class McsICMP
Data nPort,nStatus,cData,cOptions,nTimeout,nElapsed,cEcho,cIp,nSeconds,cLog
Method New(cIp)
Method SendEcho()
End Class

Method New(cIpAddress) Class McsICMP
// Internet Control Message Protocol - (ICMP)
// Packed INternet Grouper - (PING)
::cIp := cIpAddress
::nPort := 0 ...
by byron.hopp
Tue Mar 11, 2025 7:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TImage Class
Replies: 4
Views: 5001

TImage Class

I have been using the TImage class because my scanner hardware died, and the other scanner only produces JPG instead of BMP. However I cannot get the Method RotateImage to work it says message not found, and I cannot seem to resize the image, does this work, or am I doing something wrong.

Thanks,
by byron.hopp
Tue Jan 07, 2025 12:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: GetDesktopWindow() on dual monitor system.
Replies: 10
Views: 2019

Re: GetDesktopWindow() on dual monitor system.

I think I got it, I needed to refer to the hash variables h["nMonitor"] instead of h:nMonitor. Now I got my numbers. And life is good again.
Thanks again Antonio.
by byron.hopp
Mon Jan 06, 2025 10:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: GetDesktopWindow() on dual monitor system.
Replies: 10
Views: 2019

Re: GetDesktopWindow() on dual monitor system.

I have this example of monitor information, but I don't know how to use it. Currently it displays and xbrowse window, how do I just get the information in an array so I can utilize it later. Don't need the xbrowse dialog.

Function Antonio()
EnumDisplayMonitors( { | nMonitor, hMonitor, hdcMonitor ...
by byron.hopp
Sun Dec 01, 2024 4:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Error with Dll.
Replies: 7
Views: 1116

Re: Error with Dll.

Thank you all, that did the trick. I installed the x86 version and all is good.
by byron.hopp
Sun Dec 01, 2024 7:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: Error with Dll.
Replies: 7
Views: 1116

Re: Error with Dll.

Yes I am using libcurl.dll.
by byron.hopp
Sun Dec 01, 2024 6:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: Error with Dll.
Replies: 7
Views: 1116

Re: Error with Dll.

Bcc
by byron.hopp
Sun Dec 01, 2024 2:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: Error with Dll.
Replies: 7
Views: 1116

Error with Dll.

I wrote a simple program to send texts based on a parameter I pass to the executable. ie. mcsqt.exe "Started Backup of Server". I have installed this on three servers, 2 2012 Windows Servers, and 1 2022 Windows Server. On the Windows 2022 server I get an error MSVCR122.Dll "The code execution cannot ...
by byron.hopp
Fri Nov 01, 2024 3:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Question
Replies: 10
Views: 2581

Re: ADS Question

My guess is that RDP does not stand for what I think it does, I did find CRUD on Google. Do you have an example of this method? My current app is a hybrid of SQL using OLEDB, and DBF/CDX with the ADS RDD (both using ADS). If my client had a say in this decision I would switch to SQL Server because ...
by byron.hopp
Thu Oct 31, 2024 11:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Question
Replies: 10
Views: 2581

Re: ADS Question

Thanks Tim,

My problem was that even in the Uniform Datalink Utility the driver would not show to be selected under the Provider - OLE DB Provider(s) tab of the utility. This is a Microsoft utility so I am not even in Fivewin or Harbour as of yet. The OLEDB installer provided by SAP is named ...
by byron.hopp
Thu Oct 31, 2024 10:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Question
Replies: 10
Views: 2581

Re: ADS Question

I believe I found a solution (even a blind squirrel finds a nut). Seems if you install the OLEDB.Exe from version 8.1 the driver shows in the 32 bit version. And you will see it on the Uniform Datalink app.
by byron.hopp
Wed Oct 30, 2024 8:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Question
Replies: 10
Views: 2581

Re: ADS Question

Update, I attempted to run the adsoledb_x86_64.exe on a Hyper-V VM running 32 bit version of Windows. The installer errors out and says it does not support the processor type. I have an Intel i9. Doesn't seem to be any support for ADS anymore. I tried calling, splinters in your finger nails would be ...
by byron.hopp
Wed Oct 30, 2024 8:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Question
Replies: 10
Views: 2581

ADS Question

All, I am currently using ADS 12.0 at a customer site. I have attempted to install the server on my local for testing. When I install OLEDB for 32, and 64 I see in the driver in the Uniform Data Link dialog (take an empty file with a UDL extension and from command 'start myfile.udl'), but if I ...
by byron.hopp
Thu Sep 26, 2024 5:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: GetDesktopWindow() on dual monitor system.
Replies: 10
Views: 2019

Re: GetDesktopWindow() on dual monitor system.

Works perfectly. Do you know the difference between aWorkRect vs (aMonitorRectInfo or aMonitorRect), this is more like what I saw on line I just had no idea how to implement the code. Thanks,
by byron.hopp
Thu Sep 26, 2024 3:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: GetDesktopWindow() on dual monitor system.
Replies: 10
Views: 2019

Re: GetDesktopWindow() on dual monitor system.

Mr. Rao told me to try FW_VirtualScreen(), but I don't know if it works for more than two screens (I only have 2) . However I cannot successfully link my app with EnumDisplayMonitors() the linker can't find it. I did find several mentions of this function when googling the WinAPI for multiple ...