Hey, I've been trying to make this little app that will display the content of the clipboard and then erase it just for fun (which I will add later). I came across this little problem though, this isn't working for me:
sync on
sync rate 60
load dll "user32.dll",1
clipboard$=call dll(1,"OpenClipboard","clipboarderaser")
do
text 100,100,"Your Clipboard Contains:"
text 100,120,clipboard$
sync
loop
Any idea what's wrong? I can't see why it wouldn't work... do I need to use another method to get the return value from the DLL Call? Try it out, it just says
Your Clipboard Contains:
...That's all.
Thanks in advance.