Is something along the lines of this available?
For this example, I want to be able to send the name of the form into a function, so I can modify things on it.
In the end, I would like to re-use the function and send in various forms.
If anyone can assist, it would be greatly appreciated.
For this example, I want to be able to send the name of the form into a function, so I can modify things on it.
In the end, I would like to re-use the function and send in various forms.
If anyone can assist, it would be greatly appreciated.
Code:
changeColour("Form_frmMainMenu")
Code:
Private Function changeColour(dir As String)
dir.btnUndo.ForeColor = 255
End Function