Marc-Andre Belzile wrote:
> Hi,
>
> I'd like to be able to attach an OpenGL context to a Canvas. Can PyOpenGL and
> pyGUI work together?
PyGUI already includes OpenGL support.
--
Tim Roberts, [email protected]
Providenza & Boekelheide, Inc.
___
python-
Marc-Andre Belzile wrote:
I'd like to be able to attach an OpenGL context to a Canvas. Can PyOpenGL and
pyGUI work together?
Yes, there is a GLView class for on-screen drawing, and a GLPixmap
class for off-screen drawing with OpenGL.
--
Greg
___
pyt
You should probably check out the "pippo" examples in the win32com\test
directory for an example of associating the python COM object with the
typelib.
HTH,
Mark
On 16/12/2010 12:08 PM, Mariano Reingart wrote:
Hello
I'm trying to create a type library (TLB) using MIDL.EXE for a
PythonCom se
Thanks very much Mark, pippo_server.py was exactly what I needed.
I was missing defining the _typelib_guid_, _typelib_version_,
_com_interfaces_ and then registering the type library with
pythoncom.LoadTypeLib and pythoncom.RegisterTypeLib.
VB doesn't complain now, all seems working fine, and wit