[python-win32] Python and LabView over COM? (again)

2005-04-21 Thread Frank Guenther
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 called

Re: [python-win32] pasting from clip-board

2005-04-21 Thread ryan pinto
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)):

[python-win32] drawing a bitmap

2005-04-21 Thread Jack Andrews
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()

RE: [python-win32] drawing a bitmap

2005-04-21 Thread Mark Hammond
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(0)