I wish to use this statement:
Code:
Dim fnt As New Font(fntfam, fntSize, FontStyle.Bold, GraphicsUnit.Point)
However instead of using Fontstyle.bold I'd like to use a variable in its place so it can be italic or regular etc...

I want to do this:
Code:
Dim fntStyle As String = "fontstyle." & admHash("fontstyle")
where admHash("fontstyle") contains either bold. italic or regular but I get an error

I guess I can use a select case stmt if there is no alternative