Sagar Khushalani wrote:
> one of the few places that actually has help with that. I tried to
> implement it but for some reason it didnt work. I even tried just the
> Example #1, and even that didnt work. I have attached the error in the
> text file.I know its a long error, but I can't find any decent
> documentation on win32com and MSMQs. This is the same error I get when
> I tried my own program. In the main file, I put this:
>
> queueinfo = win32com.client.Dispatch("MSMQ.MSMQQueueInfo")
> queueinfo.PathName = ".\\private$\ErrorQueue"
That string does not say what you think it says.
You need either:
queueinfo.PathName = ".\\\\private$\\ErrorQueue"
or
queueinfo.PathName = r".\\private$\ErrorQueue"
--
Tim Roberts, [EMAIL PROTECTED]
Providenza & Boekelheide, Inc.
_______________________________________________
python-win32 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-win32