Dears,
I have a problem with passing out type parameter to win32com function. In C#
envirement one of the COM’s function prototype is:
int ActEasyIF.ReadDeviceBlock(string szDevice, int Isize, out int
IpIdata);
when calling the function ,it passes a first element of a int array to
Dears,
I have a problem with passing out type parameter to win32com function. In C#
envirement one of the COM's function prototype is:
int ActEasyIF.ReadDeviceBlock(string szDevice, int Isize, out
int IpIdata);
when calling the function ,it passes a first element of a int array to t
wjh wrote:
>
> Dears,
>
> I have a problem with passing out type parameter to win32com function.
> In C# envirement one of the COM’s function prototype is:
>
> int ActEasyIF.ReadDeviceBlock(string szDevice, int Isize,
> out int IpIdata);
>
> when calling the function ,it passes a first
Hi Mark,
Thank you for your suggestion. I made it to work by following the sequence
below:
1) EmptyClipboard()
2) SetClipboardData(CF_UNICODETEXT)
3) SetClipboardData(CF_HDROP, ret_stg.data)
Now am able to paste the images in all supported applications in Windows
7/8.
I am happy with this for now
Hi guys,
I am trying to get BitmapBits from PyBITMAP object. As per the pywin32 doc,
i guess i managed to unpack the PyBITMAP structure to get the pointer to
bitmap bits. But when i use that pointer in PyGetMemory() i get
"ValueError: The value is not a valid address for reading"
Any clues please