No COMate Plus downloads ?
COMatePLUS version 1.2
- netmaestro
- PureBasic Bullfrog

- Posts: 8452
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
Re: COMatePLUS version 1.2
COMatePLUS is a free open-source program, so I don't believe srod would mind my mirroring it here:
http://lloydsplace.com/COMatePLUS-PB4-50.zip
If he does, I guess I'll hear from him soon.
http://lloydsplace.com/COMatePLUS-PB4-50.zip
If he does, I guess I'll hear from him soon.
BERESHEIT
Re: COMatePLUS version 1.2
Sorry, but this link don't work ....netmaestro wrote:COMatePLUS is a free open-source program, so I don't believe srod would mind my mirroring it here:
http://lloydsplace.com/COMatePLUS-PB4-50.zip
If he does, I guess I'll hear from him soon.
- DoubleDutch
- Addict

- Posts: 3220
- Joined: Thu Aug 07, 2003 7:01 pm
- Location: United Kingdom
- Contact:
Re: COMatePLUS version 1.2
Has anyone got this, plus AdoMate?
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
https://reportcomplete.com <- School end of term reports system
-
Little John
- Addict

- Posts: 4807
- Joined: Thu Jun 07, 2007 3:25 pm
- Location: Berlin, Germany
Re: COMatePLUS version 1.2
COMate Plus -- and other interesting stuff -- can be downloaded from RSBasic's backup page.
- DoubleDutch
- Addict

- Posts: 3220
- Joined: Thu Aug 07, 2003 7:01 pm
- Location: United Kingdom
- Contact:
Re: COMatePLUS version 1.2
Thanks.... 
I didn't spot AdoMate - do you know if it's there?
I didn't spot AdoMate - do you know if it's there?
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
https://reportcomplete.com <- School end of term reports system
- DoubleDutch
- Addict

- Posts: 3220
- Joined: Thu Aug 07, 2003 7:01 pm
- Location: United Kingdom
- Contact:
Re: COMatePLUS version 1.2
Update: Don't worry - I've dloaded it now. 
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
https://reportcomplete.com <- School end of term reports system
Re: COMatePLUS version 1.2
@srod
Maybe I am a few years behind... today is the first time I've ever needed COM automation through PureBasic... but thank you for this COM package, it is extremely handy!
Maybe I am a few years behind... today is the first time I've ever needed COM automation through PureBasic... but thank you for this COM package, it is extremely handy!
Re: COMatePLUS version 1.2
You're welcome Kenmo.
I may look like a mule, but I'm not a complete ass.
-
zapman*
- Enthusiast

- Posts: 115
- Joined: Wed Jun 02, 2004 10:17 pm
- Location: New Caledonia (South Pacific)
- Contact:
Re: COMatePLUS version 1.2
I've posted a tip to convert .doc, .docx and .odt documents to HTML and PDF using COMatePLUS and OpenOffice.
You can find it here : http://www.purebasic.fr/english/viewtop ... 12&t=50137
You can find it here : http://www.purebasic.fr/english/viewtop ... 12&t=50137
Don't try - DO it !
- DoubleDutch
- Addict

- Posts: 3220
- Joined: Thu Aug 07, 2003 7:01 pm
- Location: United Kingdom
- Contact:
Re: COMatePLUS version 1.2
I've been looking at reading the sensors that are in nextgen Windows 7 and Windows 8 laptops/tablets...
http://software.intel.com/en-us/article ... ent-guide/
Reading them should be possible using COMatePlus - anyone tried this yet or have any examples?
http://software.intel.com/en-us/article ... ent-guide/
Reading them should be possible using COMatePlus - anyone tried this yet or have any examples?
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
https://reportcomplete.com <- School end of term reports system
- Kwai chang caine
- Always Here

- Posts: 5502
- Joined: Sun Nov 05, 2006 11:42 pm
- Location: Lyon - France
Re: COMatePLUS version 1.2
Hello
I try since 6 hours to convert a VB code who works fine in PB, without succes
If someone can help me
PB Code
VB Code
I try since 6 hours to convert a VB code who works fine in PB, without succes
If someone can help me
PB Code
Code: Select all
Protected Sess.COMateObject ;Dim Sess As Object
Protected DB.COMateObject ;Dim DB As Object
Protected Flag.i ;Dim flag As Boolean
Protected Item.VARIANT ;Dim item As Variant
Define.COMateEnumObject Dc
Define.COMateObject NodeObject
Sess = COMate_CreateObject("Notes.NotesSession") ; Set Sess = CreateObject("Notes.NotesSession")
DB = Sess\GetObjectProperty("GetDatabase('', '')") ; Set DB = Sess.GetDatabase("", "")
DB\Invoke("OPENMAIL") ; DB.OpenMail
flag = #True
If Not DB\GetIntegerProperty("IsOpen") ; If Not (DB.IsOpen) Then
Flag = DB\Invoke("Open('', '')") ; flag = DB.Open("", "")
EndIf
;Debug COMate_GetLastErrorDescription()
If Flag
Dc = DB\CreateEnumeration("AllDocuments")
;Doc = Dc\CreateEnumeration("GetFirstDocument")
If Dc
NodeObject = Dc\GetNextObject()
While NodeObject
Debug NodeObject\GetStringProperty("GetItemValue('Subject')(0)")
NodeObject\Release()
NodeObject = Dc\GetNextObject()
Wend
Dc\Release()
EndIf
Sess\Release()
DB\Release()
EndIfCode: Select all
Dim Sess As Object
Dim DB As Object
Dim flag As Boolean
Dim dc As Object
Dim Doc As Object
Dim item As Variant
Set Sess = CreateObject("Notes.NotesSession")
Set DB = Sess.GetDatabase("", "")
DB.OpenMail
flag = True
If Not (DB.IsOpen) Then flag = DB.Open("", "")
If flag Then
Set dc = DB.AllDocuments
Set Doc = dc.GetFirstDocument
Do While Not (Doc Is Nothing)
Debug.Print Doc.GetItemValue("Subject")(0)
Set Doc = dc.GetNextDocument(Doc)
Loop
End If
Set Sess = Nothing
Set DB = Nothing
The happiness is a road...Not a destination
- Kwai chang caine
- Always Here

- Posts: 5502
- Joined: Sun Nov 05, 2006 11:42 pm
- Location: Lyon - France
Re: COMatePLUS version 1.2
I do not use Lotus note. sorryKwaï chang caïne wrote:Nobody can help me ??
➽ Windows 11 64-bit - PB 6.21 x64 - AMD Ryzen 7 - NVIDIA GeForce GTX 1650 Ti
Sorry for my bad english and the Dunning–Kruger effect