thanks mark.
i've got to the bottom of the problem -- there seems to be a problem with
constructing/updating PyBitmaps.
or, more generally, the fuzzy boundary between win32gui and win32ui. what
do you think about python-wrapping the win32 api, and building the
MFC-like class system in python? a
> hi, i can't seem to create a bitmap in memory using pywin32.
> my assert
> fails, telling me that the bitmap size is (0,0)?
I'm no expert on GDI programming at all. However, I have code that works
that looks like:
hdcBitmap = win32gui.CreateCompatibleDC(0)
hdcScreen = win32gui.GetDC(
hi, i can't seem to create a bitmap in memory using pywin32. my assert
fails, telling me that the bitmap size is (0,0)?
here's fragments:
class window:
def __init__
...
self.hwnd = CreateWindow(...)
wnd=CreateWindowFromHandle(self.hwnd)
wdc=wnd.GetDC()
hi, i can't seem to create a bitmap in memory using pywin32. my assert
fails, telling me that the bitmap size is (0,0)?
here's fragments:
class window:
def __init__
...
self.hwnd = CreateWindow(...)
wnd=CreateWindowFromHandle(self.hwnd)
wdc=wnd.GetDC()
> The code below seems to work.
>
> def GetClipboardText():
> text = ""
> if OpenClipboard(c_int(0)):
> hClipMem = GetClipboardData(c_int(CF_TEXT))
> GlobalLock.restype = c_char_p
> text = GlobalLock(c_int(hClipMem))
> GlobalUnlock(c_int(hClipMem
Hi Everyone, William
I found quite a lot of code on capturing text from the
clip-board and pasting it. But couldnt find any
information on pasting screenshots into MS-WORD.
This seems to work fine for pasting text
def GetClipboardText():
text = ""
if OpenClipboard(c_int(0)):
> I am new to python WIN-32 and am trying to automate a
> word document creation. I am trying to paste clipboard
> that I capture from an application to MS Word and I
> was wondering if this can be done through python
> WIN-32. I am a doing a sequence of tests which saves
> simulation results to th
Hi Guys,
I am new to python WIN-32 and am trying to automate a
word document creation. I am trying to paste clipboard
that I capture from an application to MS Word and I
was wondering if this can be done through python
WIN-32. I am a doing a sequence of tests which saves
simulation results to the
> I found an old thread in a python-list that discusses the
> same problem.
> http://mail.python.org/pipermail/python-list/2003-February/150857.html
>
> If I try the advice to use EnsureDispatch I get following error:
> File "ExportVIStrings.py", line 19, in ?
>
> app=win32com.client.gencache.En
Hi All,
> I try to access LabView by Python-win32com but LabView crashes on
some COM-method calls.
> The same calls work in VB.
> Are there some known problem with the LabView COM implementation?
There is a strange behavior of attribute/method access of the
COM-Object: Methods are already call
10 matches
Mail list logo