﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1081	Consider this code for include: waiting for the clipboard to fill.	jondemarks@…	Gary	"This code block clears the clipboard and waits until it is filled again. It may need to be modified to come inline with your standards, this is just one way of doing it.

Seems to be good for core functionality.

{{{
Func _Clipboard_Wait()
	_ClipBoard_Empty()
	$thisClip = 0
	While StringLen($thisClip) == 0
		Sleep(10)
		$hMemory = _ClipBoard_GetDataEx($CF_TEXT)
		$tData = DllStructCreate(""char Text[32]"", $hMemory)
		$thisClip = DllStructGetData($tData, ""Text"")
		$hMemory = 0
		$tData = 0
	WEnd
EndFunc
}}}
"	Feature Request	closed		Standard UDFs		None	Rejected	clipboard, udfs, wait	
