i have some problem with stranded II source code
i use Biltz 3d to edit source code
when i finish i want to run this but...
it's said that Function 'openclipboard' not found
what i can do with that
thankyou
;### New Trim (because of error with "Umlaute" ?.?.? in normal trim functions) Function ntrim$(txt$) 	While Right(txt$,1)="Clipboard" 		txt$=Left(txt$,Len(txt$)-1) 	Wend 	Return txt$ End Function ;### Copy Function copy(txt$) 	Local cb_TEXT=1 	If txt$="" Then Return 	If OpenClipboard(0) 		EmptyClipboard 		SetClipboard cb_TEXT,txt$ 		CloseClipboard 	EndIf End Function ;### Paste Function paste$() 	Local cb_TEXT=1 	Local txt$="" 	If OpenClipboard(0) 		If ExamineClipboard(cb_TEXT) 		txt$=GetClipboardData$(cb_TEXT) 		EndIf 		CloseClipboard 	EndIf ;	For i=1 To Len(txt) ;		DebugLog Mid(txt,i,1)+" "+Asc(Mid(txt,i,1)) ;	Next 	Return txt$ End Function