


The form was designed using the design view of VS, but I'm not sure why the components don't appear as variables, just as events. And this is the best I have, other options just show me the base form without any sign of the components I've tried taking of the "InitializeConponent" command on the New subroutine, taking off the same sub routine, The idea is to enter the users names and a color for each one and then return all that info to the "parent" application as a string (The Add-in). Name_field.Text = "" End Sub Private Sub AddUserForm_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Users += user_name + "," + user_color + " "

Dim user_color As String Dim user_name As String Dim users As String = "" Public Sub New()Įnd Sub Private Sub name_field_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles name_field.TextChangedĮnd Sub Private Sub color_button_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles color_button.ClickĮnd Sub Private Sub exit_button_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles exit_button.ClickĮnd Sub Private Sub ok_button_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ok_button.Click
