Hi,
I think you can download it here: http://perso.wanadoo.fr/marc.vitry/purebasic.htm
The link was posted by Marc here:
viewtopic.php?t=6590&highlight=rs232
Search found 7 matches
- Mon Jul 21, 2003 8:38 am
- Forum: Coding Questions
- Topic: Where download CallCOM library ?
- Replies: 2
- Views: 1678
- Sun Jul 20, 2003 9:23 pm
- Forum: Tricks 'n' Tips
- Topic: Download any section of .html from web
- Replies: 32
- Views: 13869
- Thu Jul 17, 2003 11:47 am
- Forum: Tricks 'n' Tips
- Topic: Timestamp2Time & now2Timestamp
- Replies: 0
- Views: 1355
Timestamp2Time & now2Timestamp
Code updated for 5.20+
;
; by Pille, 15.07.2003
;
Procedure.s Timestamp2Time(stamp.l)
;Time = Timestamp2Time(1234567890)
tStart.l = Date(1970,01,01,00,00,00)
ProcedureReturn FormatDate("%dd.%mm.%yyyy %hh:%ii:%ss", tStart+stamp)
EndProcedure
Procedure.l now2Timestamp()
;Timestamp ...
;
; by Pille, 15.07.2003
;
Procedure.s Timestamp2Time(stamp.l)
;Time = Timestamp2Time(1234567890)
tStart.l = Date(1970,01,01,00,00,00)
ProcedureReturn FormatDate("%dd.%mm.%yyyy %hh:%ii:%ss", tStart+stamp)
EndProcedure
Procedure.l now2Timestamp()
;Timestamp ...
- Thu Jul 17, 2003 11:43 am
- Forum: Tricks 'n' Tips
- Topic: openCdDoor & closeCdDoor
- Replies: 2
- Views: 1964
openCdDoor & closeCdDoor
Code updated for 5.20+
;
; by Pille - 17.07.2003
;
; If you want to change the Drive you can do it like this:
; mciSendString_("Open K: Alias DriveK Type CDAudio", 0, 0, 0)
; mciSendString_("Set DriveK Door Open", 0, 0, 0)
; mciSendString_("Set DriveK Door Closed", 0, 0, 0)
Procedure ...
;
; by Pille - 17.07.2003
;
; If you want to change the Drive you can do it like this:
; mciSendString_("Open K: Alias DriveK Type CDAudio", 0, 0, 0)
; mciSendString_("Set DriveK Door Open", 0, 0, 0)
; mciSendString_("Set DriveK Door Closed", 0, 0, 0)
Procedure ...
- Wed Jul 16, 2003 5:41 pm
- Forum: Tricks 'n' Tips
- Topic: RC4
- Replies: 41
- Views: 24477
- Tue Jul 15, 2003 5:52 pm
- Forum: Tricks 'n' Tips
- Topic: RC4
- Replies: 41
- Views: 24477
RC4
;
; RC4 for PB by Pille, 16.07.2003 - Rev 2
;
;
; RC4 is a stream cipher designed by Rivest for RSA
; Data Security (now RSA Security). It is a variable
; key-size stream cipher with byte-oriented operations.
; The algorithm is based on the use of a random
; permutation. Analysis shows that the ...
; RC4 for PB by Pille, 16.07.2003 - Rev 2
;
;
; RC4 is a stream cipher designed by Rivest for RSA
; Data Security (now RSA Security). It is a variable
; key-size stream cipher with byte-oriented operations.
; The algorithm is based on the use of a random
; permutation. Analysis shows that the ...
- Mon Jul 14, 2003 5:52 pm
- Forum: Tricks 'n' Tips
- Topic: OpenUrl
- Replies: 0
- Views: 1503
OpenUrl
Code updated for 5.20+
;
; by Pille, 14.07.2003
; Adapted from Jost Schwider's VB OpenUrl
;
Enumeration
#Window
#Editor
#Url
#cmdOpenUrl
EndEnumeration
defaultUrl.s="http://www.google.com/index.html"
Procedure.s OpenURL(URL.s, OpenType.b)
;?OpenType [1 = IOTPreconfig | 2 = IOTDirect | 3 ...
;
; by Pille, 14.07.2003
; Adapted from Jost Schwider's VB OpenUrl
;
Enumeration
#Window
#Editor
#Url
#cmdOpenUrl
EndEnumeration
defaultUrl.s="http://www.google.com/index.html"
Procedure.s OpenURL(URL.s, OpenType.b)
;?OpenType [1 = IOTPreconfig | 2 = IOTDirect | 3 ...