Obviously the above is invalid code, but i am looking for a way to re-use a lot of common code calls across multiple forms that will have different display controls without having to bloat lines for simple return output!macro SayMessageTo MyMessageBox String
${NSD_SetText} $MyMessageBox "${String}"
!macroend
So following my bad example would be something like
In order to get "Hello World" set to $message1 controlFunction Message
!insertmacro SayMessageTo $Message1 "Hello World"
FunctionEnd
Is something like this possible?
Once again i think there would be a simple answer, but thanks for your help and patience