I am making a program, and would like to have something like this in a BUTTON:

Code:
Game(Action)
in a module i have
Code:
Function Game(Action As String) As Boolean
Select Case Action
    Case "Activate"
    Case "DeActivate"
        Case Else
End Select
End Function
stuff like that

*BUT
when i use this,
the code in the button gets a SPACE between
Game and (Action)

Sooo.. i've tryed many things, and it doesn't work, OR it just keeps adding a space



I want to use this method, because its just simple and if i have to change something, then i just change it in the module and not fool around with ALL The forms etc..

Thanks..