| View previous topic :: View next topic |
| Author |
Message |
rockit0
Joined: 06 Oct 2006 Posts: 22
|
Posted: Wed Jul 09, 2008 12:29 am Post subject: Compare Clipboard contents |
|
|
this my logical is correct?
if (clipboard = "") or (clipboard != "" AND clipboard = temp)
{
...
}
[Title edited. Please write descriptive titles for your topics. ~jaco0646] |
|
| Back to top |
|
 |
[VxE]
Joined: 07 Oct 2006 Posts: 1494
|
Posted: Wed Jul 09, 2008 12:33 am Post subject: Re: simple question |
|
|
| Code: | if (clipboard = "") or ( clipboard = temp )
; if either clipboard has no text in it
; OR if the clipboard's contents are identical to the contents of the variable 'temp'
{
; ...
} |
_________________ My Home Thread
More Common Answers: [1]. It's in the FAQ [2]. Ternary ( a ? b : c ) guide [3]. Post code inside [code][/code] tags ! |
|
| Back to top |
|
 |
|