Happy Friday, y'all!
I am creating a function and want to have IntelliSense pop down the list of valid options for a certain parameter in the same way that the MsgBox function behaves when you are typing your argument for which buttons you wish to include (such as MsgBoxStyle.OkC ancel). I have done my best to search the internet but haven't found a thing which comes close to what I'm seeking. My monkeying around hasn't produced a satisfactory solution, yet, either.
A related additional thing, which I can live without but that would be nice to have, is the description of the current parameter, which appears below the function description as shown highlighted below
MsgBox (Prompt As Object, [Buttons as Microsoft.Visua l Basic.MsgBoxSty le = MsgBoxStyle .DefaultButton1], [Title as Object = Nothing]) As Microsoft.Visua lBasic.MsgBoxRe sult
Buttons:
Optional. Numeric expression that is the sum of values specifying the number and type of buttons to display, the icon style to user, the identity of the default button, and the modality of the message box. If you omit Buttons, the default is zero.
This is my first post. I'm relatively new to VB .Net. I appreciate your assistance. :)
I am creating a function and want to have IntelliSense pop down the list of valid options for a certain parameter in the same way that the MsgBox function behaves when you are typing your argument for which buttons you wish to include (such as MsgBoxStyle.OkC ancel). I have done my best to search the internet but haven't found a thing which comes close to what I'm seeking. My monkeying around hasn't produced a satisfactory solution, yet, either.
A related additional thing, which I can live without but that would be nice to have, is the description of the current parameter, which appears below the function description as shown highlighted below
MsgBox (Prompt As Object, [Buttons as Microsoft.Visua l Basic.MsgBoxSty le = MsgBoxStyle .DefaultButton1], [Title as Object = Nothing]) As Microsoft.Visua lBasic.MsgBoxRe sult
Buttons:
Optional. Numeric expression that is the sum of values specifying the number and type of buttons to display, the icon style to user, the identity of the default button, and the modality of the message box. If you omit Buttons, the default is zero.
This is my first post. I'm relatively new to VB .Net. I appreciate your assistance. :)
Comment