Rodrigo

Results 34 comments of Rodrigo

Hi Sergio, Sure, I'll leave this issue open until I have one to show you.

@sergioferrari I'm taking too long to implement your request because I'm currently working on rewriting WinLamb to the new C++20, and I'm really busy with other things. Menu and statusbar...

Oh yes, I remember using DDE a long time ago. [Are these](https://docs.microsoft.com/en-us/windows/win32/dataxchg/dynamic-data-exchange-functions) the APIs you need?

I've committed the first calls. I believe the API is clean enough: ```go hdde, err := win.DdeInitialize( func(wType co.XTYP, wFmt uint32, hConv win.HCONV, hsz1, hsz2 win.HSZ, hData, dwData1, dwData2 uintptr)...

I just commited the [`DdeClientTransaction`](https://github.com/rodrigocfd/windigo/blob/master/win/user_hdde.go#L152) and [`DdeFreeDataHandle`](https://github.com/rodrigocfd/windigo/blob/master/win/user_hdde.go#L185), but I really have no idea how to test them. Can you check if are they OK?

As far as I could grasp from the documentation, when calling [`DdeConnect`](https://docs.microsoft.com/en-us/windows/win32/api/ddeml/nf-ddeml-ddeconnect), you must pass the name of an **existing** service to connect to. Or, don't pass any name at...

@AfricanElephant What's the Python code you're using to query the DDE service?