if threadSolved = true then
ChangeDamnTitle
Else
There is no way this isnt solved
end if
you can close this now if you want!
Okay I may as well mark solved.
Originally Posted by NextGen1
Really it would be
Dim threadSolved as Boolean = false
if threadSolved = true then
MarkThreadSolved
Else
MsgBox "leave the title alone"
end if
threadSolved = True
Booleans are false by default.
[php]dim threadsolved as boolean 'no need for = false
if threadsolved then 'if sentence already returns a boolean so you are basically doing if true = true?
markthreadsolved
else
msgbox("leave the title alone") '!!!!!
end if
[/php]