home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ANews 3
/
AnewsCD3.iso
/
DP
/
Programmation
/
PureBasic_Demo
/
Examples
/
Sources
/
Clipboard.pb
< prev
next >
Wrap
Text File
|
1999-10-10
|
498b
|
20 lines
;
; *************************************
;
; Clipboard example file for Pure Basic
;
; © 1999 - Fantaisie Software -
;
; *************************************
;
;
SetClipboardText("Hello world - Amiga is Back") ; Fill the clipboard with our text
a$ = GetClipboardText() ; Get the Clipboard content
NPrint("Clipboard content: "+a$) ; Display the content. Is it working ?
NPrint("Test it by just press 'Right Amiga + V'") ; Check yourself
End