Telerik Forums
UI for WinForms Forum
2 answers
688 views
Since the Q3 2012 release we have identified a common scenario when Telerik Visual Studio extensions crash which leads to various problems when using any Telerik project template or wizard. The crash happens when you have multiple Telerik Visual Studio extensions with different versions (e.g. Q2 2012 SP2 and Q3 2012).

To resolve the issue you need to ensure that all Telerik Visual Studio extensions installed have the same version. If you are using Visual Studio 2010/2012 the easiest way is to upgrade all Telerik Visual Studio extensions to the latest version (which is the same) through the Visual Studio Extension Manager.



For Visual Studio 2008 you need to upgrade all Telerik products with Visual Studio extensions to the same version using the Telerik Trial Web Installer or the Telerik Control Panel.

We are currently resolving the issue on our side so that no crashes happen in future releases. Please excuse the inconvenience caused.

Kind regards,
Petar Raykov
The Telerik team


Update:
As some customers reported issues resulting in being unable to perform the above procedure or it not helping in all cases we created a very simple tool for cleaning all Telerik VS Extensions older than our latest version.

You can find the patch attached to this post. Make sure you do not have any running Visual Studio instances when you run the tool.

Note: Running the patch will resolve all version-conflict-related issues (including Visual Studio crashes outlined in this post), but will leave you without VSExtensions in case you have not installed our latest version. The easiest way to get those back is just getting the extensions once more through the Visual Studio Online Gallery.
Stefan
Telerik team
 answered on 22 Oct 2012
5 answers
584 views
Dear Telerik-team,

we are developing a research software with your Telerik for WinForms product.

For some days my colleague and I do get this irritating error. VS doesn't let us change anything in our UI anymore, we can add or remove things in the design view, but VS doesn't generate the code for the UI-elements in the corresponding blabla.Designer.cs. Whenever we try to build our solution we do get this - kind of pre-compile -  message boxes with "object reference not set to an instance of an object", but without any further error information. The message box appears several times, before anything is written into the console. No error is reported there, the solution builds, the UI pops up, but all changes made are not visible. Not to mention that there is no code inside the blabla.Designer.cs for the added UI-elements (which are still visible in the design view).

We re-installed Telerik for WinForms and even VS, but nothing helped. Sadly I can't say any more, when the error appeared first, but I've read posts in your forums describing errors similar to mine. It seems that it has to do with the localization we do via resx.files. We also use several Telerik-UI-elements like the TabStrip, ToolWindows, Grid, Dock and so on. I reduced the solution so that it only contains one project and also removed many functionality from that project, but the error still occurs.

Do you have any common hints to fix a problem like that? Is this a known localization problem?

Thank you in advance, if needed I can also send you the reduced solution.

Best regards!
Fabian Schick
RAG
Top achievements
Rank 1
 answered on 22 Oct 2012
1 answer
110 views
This code works but user does not move to that new tab.  After the tab is added it has to be clicked on to view?  What am I doing wrong?

private void Form1_Load(object sender, EventArgs e)
{
    this.IsMdiContainer = true;
    this.radDock1.AutoDetectMdiChildren = true;
}

private void radMenuItem1_Click(object sender, EventArgs e)
{
    Form childForm = new Form();
    childForm.Text = "MDI Child " + DateTime.Now.ToShortTimeString();
    childForm.MdiParent = this;
    childForm.Show();
}
Stefan
Telerik team
 answered on 22 Oct 2012
0 answers
51 views
Basically I have a parent/child layout,and I just need a filter row on the child, but I cannot seem to figure it out!

Here is what it looks like now:(it only shows the filter for my parent row)





My code that bind the parent/child:

 private void RecordstoDatGrid(ref RadGridView ParentGrid, DataSet DS)
        {
            foreach (DataTable DT in DS.Tables)
            {
                if (DT.TableName != "Templates")
                {
                    GridViewTemplate tmpTemplate = new GridViewTemplate();
                    
                    tmpTemplate.DataSource = DS;
                    tmpTemplate.DataMember = DT.TableName;
                    ParentGrid.Templates.Add(tmpTemplate);
                    GridViewRelation tmpRelation = new GridViewRelation(ParentGrid.MasterTemplate);
                    ParentGrid.MasterTemplate.EnableFiltering = true;
                    ParentGrid.MasterTemplate.EnableGrouping = true;
                    ParentGrid.MasterTemplate.ShowFilteringRow = true;
                    tmpRelation.ParentTemplate = ParentGrid.MasterTemplate;
                    ParentGrid.MasterTemplate.ShowChildViewCaptions = false;
                    tmpRelation.ChildTemplate = tmpTemplate;
                    tmpRelation.RelationName = string.Format("ParentChild_{0}", DT.TableName);
                    tmpRelation.ParentColumnNames.Add("TemplateID");
                    tmpRelation.ChildColumnNames.Add("TemplateID");                   
                    
                    tmpTemplate.Columns["TemplateID"].IsVisible = false;
                    tmpTemplate.AllowColumnChooser = true;
                    tmpTemplate.AllowColumnReorder = true;
                    tmpTemplate.AllowColumnResize = true;
                    tmpTemplate.AllowDragToGroup = true;
                    tmpTemplate.AllowRowReorder = true;
                    tmpTemplate.AllowRowResize = true;

                    tmpTemplate.ShowHeaderCellButtons = true;
                    tmpTemplate.EnableGrouping = true;
                    tmpTemplate.BestFitColumns();
                    tmpTemplate.Caption = DT.TableName;
                    tmpTemplate.ShowChildViewCaptions = false;
                    ParentGrid.ChildRows[0].IsExpanded = true;
                    ParentGrid.TableElement.ShowSelfReferenceLines = true;
                    tmpTemplate.ShowFilteringRow = true;
                    ParentGrid.Relations.Add(tmpRelation);
                    //ParentGrid.Templates[0].HierarchyDataProvider = new GridViewEventDataProvider(ParentGrid.Templates[0]);
                }
            }
        }


Any help would be appreciated!


Never mind everyone, found this nugget in the demo:

 private void SetupFiltering(GridViewTemplate template, bool enableFiltering)
        {
            template.EnableFiltering = enableFiltering;

            for (int i = 0; i < template.Templates.Count; i++)
            {
                SetupFiltering(template.Templates[i], enableFiltering);
            }
        }
Trey
Top achievements
Rank 2
 asked on 22 Oct 2012
1 answer
110 views
Hi,

Is that any way can we use a control in Telerik for Auto Sizing the Form. For instance, I created a Form with Calender and Text Boxes, etc... But problem is that, Sizing is not chaning at all if I run my application on different size of Monitors. 

We have some nice feature in Component One, called 'Sizer' it will adjust the Form and control automatically for any size of monitors.

Do you have any kind of those control I can use in Telerik Win Forms?


Thanks.




Jack
Telerik team
 answered on 22 Oct 2012
1 answer
456 views
Is it possible to hide the pagview pages individual tabs when switched to strip view?

I have a ribbon bar with matching Tab names and as you move through the ribbon tabs it selects the pageview it requires. This looks good in Backstage view but when I move it strip it looks visually confusing.

Stefan
Telerik team
 answered on 22 Oct 2012
1 answer
140 views
Hi 

my customer get me VS project and use telerik version but i don't know the number of this Controls 
is there a way in app.config or Sitting.config to know the version of Controls 
he use a TapItem
Stefan
Telerik team
 answered on 22 Oct 2012
1 answer
473 views
       private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMemberMain));
            System.Drawing.StringFormat stringFormat2 = new System.Drawing.StringFormat();
            this.mnuMain = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.messagesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.managerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.issueSummaryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.logAndIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.myAccessHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cmdGalaxyView = new System.Windows.Forms.Button();
            this.txtAddress3 = new System.Windows.Forms.TextBox();
            this.txtHomePhone = new System.Windows.Forms.TextBox();
            this.label19 = new System.Windows.Forms.Label();
            this.Label8 = new System.Windows.Forms.Label();
            this.txtStatus = new System.Windows.Forms.TextBox();
            this.label16 = new System.Windows.Forms.Label();
            this.txtType = new System.Windows.Forms.TextBox();
            this.label15 = new System.Windows.Forms.Label();
            this.txtCountyCode = new System.Windows.Forms.TextBox();
            this.txtCountyName = new System.Windows.Forms.TextBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.txtCellPhone = new System.Windows.Forms.TextBox();
            this.label13 = new System.Windows.Forms.Label();
            this.txtWorkPhone = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.cmdMemberView = new System.Windows.Forms.Button();
            this.cmdMemberSearch = new System.Windows.Forms.Button();
            this.label4 = new System.Windows.Forms.Label();
            this.cmdMemberEdit = new System.Windows.Forms.Button();
            this.cmdMemberAdd = new System.Windows.Forms.Button();
            this.txtCISNumber = new System.Windows.Forms.TextBox();
            this.txtBSUNumber = new System.Windows.Forms.TextBox();
            this.txtZipCode = new System.Windows.Forms.TextBox();
            this.Label9 = new System.Windows.Forms.Label();
            this.txtState = new System.Windows.Forms.TextBox();
            this.txtAddress2 = new System.Windows.Forms.TextBox();
            this.txtCity = new System.Windows.Forms.TextBox();
            this.txtAddress1 = new System.Windows.Forms.TextBox();
            this.txtDateOfBirth = new System.Windows.Forms.TextBox();
            this.Label7 = new System.Windows.Forms.Label();
            this.Label5 = new System.Windows.Forms.Label();
            this.Label6 = new System.Windows.Forms.Label();
            this.txtSSN = new System.Windows.Forms.TextBox();
            this.Label3 = new System.Windows.Forms.Label();
            this.txtMemberName = new System.Windows.Forms.TextBox();
            this.Label2 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.txtDivision = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.pnlMemberStuff = new System.Windows.Forms.Panel();
            this.label27 = new System.Windows.Forms.Label();
            this.txtCrisisStatus = new System.Windows.Forms.TextBox();
            this.label26 = new System.Windows.Forms.Label();
            this.label25 = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.txtEIStatus = new System.Windows.Forms.TextBox();
            this.txtCYAStatus = new System.Windows.Forms.TextBox();
            this.txtMRStatus = new System.Windows.Forms.TextBox();
            this.txtPOMSlastchanged = new System.Windows.Forms.TextBox();
            this.lblPOMS = new System.Windows.Forms.Label();
            this.label22 = new System.Windows.Forms.Label();
            this.txtEIXnum = new System.Windows.Forms.TextBox();
            this.label20 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.txtMRXnum = new System.Windows.Forms.TextBox();
            this.txtMHXnum = new System.Windows.Forms.TextBox();
            this.label17 = new System.Windows.Forms.Label();
            this.label18 = new System.Windows.Forms.Label();
            this.txtMCInum = new System.Windows.Forms.TextBox();
            this.txtMAIDnum = new System.Windows.Forms.TextBox();
            this.chkAssumedDOB = new TAICheckBox.TAICheckBox();
            this.picLogo = new System.Windows.Forms.PictureBox();
            this.pnlGrids = new System.Windows.Forms.Panel();
            this.cmdRelationship = new System.Windows.Forms.Button();
            this.cmdFamily = new System.Windows.Forms.Button();
            this.cmdClinicalNotesFilter = new System.Windows.Forms.Button();
            this.cmdDocumentFilter = new System.Windows.Forms.Button();
            this.cmdViewHistory = new System.Windows.Forms.Button();
            this.cmdGoToMember = new System.Windows.Forms.Button();
            this.cmdCopy = new System.Windows.Forms.Button();
            this.cmdReverse = new System.Windows.Forms.Button();
            this.cmdPrint = new System.Windows.Forms.Button();
            this.cmdCloseItem = new System.Windows.Forms.Button();
            this.cmdView = new System.Windows.Forms.Button();
            this.cmdDelete = new System.Windows.Forms.Button();
            this.cmdEdit = new System.Windows.Forms.Button();
            this.cmdAdd = new System.Windows.Forms.Button();
            this.taigMain = new TAIGridControl2.TAIGridControl();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.lblCNSpecial = new System.Windows.Forms.Label();
            this.lblCrisisAlert = new System.Windows.Forms.Label();
            this.radPanelBar1 = new Telerik.WinControls.UI.RadPageView();
            this.pnlMHMREI = new Telerik.WinControls.UI.RadPageViewPage();
            this.btnCCRPOMS = new System.Windows.Forms.Button();
            this.cmdIntake = new System.Windows.Forms.Button();
            this.btnMedications = new System.Windows.Forms.Button();
            this.btnLiability = new System.Windows.Forms.Button();
            this.btnInfoRef = new System.Windows.Forms.Button();
            this.cmdInsurance = new System.Windows.Forms.Button();
            this.cmdFamilyGroup = new System.Windows.Forms.Button();
            this.cmdHospitalizations = new System.Windows.Forms.Button();
            this.btnDocuments = new System.Windows.Forms.Button();
            this.cmdEncounterLogging = new System.Windows.Forms.Button();
            this.btnClinicalNotes = new System.Windows.Forms.Button();
            this.cmdDiagnosis = new System.Windows.Forms.Button();
            this.cmdClaims = new System.Windows.Forms.Button();
            this.cmdAddress = new System.Windows.Forms.Button();
            this.cmdAssociations = new System.Windows.Forms.Button();
            this.cmdAlias = new System.Windows.Forms.Button();
            this.cmdAuth = new System.Windows.Forms.Button();
            this.btnClose = new System.Windows.Forms.Button();
            this.pnlGroup1 = new Telerik.WinControls.UI.RadPageViewPage();
            this.btnHistory = new System.Windows.Forms.Button();
            this.btnRemovals = new System.Windows.Forms.Button();
            this.cmdProviders = new System.Windows.Forms.Button();
            this.btnLiabilities1 = new System.Windows.Forms.Button();
            this.btnInsurance = new System.Windows.Forms.Button();
            this.btnPPC = new System.Windows.Forms.Button();
            this.btnPhysicalHealth = new System.Windows.Forms.Button();
            this.cmdMedications = new System.Windows.Forms.Button();
            this.btnHospitalizations = new System.Windows.Forms.Button();
            this.btnFSPReview = new System.Windows.Forms.Button();
            this.btnFamilyServicePlan = new System.Windows.Forms.Button();
            this.btnFamilyGroup = new System.Windows.Forms.Button();
            this.cmdDiagnosis1 = new System.Windows.Forms.Button();
            this.btnCourt = new System.Windows.Forms.Button();
            this.cmdDocuments = new System.Windows.Forms.Button();
            this.btnClaims = new System.Windows.Forms.Button();
            this.btnCaseNotes = new System.Windows.Forms.Button();
            this.btnAuths = new System.Windows.Forms.Button();
            this.btnAssociations = new System.Windows.Forms.Button();
            this.btnAlias = new System.Windows.Forms.Button();
            this.btnAdoption = new System.Windows.Forms.Button();
            this.btnAddress = new System.Windows.Forms.Button();
            this.btnCloseCY = new System.Windows.Forms.Button();
            this.pnlGroup2 = new Telerik.WinControls.UI.RadPageViewPage();
            this.btnResource = new System.Windows.Forms.Button();
            this.cmdInfoRef = new System.Windows.Forms.Button();
            this.btnSWAN = new System.Windows.Forms.Button();
            this.btnSupervisorNotes = new System.Windows.Forms.Button();
            this.btnSafetyAssessment = new System.Windows.Forms.Button();
            this.btnRiskAssessment = new System.Windows.Forms.Button();
            this.mnuMain.SuspendLayout();
            this.pnlMemberStuff.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
            this.pnlGrids.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPanelBar1)).BeginInit();
            this.radPanelBar1.SuspendLayout();
            this.pnlMHMREI.SuspendLayout();
            this.pnlGroup1.SuspendLayout();
            this.pnlGroup2.SuspendLayout();
            this.SuspendLayout();
            //
            // mnuMain
            //
            this.mnuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.messagesToolStripMenuItem,
            this.helpToolStripMenuItem});
            this.mnuMain.Location = new System.Drawing.Point(0, 0);
            this.mnuMain.Name = "mnuMain";
            this.mnuMain.Size = new System.Drawing.Size(1006, 24);
            this.mnuMain.TabIndex = 2;
            this.mnuMain.Text = "menuStrip1";
            //
            // fileToolStripMenuItem
            //
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.exitToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.fileToolStripMenuItem.Text = "File";
            //
            // exitToolStripMenuItem
            //
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
            this.exitToolStripMenuItem.Text = "Exit";
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
            //
            // messagesToolStripMenuItem
            //
            this.messagesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.managerToolStripMenuItem1});
            this.messagesToolStripMenuItem.Name = "messagesToolStripMenuItem";
            this.messagesToolStripMenuItem.Size = new System.Drawing.Size(70, 20);
            this.messagesToolStripMenuItem.Text = "Messages";
            //
            // managerToolStripMenuItem1
            //
            this.managerToolStripMenuItem1.Name = "managerToolStripMenuItem1";
            this.managerToolStripMenuItem1.Size = new System.Drawing.Size(121, 22);
            this.managerToolStripMenuItem1.Text = "Manager";
            this.managerToolStripMenuItem1.Click += new System.EventHandler(this.managerToolStripMenuItem1_Click);
            //
            // helpToolStripMenuItem
            //
            this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.aboutToolStripMenuItem,
            this.issueSummaryToolStripMenuItem,
            this.logAndIssueToolStripMenuItem,
            this.myAccessHistoryToolStripMenuItem});
            this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
            this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
            this.helpToolStripMenuItem.Text = "Help";
            //
            // aboutToolStripMenuItem
            //
            this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
            this.aboutToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
            this.aboutToolStripMenuItem.Text = "About";
            this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
            //
            // issueSummaryToolStripMenuItem
            //
            this.issueSummaryToolStripMenuItem.Name = "issueSummaryToolStripMenuItem";
            this.issueSummaryToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
            this.issueSummaryToolStripMenuItem.Text = "Comment Summary";
            this.issueSummaryToolStripMenuItem.Click += new System.EventHandler(this.issueSummaryToolStripMenuItem_Click);
            //
            // logAndIssueToolStripMenuItem
            //
            this.logAndIssueToolStripMenuItem.Name = "logAndIssueToolStripMenuItem";
            this.logAndIssueToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
            this.logAndIssueToolStripMenuItem.Text = "Log a Comment";
            this.logAndIssueToolStripMenuItem.Click += new System.EventHandler(this.logAndIssueToolStripMenuItem_Click);
            //
            // myAccessHistoryToolStripMenuItem
            //
            this.myAccessHistoryToolStripMenuItem.Name = "myAccessHistoryToolStripMenuItem";
            this.myAccessHistoryToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
            this.myAccessHistoryToolStripMenuItem.Text = "My Access History";
            this.myAccessHistoryToolStripMenuItem.Click += new System.EventHandler(this.myAccessHistoryToolStripMenuItem_Click);
            //
            // cmdGalaxyView
            //
            this.cmdGalaxyView.BackColor = System.Drawing.SystemColors.Control;
            this.cmdGalaxyView.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdGalaxyView.Location = new System.Drawing.Point(402, 4);
            this.cmdGalaxyView.Name = "cmdGalaxyView";
            this.cmdGalaxyView.Size = new System.Drawing.Size(88, 24);
            this.cmdGalaxyView.TabIndex = 4;
            this.cmdGalaxyView.Text = "&Galaxy View";
            this.cmdGalaxyView.UseVisualStyleBackColor = false;
            this.cmdGalaxyView.Click += new System.EventHandler(this.cmdGalaxyView_Click);
            //
            // txtAddress3
            //
            this.txtAddress3.BackColor = System.Drawing.Color.Lavender;
            this.txtAddress3.Location = new System.Drawing.Point(84, 107);
            this.txtAddress3.Name = "txtAddress3";
            this.txtAddress3.ReadOnly = true;
            this.txtAddress3.Size = new System.Drawing.Size(256, 20);
            this.txtAddress3.TabIndex = 1053;
            this.txtAddress3.TabStop = false;
            //
            // txtHomePhone
            //
            this.txtHomePhone.BackColor = System.Drawing.Color.Lavender;
            this.txtHomePhone.Location = new System.Drawing.Point(422, 106);
            this.txtHomePhone.Name = "txtHomePhone";
            this.txtHomePhone.ReadOnly = true;
            this.txtHomePhone.Size = new System.Drawing.Size(80, 20);
            this.txtHomePhone.TabIndex = 1064;
            this.txtHomePhone.TabStop = false;
            //
            // label19
            //
            this.label19.Location = new System.Drawing.Point(5, 107);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(48, 20);
            this.label19.TabIndex = 1087;
            this.label19.Text = "Address:";
            this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // Label8
            //
            this.Label8.Location = new System.Drawing.Point(350, 106);
            this.Label8.Name = "Label8";
            this.Label8.Size = new System.Drawing.Size(74, 20);
            this.Label8.TabIndex = 1078;
            this.Label8.Text = "Home Phone:";
            this.Label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtStatus
            //
            this.txtStatus.BackColor = System.Drawing.Color.Lavender;
            this.txtStatus.Location = new System.Drawing.Point(422, 89);
            this.txtStatus.Multiline = true;
            this.txtStatus.Name = "txtStatus";
            this.txtStatus.ReadOnly = true;
            this.txtStatus.Size = new System.Drawing.Size(19, 15);
            this.txtStatus.TabIndex = 1065;
            this.txtStatus.TabStop = false;
            this.txtStatus.Tag = "";
            this.txtStatus.MouseHover += new System.EventHandler(this.txtStatus_MouseHover);
            //
            // label16
            //
            this.label16.Location = new System.Drawing.Point(350, 84);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(40, 20);
            this.label16.TabIndex = 1086;
            this.label16.Text = "Status:";
            this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtType
            //
            this.txtType.BackColor = System.Drawing.Color.Lavender;
            this.txtType.Location = new System.Drawing.Point(422, 60);
            this.txtType.Name = "txtType";
            this.txtType.ReadOnly = true;
            this.txtType.Size = new System.Drawing.Size(80, 20);
            this.txtType.TabIndex = 1063;
            this.txtType.TabStop = false;
            //
            // label15
            //
            this.label15.Location = new System.Drawing.Point(350, 60);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(40, 20);
            this.label15.TabIndex = 1085;
            this.label15.Text = "Type:";
            this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtCountyCode
            //
            this.txtCountyCode.BackColor = System.Drawing.Color.Lavender;
            this.txtCountyCode.Location = new System.Drawing.Point(84, 155);
            this.txtCountyCode.MaxLength = 30;
            this.txtCountyCode.Name = "txtCountyCode";
            this.txtCountyCode.ReadOnly = true;
            this.txtCountyCode.Size = new System.Drawing.Size(56, 20);
            this.txtCountyCode.TabIndex = 1057;
            this.txtCountyCode.TabStop = false;
            //
            // txtCountyName
            //
            this.txtCountyName.BackColor = System.Drawing.Color.Lavender;
            this.txtCountyName.Location = new System.Drawing.Point(220, 155);
            this.txtCountyName.MaxLength = 30;
            this.txtCountyName.Name = "txtCountyName";
            this.txtCountyName.ReadOnly = true;
            this.txtCountyName.Size = new System.Drawing.Size(120, 20);
            this.txtCountyName.TabIndex = 1058;
            this.txtCountyName.TabStop = false;
            //
            // label14
            //
            this.label14.Location = new System.Drawing.Point(508, 60);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(37, 20);
            this.label14.TabIndex = 1084;
            this.label14.Text = "BSU:";
            this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label11
            //
            this.label11.Location = new System.Drawing.Point(140, 155);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(74, 20);
            this.label11.TabIndex = 1083;
            this.label11.Text = "County Name:";
            this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtCellPhone
            //
            this.txtCellPhone.BackColor = System.Drawing.Color.Lavender;
            this.txtCellPhone.Location = new System.Drawing.Point(422, 152);
            this.txtCellPhone.Name = "txtCellPhone";
            this.txtCellPhone.ReadOnly = true;
            this.txtCellPhone.Size = new System.Drawing.Size(80, 20);
            this.txtCellPhone.TabIndex = 1068;
            this.txtCellPhone.TabStop = false;
            //
            // label13
            //
            this.label13.Location = new System.Drawing.Point(5, 155);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(74, 20);
            this.label13.TabIndex = 1082;
            this.label13.Text = "County Code:";
            this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtWorkPhone
            //
            this.txtWorkPhone.BackColor = System.Drawing.Color.Lavender;
            this.txtWorkPhone.Location = new System.Drawing.Point(422, 129);
            this.txtWorkPhone.Name = "txtWorkPhone";
            this.txtWorkPhone.ReadOnly = true;
            this.txtWorkPhone.Size = new System.Drawing.Size(80, 20);
            this.txtWorkPhone.TabIndex = 1066;
            this.txtWorkPhone.TabStop = false;
            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(350, 152);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(74, 20);
            this.label10.TabIndex = 1081;
            this.label10.Text = "Cell Phone:";
            this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // cmdMemberView
            //
            this.cmdMemberView.BackColor = System.Drawing.SystemColors.Control;
            this.cmdMemberView.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdMemberView.Location = new System.Drawing.Point(303, 4);
            this.cmdMemberView.Name = "cmdMemberView";
            this.cmdMemberView.Size = new System.Drawing.Size(88, 24);
            this.cmdMemberView.TabIndex = 3;
            this.cmdMemberView.Text = "&View Member";
            this.cmdMemberView.UseVisualStyleBackColor = false;
            this.cmdMemberView.Click += new System.EventHandler(this.cmdMemberView_Click);
            //
            // cmdMemberSearch
            //
            this.cmdMemberSearch.BackColor = System.Drawing.SystemColors.Control;
            this.cmdMemberSearch.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdMemberSearch.Location = new System.Drawing.Point(4, 4);
            this.cmdMemberSearch.Name = "cmdMemberSearch";
            this.cmdMemberSearch.Size = new System.Drawing.Size(88, 24);
            this.cmdMemberSearch.TabIndex = 0;
            this.cmdMemberSearch.Text = "&Search Member";
            this.cmdMemberSearch.UseVisualStyleBackColor = false;
            this.cmdMemberSearch.Click += new System.EventHandler(this.cmdMemberSearch_Click);
            //
            // label4
            //
            this.label4.Location = new System.Drawing.Point(350, 129);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(74, 20);
            this.label4.TabIndex = 1080;
            this.label4.Text = "Work Phone:";
            this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // cmdMemberEdit
            //
            this.cmdMemberEdit.BackColor = System.Drawing.SystemColors.Control;
            this.cmdMemberEdit.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdMemberEdit.Location = new System.Drawing.Point(201, 4);
            this.cmdMemberEdit.Name = "cmdMemberEdit";
            this.cmdMemberEdit.Size = new System.Drawing.Size(88, 24);
            this.cmdMemberEdit.TabIndex = 2;
            this.cmdMemberEdit.Text = "&Edit Member";
            this.cmdMemberEdit.UseVisualStyleBackColor = false;
            this.cmdMemberEdit.Click += new System.EventHandler(this.cmdMemberEdit_Click);
            //
            // cmdMemberAdd
            //
            this.cmdMemberAdd.BackColor = System.Drawing.SystemColors.Control;
            this.cmdMemberAdd.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmdMemberAdd.Location = new System.Drawing.Point(101, 4);
            this.cmdMemberAdd.Name = "cmdMemberAdd";
            this.cmdMemberAdd.Size = new System.Drawing.Size(88, 24);
            this.cmdMemberAdd.TabIndex = 1;
            this.cmdMemberAdd.Text = "&Add Member";
            this.cmdMemberAdd.UseVisualStyleBackColor = false;
            this.cmdMemberAdd.Click += new System.EventHandler(this.cmdMemberAdd_Click);
            //
            // txtCISNumber
            //
            this.txtCISNumber.BackColor = System.Drawing.Color.Lavender;
            this.txtCISNumber.Location = new System.Drawing.Point(556, 37);
            this.txtCISNumber.Name = "txtCISNumber";
            this.txtCISNumber.ReadOnly = true;
            this.txtCISNumber.Size = new System.Drawing.Size(72, 20);
            this.txtCISNumber.TabIndex = 1060;
            this.txtCISNumber.TabStop = false;
            //
            // txtBSUNumber
            //
            this.txtBSUNumber.BackColor = System.Drawing.Color.Lavender;
            this.txtBSUNumber.Location = new System.Drawing.Point(556, 60);
            this.txtBSUNumber.Name = "txtBSUNumber";
            this.txtBSUNumber.ReadOnly = true;
            this.txtBSUNumber.Size = new System.Drawing.Size(72, 20);
            this.txtBSUNumber.TabIndex = 1067;
            this.txtBSUNumber.TabStop = false;
            //
            // txtZipCode
            //
            this.txtZipCode.BackColor = System.Drawing.Color.Lavender;
            this.txtZipCode.Location = new System.Drawing.Point(260, 131);
            this.txtZipCode.Name = "txtZipCode";
            this.txtZipCode.ReadOnly = true;
            this.txtZipCode.Size = new System.Drawing.Size(80, 20);
            this.txtZipCode.TabIndex = 1056;
            this.txtZipCode.TabStop = false;
            //
            // Label9
            //
            this.Label9.Location = new System.Drawing.Point(508, 36);
            this.Label9.Name = "Label9";
            this.Label9.Size = new System.Drawing.Size(37, 20);
            this.Label9.TabIndex = 1079;
            this.Label9.Text = "CIS:";
            this.Label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtState
            //
            this.txtState.BackColor = System.Drawing.Color.Lavender;
            this.txtState.Location = new System.Drawing.Point(236, 131);
            this.txtState.Name = "txtState";
            this.txtState.ReadOnly = true;
            this.txtState.Size = new System.Drawing.Size(24, 20);
            this.txtState.TabIndex = 1055;
            this.txtState.TabStop = false;
            //
            // txtAddress2
            //
            this.txtAddress2.BackColor = System.Drawing.Color.Lavender;
            this.txtAddress2.Location = new System.Drawing.Point(84, 83);
            this.txtAddress2.Name = "txtAddress2";
            this.txtAddress2.ReadOnly = true;
            this.txtAddress2.Size = new System.Drawing.Size(256, 20);
            this.txtAddress2.TabIndex = 1052;
            this.txtAddress2.TabStop = false;
            //
            // txtCity
            //
            this.txtCity.BackColor = System.Drawing.Color.Lavender;
            this.txtCity.Location = new System.Drawing.Point(84, 131);
            this.txtCity.Name = "txtCity";
            this.txtCity.ReadOnly = true;
            this.txtCity.Size = new System.Drawing.Size(152, 20);
            this.txtCity.TabIndex = 1054;
            this.txtCity.TabStop = false;
            //
            // txtAddress1
            //
            this.txtAddress1.BackColor = System.Drawing.Color.Lavender;
            this.txtAddress1.Location = new System.Drawing.Point(84, 59);
            this.txtAddress1.Name = "txtAddress1";
            this.txtAddress1.ReadOnly = true;
            this.txtAddress1.Size = new System.Drawing.Size(256, 20);
            this.txtAddress1.TabIndex = 1051;
            this.txtAddress1.TabStop = false;
            //
            // txtDateOfBirth
            //
            this.txtDateOfBirth.BackColor = System.Drawing.Color.Lavender;
            this.txtDateOfBirth.Location = new System.Drawing.Point(84, 178);
            this.txtDateOfBirth.Name = "txtDateOfBirth";
            this.txtDateOfBirth.ReadOnly = true;
            this.txtDateOfBirth.Size = new System.Drawing.Size(68, 20);
            this.txtDateOfBirth.TabIndex = 1059;
            this.txtDateOfBirth.TabStop = false;
            //
            // Label7
            //
            this.Label7.Location = new System.Drawing.Point(5, 131);
            this.Label7.Name = "Label7";
            this.Label7.Size = new System.Drawing.Size(77, 20);
            this.Label7.TabIndex = 1077;
            this.Label7.Text = "City/State/Zip:";
            this.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // Label5
            //
            this.Label5.Location = new System.Drawing.Point(5, 59);
            this.Label5.Name = "Label5";
            this.Label5.Size = new System.Drawing.Size(48, 20);
            this.Label5.TabIndex = 1075;
            this.Label5.Text = "Address:";
            this.Label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // Label6
            //
            this.Label6.Location = new System.Drawing.Point(5, 83);
            this.Label6.Name = "Label6";
            this.Label6.Size = new System.Drawing.Size(48, 20);
            this.Label6.TabIndex = 1076;
            this.Label6.Text = "Address:";
            this.Label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtSSN
            //
            this.txtSSN.BackColor = System.Drawing.Color.Lavender;
            this.txtSSN.Location = new System.Drawing.Point(422, 37);
            this.txtSSN.Name = "txtSSN";
            this.txtSSN.ReadOnly = true;
            this.txtSSN.Size = new System.Drawing.Size(80, 20);
            this.txtSSN.TabIndex = 1062;
            this.txtSSN.TabStop = false;
            //
            // Label3
            //
            this.Label3.Location = new System.Drawing.Point(5, 181);
            this.Label3.Name = "Label3";
            this.Label3.Size = new System.Drawing.Size(40, 20);
            this.Label3.TabIndex = 1074;
            this.Label3.Text = "DOB:";
            this.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtMemberName
            //
            this.txtMemberName.BackColor = System.Drawing.Color.Lavender;
            this.txtMemberName.Location = new System.Drawing.Point(84, 35);
            this.txtMemberName.Name = "txtMemberName";
            this.txtMemberName.ReadOnly = true;
            this.txtMemberName.Size = new System.Drawing.Size(256, 20);
            this.txtMemberName.TabIndex = 1050;
            this.txtMemberName.TabStop = false;
            //
            // Label2
            //
            this.Label2.Location = new System.Drawing.Point(350, 36);
            this.Label2.Name = "Label2";
            this.Label2.Size = new System.Drawing.Size(40, 20);
            this.Label2.TabIndex = 1073;
            this.Label2.Text = "SSN:";
            this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label12
            //
            this.label12.Location = new System.Drawing.Point(5, 35);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(48, 20);
            this.label12.TabIndex = 1072;
            this.label12.Text = "Name:";
            this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtDivision
            //
            this.txtDivision.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDivision.Location = new System.Drawing.Point(548, 6);
            this.txtDivision.Name = "txtDivision";
            this.txtDivision.ReadOnly = true;
            this.txtDivision.Size = new System.Drawing.Size(80, 20);
            this.txtDivision.TabIndex = 1047;
            this.txtDivision.TabStop = false;
            this.txtDivision.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(494, 6);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(48, 20);
            this.label1.TabIndex = 1044;
            this.label1.Text = "Division:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // pnlMemberStuff
            //
            this.pnlMemberStuff.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.pnlMemberStuff.AutoScroll = true;
            this.pnlMemberStuff.BackColor = System.Drawing.SystemColors.ControlLight;
            this.pnlMemberStuff.Controls.Add(this.label27);
            this.pnlMemberStuff.Controls.Add(this.txtCrisisStatus);
            this.pnlMemberStuff.Controls.Add(this.label26);
            this.pnlMemberStuff.Controls.Add(this.label25);
            this.pnlMemberStuff.Controls.Add(this.label24);
            this.pnlMemberStuff.Controls.Add(this.label23);
            this.pnlMemberStuff.Controls.Add(this.txtEIStatus);
            this.pnlMemberStuff.Controls.Add(this.txtCYAStatus);
            this.pnlMemberStuff.Controls.Add(this.txtMRStatus);
            this.pnlMemberStuff.Controls.Add(this.txtPOMSlastchanged);
            this.pnlMemberStuff.Controls.Add(this.lblPOMS);
            this.pnlMemberStuff.Controls.Add(this.label22);
            this.pnlMemberStuff.Controls.Add(this.txtEIXnum);
            this.pnlMemberStuff.Controls.Add(this.label20);
            this.pnlMemberStuff.Controls.Add(this.label21);
            this.pnlMemberStuff.Controls.Add(this.txtMRXnum);
            this.pnlMemberStuff.Controls.Add(this.txtMHXnum);
            this.pnlMemberStuff.Controls.Add(this.label17);
            this.pnlMemberStuff.Controls.Add(this.label18);
            this.pnlMemberStuff.Controls.Add(this.txtMCInum);
            this.pnlMemberStuff.Controls.Add(this.txtMAIDnum);
            this.pnlMemberStuff.Controls.Add(this.chkAssumedDOB);
            this.pnlMemberStuff.Controls.Add(this.picLogo);
            this.pnlMemberStuff.Controls.Add(this.cmdMemberSearch);
            this.pnlMemberStuff.Controls.Add(this.label1);
            this.pnlMemberStuff.Controls.Add(this.cmdGalaxyView);
            this.pnlMemberStuff.Controls.Add(this.txtDivision);
            this.pnlMemberStuff.Controls.Add(this.txtAddress3);
            this.pnlMemberStuff.Controls.Add(this.label12);
            this.pnlMemberStuff.Controls.Add(this.txtHomePhone);
            this.pnlMemberStuff.Controls.Add(this.Label2);
            this.pnlMemberStuff.Controls.Add(this.label19);
            this.pnlMemberStuff.Controls.Add(this.txtMemberName);
            this.pnlMemberStuff.Controls.Add(this.Label8);
            this.pnlMemberStuff.Controls.Add(this.Label3);
            this.pnlMemberStuff.Controls.Add(this.txtStatus);
            this.pnlMemberStuff.Controls.Add(this.txtSSN);
            this.pnlMemberStuff.Controls.Add(this.label16);
            this.pnlMemberStuff.Controls.Add(this.Label6);
            this.pnlMemberStuff.Controls.Add(this.txtType);
            this.pnlMemberStuff.Controls.Add(this.Label5);
            this.pnlMemberStuff.Controls.Add(this.label15);
            this.pnlMemberStuff.Controls.Add(this.Label7);
            this.pnlMemberStuff.Controls.Add(this.txtDateOfBirth);
            this.pnlMemberStuff.Controls.Add(this.txtCountyCode);
            this.pnlMemberStuff.Controls.Add(this.txtAddress1);
            this.pnlMemberStuff.Controls.Add(this.txtCountyName);
            this.pnlMemberStuff.Controls.Add(this.txtCity);
            this.pnlMemberStuff.Controls.Add(this.label14);
            this.pnlMemberStuff.Controls.Add(this.txtAddress2);
            this.pnlMemberStuff.Controls.Add(this.label11);
            this.pnlMemberStuff.Controls.Add(this.txtState);
            this.pnlMemberStuff.Controls.Add(this.txtCellPhone);
            this.pnlMemberStuff.Controls.Add(this.Label9);
            this.pnlMemberStuff.Controls.Add(this.label13);
            this.pnlMemberStuff.Controls.Add(this.txtZipCode);
            this.pnlMemberStuff.Controls.Add(this.txtWorkPhone);
            this.pnlMemberStuff.Controls.Add(this.txtBSUNumber);
            this.pnlMemberStuff.Controls.Add(this.label10);
            this.pnlMemberStuff.Controls.Add(this.txtCISNumber);
            this.pnlMemberStuff.Controls.Add(this.cmdMemberView);
            this.pnlMemberStuff.Controls.Add(this.cmdMemberAdd);
            this.pnlMemberStuff.Controls.Add(this.cmdMemberEdit);
            this.pnlMemberStuff.Controls.Add(this.label4);
            this.pnlMemberStuff.Location = new System.Drawing.Point(4, 24);
            this.pnlMemberStuff.Name = "pnlMemberStuff";
            this.pnlMemberStuff.Size = new System.Drawing.Size(870, 208);
            this.pnlMemberStuff.TabIndex = 0;
            //
            // label27
            //
            this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label27.Location = new System.Drawing.Point(389, 79);
            this.label27.Name = "label27";
            this.label27.Size = new System.Drawing.Size(32, 10);
            this.label27.TabIndex = 1110;
            this.label27.Text = "CRISIS";
            this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtCrisisStatus
            //
            this.txtCrisisStatus.BackColor = System.Drawing.Color.Lavender;
            this.txtCrisisStatus.Location = new System.Drawing.Point(400, 89);
            this.txtCrisisStatus.Multiline = true;
            this.txtCrisisStatus.Name = "txtCrisisStatus";
            this.txtCrisisStatus.ReadOnly = true;
            this.txtCrisisStatus.Size = new System.Drawing.Size(19, 15);
            this.txtCrisisStatus.TabIndex = 1109;
            this.txtCrisisStatus.TabStop = false;
            this.txtCrisisStatus.Tag = "";
            this.txtCrisisStatus.MouseHover += new System.EventHandler(this.txtStatus_MouseHover);
            //
            // label26
            //
            this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label26.Location = new System.Drawing.Point(485, 79);
            this.label26.Name = "label26";
            this.label26.Size = new System.Drawing.Size(25, 10);
            this.label26.TabIndex = 1108;
            this.label26.Text = "CYA";
            this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label25
            //
            this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label25.Location = new System.Drawing.Point(467, 79);
            this.label25.Name = "label25";
            this.label25.Size = new System.Drawing.Size(18, 10);
            this.label25.TabIndex = 1107;
            this.label25.Text = "EI";
            this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label24
            //
            this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label24.Location = new System.Drawing.Point(443, 79);
            this.label24.Name = "label24";
            this.label24.Size = new System.Drawing.Size(18, 10);
            this.label24.TabIndex = 1106;
            this.label24.Text = "MR";
            this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label23
            //
            this.label23.Font = new System.Drawing.Font("Microsoft Sans Serif", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label23.Location = new System.Drawing.Point(422, 79);
            this.label23.Name = "label23";
            this.label23.Size = new System.Drawing.Size(21, 10);
            this.label23.TabIndex = 1105;
            this.label23.Text = "MH";
            this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtEIStatus
            //
            this.txtEIStatus.BackColor = System.Drawing.Color.Lavender;
            this.txtEIStatus.Location = new System.Drawing.Point(464, 89);
            this.txtEIStatus.Multiline = true;
            this.txtEIStatus.Name = "txtEIStatus";
            this.txtEIStatus.ReadOnly = true;
            this.txtEIStatus.Size = new System.Drawing.Size(19, 15);
            this.txtEIStatus.TabIndex = 1104;
            this.txtEIStatus.TabStop = false;
            this.txtEIStatus.Tag = "";
            this.txtEIStatus.MouseHover += new System.EventHandler(this.txtStatus_MouseHover);
            //
            // txtCYAStatus
            //
            this.txtCYAStatus.BackColor = System.Drawing.Color.Lavender;
            this.txtCYAStatus.Location = new System.Drawing.Point(484, 89);
            this.txtCYAStatus.Multiline = true;
            this.txtCYAStatus.Name = "txtCYAStatus";
            this.txtCYAStatus.ReadOnly = true;
            this.txtCYAStatus.Size = new System.Drawing.Size(19, 15);
            this.txtCYAStatus.TabIndex = 1103;
            this.txtCYAStatus.TabStop = false;
            this.txtCYAStatus.Tag = "";
            this.txtCYAStatus.MouseHover += new System.EventHandler(this.txtStatus_MouseHover);
            //
            // txtMRStatus
            //
            this.txtMRStatus.BackColor = System.Drawing.Color.Lavender;
            this.txtMRStatus.Location = new System.Drawing.Point(443, 89);
            this.txtMRStatus.Multiline = true;
            this.txtMRStatus.Name = "txtMRStatus";
            this.txtMRStatus.ReadOnly = true;
            this.txtMRStatus.Size = new System.Drawing.Size(19, 15);
            this.txtMRStatus.TabIndex = 1102;
            this.txtMRStatus.TabStop = false;
            this.txtMRStatus.Tag = "";
            this.txtMRStatus.MouseHover += new System.EventHandler(this.txtStatus_MouseHover);
            //
            // txtPOMSlastchanged
            //
            this.txtPOMSlastchanged.BackColor = System.Drawing.Color.Lavender;
            this.txtPOMSlastchanged.Location = new System.Drawing.Point(422, 175);
            this.txtPOMSlastchanged.Name = "txtPOMSlastchanged";
            this.txtPOMSlastchanged.ReadOnly = true;
            this.txtPOMSlastchanged.Size = new System.Drawing.Size(80, 20);
            this.txtPOMSlastchanged.TabIndex = 1100;
            this.txtPOMSlastchanged.TabStop = false;
            //
            // lblPOMS
            //
            this.lblPOMS.Location = new System.Drawing.Point(314, 176);
            this.lblPOMS.Name = "lblPOMS";
            this.lblPOMS.Size = new System.Drawing.Size(110, 20);
            this.lblPOMS.TabIndex = 1101;
            this.lblPOMS.Text = "POMS Last Changed:";
            this.lblPOMS.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label22
            //
            this.label22.Location = new System.Drawing.Point(508, 175);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(37, 20);
            this.label22.TabIndex = 1099;
            this.label22.Text = "EIX:";
            this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtEIXnum
            //
            this.txtEIXnum.BackColor = System.Drawing.Color.Lavender;
            this.txtEIXnum.Location = new System.Drawing.Point(556, 175);
            this.txtEIXnum.Name = "txtEIXnum";
            this.txtEIXnum.ReadOnly = true;
            this.txtEIXnum.Size = new System.Drawing.Size(72, 20);
            this.txtEIXnum.TabIndex = 1098;
            this.txtEIXnum.TabStop = false;
            //
            // label20
            //
            this.label20.Location = new System.Drawing.Point(508, 152);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(37, 20);
            this.label20.TabIndex = 1097;
            this.label20.Text = "MRX:";
            this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label21
            //
            this.label21.Location = new System.Drawing.Point(508, 129);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(37, 20);
            this.label21.TabIndex = 1096;
            this.label21.Text = "MHX:";
            this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtMRXnum
            //
            this.txtMRXnum.BackColor = System.Drawing.Color.Lavender;
            this.txtMRXnum.Location = new System.Drawing.Point(556, 152);
            this.txtMRXnum.Name = "txtMRXnum";
            this.txtMRXnum.ReadOnly = true;
            this.txtMRXnum.Size = new System.Drawing.Size(72, 20);
            this.txtMRXnum.TabIndex = 1095;
            this.txtMRXnum.TabStop = false;
            //
            // txtMHXnum
            //
            this.txtMHXnum.BackColor = System.Drawing.Color.Lavender;
            this.txtMHXnum.Location = new System.Drawing.Point(556, 129);
            this.txtMHXnum.Name = "txtMHXnum";
            this.txtMHXnum.ReadOnly = true;
            this.txtMHXnum.Size = new System.Drawing.Size(72, 20);
            this.txtMHXnum.TabIndex = 1094;
            this.txtMHXnum.TabStop = false;
            //
            // label17
            //
            this.label17.Location = new System.Drawing.Point(508, 106);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(37, 20);
            this.label17.TabIndex = 1093;
            this.label17.Text = "MCI:";
            this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // label18
            //
            this.label18.Location = new System.Drawing.Point(508, 83);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(45, 20);
            this.label18.TabIndex = 1092;
            this.label18.Text = "MA ID:";
            this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtMCInum
            //
            this.txtMCInum.BackColor = System.Drawing.Color.Lavender;
            this.txtMCInum.Location = new System.Drawing.Point(556, 106);
            this.txtMCInum.Name = "txtMCInum";
            this.txtMCInum.ReadOnly = true;
            this.txtMCInum.Size = new System.Drawing.Size(72, 20);
            this.txtMCInum.TabIndex = 1091;
            this.txtMCInum.TabStop = false;
            //
            // txtMAIDnum
            //
            this.txtMAIDnum.BackColor = System.Drawing.Color.Lavender;
            this.txtMAIDnum.Location = new System.Drawing.Point(556, 83);
            this.txtMAIDnum.Name = "txtMAIDnum";
            this.txtMAIDnum.ReadOnly = true;
            this.txtMAIDnum.Size = new System.Drawing.Size(72, 20);
            this.txtMAIDnum.TabIndex = 1090;
            this.txtMAIDnum.TabStop = false;
            //
            // chkAssumedDOB
            //
            this.chkAssumedDOB.Label = "Assumed DOB";
            this.chkAssumedDOB.LabelAlignment = TAICheckBox.TAICheckBox.LabelPlacement.PlacementRightAlign;
            this.chkAssumedDOB.LablePlacement = TAICheckBox.TAICheckBox.Placements.PlacementLeft;
            this.chkAssumedDOB.Location = new System.Drawing.Point(180, 178);
            this.chkAssumedDOB.Name = "chkAssumedDOB";
            this.chkAssumedDOB.Size = new System.Drawing.Size(109, 20);
            this.chkAssumedDOB.TabIndex = 1089;
            this.chkAssumedDOB.TabStop = false;
            //
            // picLogo
            //
            this.picLogo.Image = ((System.Drawing.Image)(resources.GetObject("picLogo.Image")));
            this.picLogo.Location = new System.Drawing.Point(652, 8);
            this.picLogo.Name = "picLogo";
            this.picLogo.Size = new System.Drawing.Size(208, 188);
            this.picLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.picLogo.TabIndex = 1088;
            this.picLogo.TabStop = false;
            //
            // pnlGrids
            //
            this.pnlGrids.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.pnlGrids.AutoScroll = true;
            this.pnlGrids.Controls.Add(this.cmdRelationship);
            this.pnlGrids.Controls.Add(this.cmdFamily);
            this.pnlGrids.Controls.Add(this.cmdClinicalNotesFilter);
            this.pnlGrids.Controls.Add(this.cmdDocumentFilter);
            this.pnlGrids.Controls.Add(this.cmdViewHistory);
            this.pnlGrids.Controls.Add(this.cmdGoToMember);
            this.pnlGrids.Controls.Add(this.cmdCopy);
            this.pnlGrids.Controls.Add(this.cmdReverse);
            this.pnlGrids.Controls.Add(this.cmdPrint);
            this.pnlGrids.Controls.Add(this.cmdCloseItem);
            this.pnlGrids.Controls.Add(this.cmdView);
            this.pnlGrids.Controls.Add(this.cmdDelete);
            this.pnlGrids.Controls.Add(this.cmdEdit);
            this.pnlGrids.Controls.Add(this.cmdAdd);
            this.pnlGrids.Controls.Add(this.taigMain);
            this.pnlGrids.Location = new System.Drawing.Point(3, 238);
            this.pnlGrids.Name = "pnlGrids";
            this.pnlGrids.Size = new System.Drawing.Size(871, 470);
            this.pnlGrids.TabIndex = 3;
            //
            // cmdRelationship
            //
            this.cmdRelationship.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdRelationship.BackColor = System.Drawing.SystemColors.Info;
            this.cmdRelationship.Location = new System.Drawing.Point(477, 381);
            this.cmdRelationship.Name = "cmdRelationship";
            this.cmdRelationship.Size = new System.Drawing.Size(86, 24);
            this.cmdRelationship.TabIndex = 89;
            this.cmdRelationship.Text = "Relationship";
            this.cmdRelationship.UseVisualStyleBackColor = false;
            this.cmdRelationship.Visible = false;
            this.cmdRelationship.Click += new System.EventHandler(this.cmdRelationship_Click);
            //
            // cmdFamily
            //
            this.cmdFamily.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdFamily.BackColor = System.Drawing.SystemColors.Info;
            this.cmdFamily.Location = new System.Drawing.Point(571, 380);
            this.cmdFamily.Name = "cmdFamily";
            this.cmdFamily.Size = new System.Drawing.Size(86, 24);
            this.cmdFamily.TabIndex = 88;
            this.cmdFamily.Text = "Family";
            this.cmdFamily.UseVisualStyleBackColor = false;
            this.cmdFamily.Visible = false;
            this.cmdFamily.Click += new System.EventHandler(this.cmdFamily_Click);
            //
            // cmdClinicalNotesFilter
            //
            this.cmdClinicalNotesFilter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdClinicalNotesFilter.BackColor = System.Drawing.SystemColors.Info;
            this.cmdClinicalNotesFilter.Location = new System.Drawing.Point(663, 380);
            this.cmdClinicalNotesFilter.Name = "cmdClinicalNotesFilter";
            this.cmdClinicalNotesFilter.Size = new System.Drawing.Size(86, 24);
            this.cmdClinicalNotesFilter.TabIndex = 86;
            this.cmdClinicalNotesFilter.Text = "Filter";
            this.cmdClinicalNotesFilter.UseVisualStyleBackColor = false;
            this.cmdClinicalNotesFilter.Click += new System.EventHandler(this.cmdClinicalNotesFilter_Click);
            //
            // cmdDocumentFilter
            //
            this.cmdDocumentFilter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdDocumentFilter.BackColor = System.Drawing.SystemColors.Info;
            this.cmdDocumentFilter.Location = new System.Drawing.Point(755, 380);
            this.cmdDocumentFilter.Name = "cmdDocumentFilter";
            this.cmdDocumentFilter.Size = new System.Drawing.Size(86, 24);
            this.cmdDocumentFilter.TabIndex = 85;
            this.cmdDocumentFilter.Text = "Filter";
            this.cmdDocumentFilter.UseVisualStyleBackColor = false;
            this.cmdDocumentFilter.Click += new System.EventHandler(this.cmdDocumentFilter_Click);
            //
            // cmdViewHistory
            //
            this.cmdViewHistory.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdViewHistory.BackColor = System.Drawing.SystemColors.Info;
            this.cmdViewHistory.Location = new System.Drawing.Point(779, 443);
            this.cmdViewHistory.Name = "cmdViewHistory";
            this.cmdViewHistory.Size = new System.Drawing.Size(86, 24);
            this.cmdViewHistory.TabIndex = 84;
            this.cmdViewHistory.Text = "View History";
            this.cmdViewHistory.UseVisualStyleBackColor = false;
            this.cmdViewHistory.Click += new System.EventHandler(this.cmdViewHistory_Click);
            //
            // cmdGoToMember
            //
            this.cmdGoToMember.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdGoToMember.BackColor = System.Drawing.SystemColors.Info;
            this.cmdGoToMember.Location = new System.Drawing.Point(694, 443);
            this.cmdGoToMember.Name = "cmdGoToMember";
            this.cmdGoToMember.Size = new System.Drawing.Size(86, 24);
            this.cmdGoToMember.TabIndex = 83;
            this.cmdGoToMember.Text = "Go To Member";
            this.cmdGoToMember.UseVisualStyleBackColor = false;
            this.cmdGoToMember.Click += new System.EventHandler(this.cmdGoToMember_Click);
            //
            // cmdCopy
            //
            this.cmdCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdCopy.BackColor = System.Drawing.SystemColors.Info;
            this.cmdCopy.Location = new System.Drawing.Point(612, 444);
            this.cmdCopy.Name = "cmdCopy";
            this.cmdCopy.Size = new System.Drawing.Size(80, 24);
            this.cmdCopy.TabIndex = 17;
            this.cmdCopy.Text = "Copy";
            this.cmdCopy.UseVisualStyleBackColor = false;
            this.cmdCopy.Click += new System.EventHandler(this.cmdCopy_Click);
            //
            // cmdReverse
            //
            this.cmdReverse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdReverse.BackColor = System.Drawing.SystemColors.Info;
            this.cmdReverse.Location = new System.Drawing.Point(354, 444);
            this.cmdReverse.Name = "cmdReverse";
            this.cmdReverse.Size = new System.Drawing.Size(80, 24);
            this.cmdReverse.TabIndex = 16;
            this.cmdReverse.Text = "Reverse";
            this.cmdReverse.UseVisualStyleBackColor = false;
            this.cmdReverse.Click += new System.EventHandler(this.cmdReverse_Click);
            //
            // cmdPrint
            //
            this.cmdPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdPrint.BackColor = System.Drawing.SystemColors.Info;
            this.cmdPrint.Location = new System.Drawing.Point(526, 444);
            this.cmdPrint.Name = "cmdPrint";
            this.cmdPrint.Size = new System.Drawing.Size(80, 24);
            this.cmdPrint.TabIndex = 15;
            this.cmdPrint.Text = "Print";
            this.cmdPrint.UseVisualStyleBackColor = false;
            this.cmdPrint.Click += new System.EventHandler(this.cmdPrint_Click);
            //
            // cmdCloseItem
            //
            this.cmdCloseItem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdCloseItem.BackColor = System.Drawing.SystemColors.Info;
            this.cmdCloseItem.Location = new System.Drawing.Point(440, 444);
            this.cmdCloseItem.Name = "cmdCloseItem";
            this.cmdCloseItem.Size = new System.Drawing.Size(80, 24);
            this.cmdCloseItem.TabIndex = 14;
            this.cmdCloseItem.Text = "Close";
            this.cmdCloseItem.UseVisualStyleBackColor = false;
            this.cmdCloseItem.Click += new System.EventHandler(this.cmdCloseItem_Click);
            //
            // cmdView
            //
            this.cmdView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdView.BackColor = System.Drawing.SystemColors.Info;
            this.cmdView.Location = new System.Drawing.Point(180, 444);
            this.cmdView.Name = "cmdView";
            this.cmdView.Size = new System.Drawing.Size(80, 24);
            this.cmdView.TabIndex = 12;
            this.cmdView.Text = "View";
            this.cmdView.UseVisualStyleBackColor = false;
            this.cmdView.Click += new System.EventHandler(this.cmdView_Click);
            //
            // cmdDelete
            //
            this.cmdDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdDelete.BackColor = System.Drawing.SystemColors.Info;
            this.cmdDelete.Location = new System.Drawing.Point(268, 444);
            this.cmdDelete.Name = "cmdDelete";
            this.cmdDelete.Size = new System.Drawing.Size(80, 24);
            this.cmdDelete.TabIndex = 13;
            this.cmdDelete.Text = "Delete";
            this.cmdDelete.UseVisualStyleBackColor = false;
            this.cmdDelete.Click += new System.EventHandler(this.cmdDelete_Click);
            //
            // cmdEdit
            //
            this.cmdEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdEdit.BackColor = System.Drawing.SystemColors.Info;
            this.cmdEdit.Location = new System.Drawing.Point(92, 444);
            this.cmdEdit.Name = "cmdEdit";
            this.cmdEdit.Size = new System.Drawing.Size(80, 24);
            this.cmdEdit.TabIndex = 11;
            this.cmdEdit.Text = "Edit";
            this.cmdEdit.UseVisualStyleBackColor = false;
            this.cmdEdit.Click += new System.EventHandler(this.cmdEdit_Click);
            //
            // cmdAdd
            //
            this.cmdAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cmdAdd.BackColor = System.Drawing.SystemColors.Info;
            this.cmdAdd.Location = new System.Drawing.Point(4, 444);
            this.cmdAdd.Name = "cmdAdd";
            this.cmdAdd.Size = new System.Drawing.Size(80, 24);
            this.cmdAdd.TabIndex = 10;
            this.cmdAdd.Text = "Add";
            this.cmdAdd.UseVisualStyleBackColor = false;
            this.cmdAdd.Click += new System.EventHandler(this.cmdAdd_Click);
            //
            // taigMain
            //
            this.taigMain.AllowWhiteSpaceInCells = false;
            this.taigMain.AlternateColoration = false;
            this.taigMain.AlternateColorationAltColor = System.Drawing.Color.MediumSpringGreen;
            this.taigMain.AlternateColorationBaseColor = System.Drawing.Color.AntiqueWhite;
            this.taigMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.taigMain.BorderColor = System.Drawing.Color.Black;
            this.taigMain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.taigMain.CellOutlines = true;
            this.taigMain.ColBackColorEdit = System.Drawing.Color.Yellow;
            this.taigMain.Cols = 0;
            this.taigMain.DefaultBackgroundColor = System.Drawing.Color.AntiqueWhite;
            this.taigMain.DefaultCellFont = new System.Drawing.Font("Arial", 9F);
            this.taigMain.DefaultForegroundColor = System.Drawing.Color.Black;
            this.taigMain.Delimiter = ",";
            this.taigMain.ExcelAlternateColoration = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(255)))), ((int)(((byte)(204)))));
            this.taigMain.ExcelAutoFitColumn = true;
            this.taigMain.ExcelAutoFitRow = true;
            this.taigMain.ExcelFilename = "";
            this.taigMain.ExcelIncludeColumnHeaders = true;
            this.taigMain.ExcelKeepAlive = true;
            this.taigMain.ExcelMatchGridColorScheme = true;
            this.taigMain.ExcelMaximized = true;
            this.taigMain.ExcelMaxRowsPerSheet = 30000;
            this.taigMain.ExcelOutlineCells = true;
            this.taigMain.ExcelPageOrientation = 1;
            this.taigMain.ExcelShowBorders = false;
            this.taigMain.ExcelUseAlternateRowColor = true;
            this.taigMain.ExcelWorksheetName = "Grid Output";
            this.taigMain.GridEditMode = TAIGridControl2.TAIGridControl.GridEditModes.KeyReturn;
            this.taigMain.GridHeaderBackColor = System.Drawing.Color.LightBlue;
            this.taigMain.GridHeaderFont = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
            this.taigMain.GridHeaderForeColor = System.Drawing.Color.Black;
            this.taigMain.GridHeaderHeight = 16;
            stringFormat2.Alignment = System.Drawing.StringAlignment.Near;
            stringFormat2.HotkeyPrefix = System.Drawing.Text.HotkeyPrefix.None;
            stringFormat2.LineAlignment = System.Drawing.StringAlignment.Near;
            stringFormat2.Trimming = System.Drawing.StringTrimming.Character;
            this.taigMain.GridHeaderStringFormat = stringFormat2;
            this.taigMain.GridheaderVisible = true;
            this.taigMain.Location = new System.Drawing.Point(4, 4);
            this.taigMain.Name = "taigMain";
            this.taigMain.OmitNulls = true;
            this.taigMain.PageSettings = null;
            this.taigMain.PaginationSize = 0;
            this.taigMain.Rows = 0;
            this.taigMain.ScrollInterval = 5;
            this.taigMain.SelectedColBackColor = System.Drawing.Color.MediumSlateBlue;
            this.taigMain.SelectedColForeColor = System.Drawing.Color.LightGray;
            this.taigMain.SelectedColumn = -1;
            this.taigMain.SelectedRow = -1;
            this.taigMain.SelectedRowBackColor = System.Drawing.Color.Blue;
            this.taigMain.SelectedRowForeColor = System.Drawing.Color.White;
            this.taigMain.SelectedRows = ((System.Collections.ArrayList)(resources.GetObject("taigMain.SelectedRows")));
            this.taigMain.Size = new System.Drawing.Size(870, 436);
            this.taigMain.TabIndex = 9;
            this.taigMain.TitleBackColor = System.Drawing.Color.Blue;
            this.taigMain.TitleFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.taigMain.TitleForeColor = System.Drawing.Color.White;
            this.taigMain.TitleText = "";
            this.taigMain.TitleVisible = true;
            this.taigMain.XMLDataSetName = "Grid_Output";
            this.taigMain.XMLFileName = "";
            this.taigMain.XMLIncludeSchema = false;
            this.taigMain.XMLNameSpace = "TAI_Grid_Ouptut";
            this.taigMain.XMLTableName = "Table";
            this.taigMain.CellDoubleClicked += new TAIGridControl2.TAIGridControl.CellDoubleClickedEventHandler(this.taigMain_CellDoubleClicked);
            //
            // lblCNSpecial
            //
            this.lblCNSpecial.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblCNSpecial.ForeColor = System.Drawing.Color.Red;
            this.lblCNSpecial.Location = new System.Drawing.Point(350, 1);
            this.lblCNSpecial.Name = "lblCNSpecial";
            this.lblCNSpecial.Size = new System.Drawing.Size(199, 20);
            this.lblCNSpecial.TabIndex = 1102;
            this.lblCNSpecial.Text = "SPECIAL INSTRUCTIONS  ";
            this.lblCNSpecial.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // lblCrisisAlert
            //
            this.lblCrisisAlert.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblCrisisAlert.ForeColor = System.Drawing.Color.Red;
            this.lblCrisisAlert.Location = new System.Drawing.Point(549, 1);
            this.lblCrisisAlert.Name = "lblCrisisAlert";
            this.lblCrisisAlert.Size = new System.Drawing.Size(127, 20);
            this.lblCrisisAlert.TabIndex = 1103;
            this.lblCrisisAlert.Text = "CRISIS ALERT  ";
            this.lblCrisisAlert.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // radPanelBar1
            //
            this.radPanelBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
            | System.Windows.Forms.AnchorStyles.Right)));
            this.radPanelBar1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            this.radPanelBar1.Controls.Add(this.pnlMHMREI);
            this.radPanelBar1.Controls.Add(this.pnlGroup1);
            this.radPanelBar1.Controls.Add(this.pnlGroup2);
            this.radPanelBar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.radPanelBar1.Location = new System.Drawing.Point(877, 24);
            this.radPanelBar1.Margin = new System.Windows.Forms.Padding(0);
            this.radPanelBar1.Name = "radPanelBar1";
            this.radPanelBar1.PageBackColor = System.Drawing.SystemColors.ControlLight;
            //
            //
            //
            this.radPanelBar1.RootElement.FitToSizeMode = Telerik.WinControls.RadFitToSizeMode.FitToParentContent;
            this.radPanelBar1.RootElement.ScaleTransform = new System.Drawing.SizeF(1F, 1F);
            this.radPanelBar1.SelectedPage = this.pnlGroup2;
            this.radPanelBar1.Size = new System.Drawing.Size(128, 654);
            this.radPanelBar1.TabIndex = 1104;
            this.radPanelBar1.ViewMode = Telerik.WinControls.UI.PageViewMode.Stack;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).StackPosition = Telerik.WinControls.UI.StackViewPosition.Bottom;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).ItemSelectionMode = Telerik.WinControls.UI.StackViewItemSelectionMode.ContentWithSelected;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderWidth = 0F;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderLeftWidth = 0F;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderTopWidth = 0F;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderRightWidth = 0F;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderBottomWidth = 0F;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderInnerColor = System.Drawing.SystemColors.ControlLight;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BackColor4 = System.Drawing.SystemColors.ControlLight;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderLeftShadowColor = System.Drawing.SystemColors.ControlLight;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderTopShadowColor = System.Drawing.SystemColors.ControlLight;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderRightShadowColor = System.Drawing.SystemColors.ControlLight;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).BorderBottomShadowColor = System.Drawing.SystemColors.ControlLight;
            ((Telerik.WinControls.UI.RadPageViewStackElement)(this.radPanelBar1.GetChildAt(0))).UseDefaultDisabledPaint = true;
            ((Telerik.WinControls.UI.RadPageViewContentAreaElement)(this.radPanelBar1.GetChildAt(0).GetChildAt(0))).BorderBoxStyle = Telerik.WinControls.BorderBoxStyle.OuterInnerBorders;
            ((Telerik.WinControls.UI.RadPageViewContentAreaElement)(this.radPanelBar1.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.SystemColors.ControlLight;
            ((Telerik.WinControls.UI.RadPageViewContentAreaElement)(this.radPanelBar1.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.SystemColors.ControlLight;
            ((Telerik.WinControls.UI.RadPageViewLabelElement)(this.radPanelBar1.GetChildAt(0).GetChildAt(1))).Text = "Page 2";
            ((Telerik.WinControls.UI.RadPageViewLabelElement)(this.radPanelBar1.GetChildAt(0).GetChildAt(1))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            //
            // pnlMHMREI
            //
            this.pnlMHMREI.BackColor = System.Drawing.SystemColors.ControlLight;
            this.pnlMHMREI.Controls.Add(this.btnCCRPOMS);
            this.pnlMHMREI.Controls.Add(this.cmdIntake);
            this.pnlMHMREI.Controls.Add(this.btnMedications);
            this.pnlMHMREI.Controls.Add(this.btnLiability);
            this.pnlMHMREI.Controls.Add(this.btnInfoRef);
            this.pnlMHMREI.Controls.Add(this.cmdInsurance);
            this.pnlMHMREI.Controls.Add(this.cmdFamilyGroup);
            this.pnlMHMREI.Controls.Add(this.cmdHospitalizations);
            this.pnlMHMREI.Controls.Add(this.btnDocuments);
            this.pnlMHMREI.Controls.Add(this.cmdEncounterLogging);
            this.pnlMHMREI.Controls.Add(this.btnClinicalNotes);
            this.pnlMHMREI.Controls.Add(this.cmdDiagnosis);
            this.pnlMHMREI.Controls.Add(this.cmdClaims);
            this.pnlMHMREI.Controls.Add(this.cmdAddress);
            this.pnlMHMREI.Controls.Add(this.cmdAssociations);
            this.pnlMHMREI.Controls.Add(this.cmdAlias);
            this.pnlMHMREI.Controls.Add(this.cmdAuth);
            this.pnlMHMREI.Controls.Add(this.btnClose);
            this.pnlMHMREI.Location = new System.Drawing.Point(4, 34);
            this.pnlMHMREI.Margin = new System.Windows.Forms.Padding(0);
            this.pnlMHMREI.Name = "pnlMHMREI";
            this.pnlMHMREI.Size = new System.Drawing.Size(120, 555);
            this.pnlMHMREI.Text = "MH/MR/EI";
            //
            // btnCCRPOMS
            //
            this.btnCCRPOMS.Location = new System.Drawing.Point(3, 428);
            this.btnCCRPOMS.Name = "btnCCRPOMS";
            this.btnCCRPOMS.Size = new System.Drawing.Size(116, 24);
            this.btnCCRPOMS.TabIndex = 50;
            this.btnCCRPOMS.Text = "CCR POMS";
            this.btnCCRPOMS.Click += new System.EventHandler(this.btnCCRPOMS_Click);
            //
            // cmdIntake
            //
            this.cmdIntake.Location = new System.Drawing.Point(3, 353);
            this.cmdIntake.Name = "cmdIntake";
            this.cmdIntake.Size = new System.Drawing.Size(116, 24);
            this.cmdIntake.TabIndex = 49;
            this.cmdIntake.Text = "Intake";
            this.cmdIntake.Click += new System.EventHandler(this.cmdIntake_Click);
            //
            // btnMedications
            //
            this.btnMedications.Location = new System.Drawing.Point(3, 403);
            this.btnMedications.Name = "btnMedications";
            this.btnMedications.Size = new System.Drawing.Size(116, 24);
            this.btnMedications.TabIndex = 48;
            this.btnMedications.Text = "Medications";
            this.btnMedications.Click += new System.EventHandler(this.cmdMedications_Click);
            //
            // btnLiability
            //
            this.btnLiability.Location = new System.Drawing.Point(3, 378);
            this.btnLiability.Name = "btnLiability";
            this.btnLiability.Size = new System.Drawing.Size(116, 24);
            this.btnLiability.TabIndex = 47;
            this.btnLiability.Text = "Liability";
            this.btnLiability.Click += new System.EventHandler(this.btnLiability_Click);
            //
            // btnInfoRef
            //
            this.btnInfoRef.Location = new System.Drawing.Point(3, 328);
            this.btnInfoRef.Name = "btnInfoRef";
            this.btnInfoRef.Size = new System.Drawing.Size(116, 24);
            this.btnInfoRef.TabIndex = 46;
            this.btnInfoRef.Text = "Info and Referral";
            this.btnInfoRef.Click += new System.EventHandler(this.cmdInfoandRef_Click);
            //
            // cmdInsurance
            //
            this.cmdInsurance.Location = new System.Drawing.Point(3, 303);
            this.cmdInsurance.Name = "cmdInsurance";
            this.cmdInsurance.Size = new System.Drawing.Size(116, 24);
            this.cmdInsurance.TabIndex = 45;
            this.cmdInsurance.Text = "Insurance";
            this.cmdInsurance.Click += new System.EventHandler(this.cmdInsurance_Click);
            //
            // cmdFamilyGroup
            //
            this.cmdFamilyGroup.Location = new System.Drawing.Point(3, 253);
            this.cmdFamilyGroup.Name = "cmdFamilyGroup";
            this.cmdFamilyGroup.Size = new System.Drawing.Size(116, 24);
            this.cmdFamilyGroup.TabIndex = 44;
            this.cmdFamilyGroup.Text = "Family Group";
            this.cmdFamilyGroup.Click += new System.EventHandler(this.btnFamilyGroup_Click);
            //
            // cmdHospitalizations
            //
            this.cmdHospitalizations.Location = new System.Drawing.Point(3, 278);
            this.cmdHospitalizations.Name = "cmdHospitalizations";
            this.cmdHospitalizations.Size = new System.Drawing.Size(116, 24);
            this.cmdHospitalizations.TabIndex = 43;
            this.cmdHospitalizations.Text = "Hospitalizations";
            this.cmdHospitalizations.Click += new System.EventHandler(this.cmdHospitalizations_Click);
            //
            // btnDocuments
            //
            this.btnDocuments.Location = new System.Drawing.Point(3, 203);
            this.btnDocuments.Name = "btnDocuments";
            this.btnDocuments.Size = new System.Drawing.Size(116, 24);
            this.btnDocuments.TabIndex = 42;
            this.btnDocuments.Text = "Documents";
            this.btnDocuments.Click += new System.EventHandler(this.cmdDocuments_Click);
            //
            // cmdEncounterLogging
            //
            this.cmdEncounterLogging.Location = new System.Drawing.Point(3, 228);
            this.cmdEncounterLogging.Name = "cmdEncounterLogging";
            this.cmdEncounterLogging.Size = new System.Drawing.Size(116, 24);
            this.cmdEncounterLogging.TabIndex = 41;
            this.cmdEncounterLogging.Text = "Encounter Logging";
            this.cmdEncounterLogging.Click += new System.EventHandler(this.cmdEncounterLogging_Click);
            //
            // btnClinicalNotes
            //
            this.btnClinicalNotes.Location = new System.Drawing.Point(3, 153);
            this.btnClinicalNotes.Name = "btnClinicalNotes";
            this.btnClinicalNotes.Size = new System.Drawing.Size(116, 24);
            this.btnClinicalNotes.TabIndex = 39;
            this.btnClinicalNotes.Text = "Clinical Notes";
            this.btnClinicalNotes.Click += new System.EventHandler(this.btnClinicalNotes_Click);
            //
            // cmdDiagnosis
            //
            this.cmdDiagnosis.Location = new System.Drawing.Point(3, 178);
            this.cmdDiagnosis.Name = "cmdDiagnosis";
            this.cmdDiagnosis.Size = new System.Drawing.Size(116, 24);
            this.cmdDiagnosis.TabIndex = 40;
            this.cmdDiagnosis.Text = "Diagnosis";
            this.cmdDiagnosis.Click += new System.EventHandler(this.cmdDiagnosis_Click);
            //
            // cmdClaims
            //
            this.cmdClaims.Location = new System.Drawing.Point(3, 128);
            this.cmdClaims.Name = "cmdClaims";
            this.cmdClaims.Size = new System.Drawing.Size(116, 24);
            this.cmdClaims.TabIndex = 38;
            this.cmdClaims.Text = "Claims";
            this.cmdClaims.UseVisualStyleBackColor = false;
            this.cmdClaims.Click += new System.EventHandler(this.cmdClaims_Click);
            //
            // cmdAddress
            //
            this.cmdAddress.Location = new System.Drawing.Point(3, 28);
            this.cmdAddress.Name = "cmdAddress";
            this.cmdAddress.Size = new System.Drawing.Size(116, 24);
            this.cmdAddress.TabIndex = 34;
            this.cmdAddress.Text = "Address HX";
            this.cmdAddress.Click += new System.EventHandler(this.cmdAddress_Click);
            //
            // cmdAssociations
            //
            this.cmdAssociations.Location = new System.Drawing.Point(3, 78);
            this.cmdAssociations.Name = "cmdAssociations";
            this.cmdAssociations.Size = new System.Drawing.Size(116, 24);
            this.cmdAssociations.TabIndex = 36;
            this.cmdAssociations.Text = "Associations";
            this.cmdAssociations.Click += new System.EventHandler(this.cmdAssociations_Click);
            //
            // cmdAlias
            //
            this.cmdAlias.Location = new System.Drawing.Point(3, 53);
            this.cmdAlias.Name = "cmdAlias";
            this.cmdAlias.Size = new System.Drawing.Size(116, 24);
            this.cmdAlias.TabIndex = 35;
            this.cmdAlias.Text = "Alias";
            this.cmdAlias.Click += new System.EventHandler(this.cmdAlias_Click);
            //
            // cmdAuth
            //
            this.cmdAuth.Location = new System.Drawing.Point(3, 103);
            this.cmdAuth.Name = "cmdAuth";
            this.cmdAuth.Size = new System.Drawing.Size(116, 24);
            this.cmdAuth.TabIndex = 37;
            this.cmdAuth.Text = "Auth";
            this.cmdAuth.UseVisualStyleBackColor = false;
            this.cmdAuth.Click += new System.EventHandler(this.cmdAuth_Click);
            //
            // btnClose
            //
            this.btnClose.Location = new System.Drawing.Point(3, 3);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(116, 24);
            this.btnClose.TabIndex = 18;
            this.btnClose.Text = "Close";
            this.btnClose.Click += new System.EventHandler(this.btnCloseCY_Click);
            //
            // pnlGroup1
            //
            this.pnlGroup1.BackColor = System.Drawing.SystemColors.ControlLight;
            this.pnlGroup1.Controls.Add(this.btnHistory);
            this.pnlGroup1.Controls.Add(this.btnRemovals);
            this.pnlGroup1.Controls.Add(this.cmdProviders);
            this.pnlGroup1.Controls.Add(this.btnLiabilities1);
            this.pnlGroup1.Controls.Add(this.btnInsurance);
            this.pnlGroup1.Controls.Add(this.btnPPC);
            this.pnlGroup1.Controls.Add(this.btnPhysicalHealth);
            this.pnlGroup1.Controls.Add(this.cmdMedications);
            this.pnlGroup1.Controls.Add(this.btnHospitalizations);
            this.pnlGroup1.Controls.Add(this.btnFSPReview);
            this.pnlGroup1.Controls.Add(this.btnFamilyServicePlan);
            this.pnlGroup1.Controls.Add(this.btnFamilyGroup);
            this.pnlGroup1.Controls.Add(this.cmdDiagnosis1);
            this.pnlGroup1.Controls.Add(this.btnCourt);
            this.pnlGroup1.Controls.Add(this.cmdDocuments);
            this.pnlGroup1.Controls.Add(this.btnClaims);
            this.pnlGroup1.Controls.Add(this.btnCaseNotes);
            this.pnlGroup1.Controls.Add(this.btnAuths);
            this.pnlGroup1.Controls.Add(this.btnAssociations);
            this.pnlGroup1.Controls.Add(this.btnAlias);
            this.pnlGroup1.Controls.Add(this.btnAdoption);
            this.pnlGroup1.Controls.Add(this.btnAddress);
            this.pnlGroup1.Controls.Add(this.btnCloseCY);
            this.pnlGroup1.Location = new System.Drawing.Point(4, 65);
            this.pnlGroup1.Margin = new System.Windows.Forms.Padding(0);
            this.pnlGroup1.Name = "pnlGroup1";
            this.pnlGroup1.Size = new System.Drawing.Size(120, 555);
            this.pnlGroup1.Text = "Page 1";
            //
            // btnHistory
            //
            this.btnHistory.Location = new System.Drawing.Point(4, 336);
            this.btnHistory.Name = "btnHistory";
            this.btnHistory.Size = new System.Drawing.Size(116, 24);
            this.btnHistory.TabIndex = 90;
            this.btnHistory.Text = "History Checks";
            this.btnHistory.Click += new System.EventHandler(this.btnHistory_Click);
            //
            // btnRemovals
            //
            this.btnRemovals.Location = new System.Drawing.Point(3, 528);
            this.btnRemovals.Name = "btnRemovals";
            this.btnRemovals.Size = new System.Drawing.Size(116, 24);
            this.btnRemovals.TabIndex = 45;
            this.btnRemovals.Text = "Removals";
            this.btnRemovals.UseVisualStyleBackColor = false;
            this.btnRemovals.Click += new System.EventHandler(this.btnRemovals_Click);
            //
            // cmdProviders
            //
            this.cmdProviders.Location = new System.Drawing.Point(3, 504);
            this.cmdProviders.Name = "cmdProviders";
            this.cmdProviders.Size = new System.Drawing.Size(116, 24);
            this.cmdProviders.TabIndex = 44;
            this.cmdProviders.Text = "Providers";
            this.cmdProviders.Click += new System.EventHandler(this.cmdProviders_Click);
            //
            // btnLiabilities1
            //
            this.btnLiabilities1.Enabled = false;
            this.btnLiabilities1.Location = new System.Drawing.Point(3, 408);
            this.btnLiabilities1.Name = "btnLiabilities1";
            this.btnLiabilities1.Size = new System.Drawing.Size(116, 24);
            this.btnLiabilities1.TabIndex = 43;
            this.btnLiabilities1.Text = "Liability";
            this.btnLiabilities1.Click += new System.EventHandler(this.btnLiability_Click);
            //
            // btnInsurance
            //
            this.btnInsurance.Location = new System.Drawing.Point(3, 384);
            this.btnInsurance.Name = "btnInsurance";
            this.btnInsurance.Size = new System.Drawing.Size(116, 24);
            this.btnInsurance.TabIndex = 42;
            this.btnInsurance.Text = "Insurance";
            this.btnInsurance.Click += new System.EventHandler(this.cmdInsurance_Click);
            //
            // btnPPC
            //
            this.btnPPC.Location = new System.Drawing.Point(3, 480);
            this.btnPPC.Name = "btnPPC";
            this.btnPPC.Size = new System.Drawing.Size(116, 24);
            this.btnPPC.TabIndex = 41;
            this.btnPPC.Text = "PPC";
            this.btnPPC.Click += new System.EventHandler(this.btnPPC_Click);
            //
            // btnPhysicalHealth
            //
            this.btnPhysicalHealth.Location = new System.Drawing.Point(3, 456);
            this.btnPhysicalHealth.Name = "btnPhysicalHealth";
            this.btnPhysicalHealth.Size = new System.Drawing.Size(116, 24);
            this.btnPhysicalHealth.TabIndex = 40;
            this.btnPhysicalHealth.Text = "Physical Health";
            this.btnPhysicalHealth.Click += new System.EventHandler(this.btnPhysicalHealth_Click);
            //
            // cmdMedications
            //
            this.cmdMedications.Location = new System.Drawing.Point(3, 432);
            this.cmdMedications.Name = "cmdMedications";
            this.cmdMedications.Size = new System.Drawing.Size(116, 24);
            this.cmdMedications.TabIndex = 39;
            this.cmdMedications.Text = "Medications";
            this.cmdMedications.Click += new System.EventHandler(this.cmdMedications_Click);
            //
            // btnHospitalizations
            //
            this.btnHospitalizations.Location = new System.Drawing.Point(3, 360);
            this.btnHospitalizations.Name = "btnHospitalizations";
            this.btnHospitalizations.Size = new System.Drawing.Size(116, 24);
            this.btnHospitalizations.TabIndex = 38;
            this.btnHospitalizations.Text = "Hospitalizations";
            this.btnHospitalizations.Click += new System.EventHandler(this.cmdHospitalizations_Click);
            //
            // btnFSPReview
            //
            this.btnFSPReview.Location = new System.Drawing.Point(3, 312);
            this.btnFSPReview.Name = "btnFSPReview";
            this.btnFSPReview.Size = new System.Drawing.Size(116, 24);
            this.btnFSPReview.TabIndex = 34;
            this.btnFSPReview.Text = "FSP Review";
            this.btnFSPReview.Click += new System.EventHandler(this.btnFSPReview_Click);
            //
            // btnFamilyServicePlan
            //
            this.btnFamilyServicePlan.Location = new System.Drawing.Point(3, 288);
            this.btnFamilyServicePlan.Name = "btnFamilyServicePlan";
            this.btnFamilyServicePlan.Size = new System.Drawing.Size(116, 24);
            this.btnFamilyServicePlan.TabIndex = 33;
            this.btnFamilyServicePlan.Text = "Family Service Plan";
            this.btnFamilyServicePlan.Click += new System.EventHandler(this.btnFSP_Click);
            //
            // btnFamilyGroup
            //
            this.btnFamilyGroup.Location = new System.Drawing.Point(3, 264);
            this.btnFamilyGroup.Name = "btnFamilyGroup";
            this.btnFamilyGroup.Size = new System.Drawing.Size(116, 24);
            this.btnFamilyGroup.TabIndex = 32;
            this.btnFamilyGroup.Text = "Family Group";
            this.btnFamilyGroup.Click += new System.EventHandler(this.btnFamilyGroup_Click);
            //
            // cmdDiagnosis1
            //
            this.cmdDiagnosis1.Location = new System.Drawing.Point(3, 216);
            this.cmdDiagnosis1.Name = "cmdDiagnosis1";
            this.cmdDiagnosis1.Size = new System.Drawing.Size(116, 24);
            this.cmdDiagnosis1.TabIndex = 30;
            this.cmdDiagnosis1.Text = "Diagnosis";
            this.cmdDiagnosis1.UseVisualStyleBackColor = false;
            this.cmdDiagnosis1.Click += new System.EventHandler(this.cmdDiagnosis_Click);
            //
            // btnCourt
            //
            this.btnCourt.Location = new System.Drawing.Point(3, 192);
            this.btnCourt.Name = "btnCourt";
            this.btnCourt.Size = new System.Drawing.Size(116, 24);
            this.btnCourt.TabIndex = 29;
            this.btnCourt.Text = "Court";
            this.btnCourt.UseVisualStyleBackColor = false;
            this.btnCourt.Click += new System.EventHandler(this.btnCourt_Click);
            //
            // cmdDocuments
            //
            this.cmdDocuments.Location = new System.Drawing.Point(3, 240);
            this.cmdDocuments.Name = "cmdDocuments";
            this.cmdDocuments.Size = new System.Drawing.Size(116, 24);
            this.cmdDocuments.TabIndex = 28;
            this.cmdDocuments.Text = "Documents";
            this.cmdDocuments.Click += new System.EventHandler(this.cmdDocuments_Click);
            //
            // btnClaims
            //
            this.btnClaims.Location = new System.Drawing.Point(3, 168);
            this.btnClaims.Name = "btnClaims";
            this.btnClaims.Size = new System.Drawing.Size(116, 24);
            this.btnClaims.TabIndex = 27;
            this.btnClaims.Text = "Claims";
            this.btnClaims.UseVisualStyleBackColor = false;
            this.btnClaims.Click += new System.EventHandler(this.cmdClaims_Click);
            //
            // btnCaseNotes
            //
            this.btnCaseNotes.Location = new System.Drawing.Point(3, 144);
            this.btnCaseNotes.Name = "btnCaseNotes";
            this.btnCaseNotes.Size = new System.Drawing.Size(116, 24);
            this.btnCaseNotes.TabIndex = 26;
            this.btnCaseNotes.Text = "Case Notes";
            this.btnCaseNotes.Click += new System.EventHandler(this.btnCaseNotes_Click);
            //
            // btnAuths
            //
            this.btnAuths.Location = new System.Drawing.Point(3, 120);
            this.btnAuths.Name = "btnAuths";
            this.btnAuths.Size = new System.Drawing.Size(116, 24);
            this.btnAuths.TabIndex = 25;
            this.btnAuths.Text = "Auth";
            this.btnAuths.UseVisualStyleBackColor = false;
            this.btnAuths.Click += new System.EventHandler(this.cmdAuth_Click);
            //
            // btnAssociations
            //
            this.btnAssociations.Location = new System.Drawing.Point(3, 96);
            this.btnAssociations.Name = "btnAssociations";
            this.btnAssociations.Size = new System.Drawing.Size(116, 24);
            this.btnAssociations.TabIndex = 24;
            this.btnAssociations.Text = "Associations";
            this.btnAssociations.Click += new System.EventHandler(this.cmdAssociations_Click);
            //
            // btnAlias
            //
            this.btnAlias.Location = new System.Drawing.Point(3, 72);
            this.btnAlias.Name = "btnAlias";
            this.btnAlias.Size = new System.Drawing.Size(116, 24);
            this.btnAlias.TabIndex = 23;
            this.btnAlias.Text = "Alias";
            this.btnAlias.Click += new System.EventHandler(this.cmdAlias_Click);
            //
            // btnAdoption
            //
            this.btnAdoption.Location = new System.Drawing.Point(3, 48);
            this.btnAdoption.Name = "btnAdoption";
            this.btnAdoption.Size = new System.Drawing.Size(116, 24);
            this.btnAdoption.TabIndex = 22;
            this.btnAdoption.Text = "Adoption";
            this.btnAdoption.Click += new System.EventHandler(this.btnAdoption_Click);
            //
            // btnAddress
            //
            this.btnAddress.Location = new System.Drawing.Point(3, 24);
            this.btnAddress.Name = "btnAddress";
            this.btnAddress.Size = new System.Drawing.Size(116, 24);
            this.btnAddress.TabIndex = 21;
            this.btnAddress.Text = "Address HX";
            this.btnAddress.Click += new System.EventHandler(this.cmdAddress_Click);
            //
            // btnCloseCY
            //
            this.btnCloseCY.Location = new System.Drawing.Point(3, 0);
            this.btnCloseCY.Name = "btnCloseCY";
            this.btnCloseCY.Size = new System.Drawing.Size(116, 24);
            this.btnCloseCY.TabIndex = 20;
            this.btnCloseCY.Text = "Close";
            this.btnCloseCY.Click += new System.EventHandler(this.btnCloseCY_Click);
            //
            // pnlGroup2
            //
            this.pnlGroup2.BackColor = System.Drawing.SystemColors.ControlLight;
            this.pnlGroup2.Controls.Add(this.btnResource);
            this.pnlGroup2.Controls.Add(this.cmdInfoRef);
            this.pnlGroup2.Controls.Add(this.btnSWAN);
            this.pnlGroup2.Controls.Add(this.btnSupervisorNotes);
            this.pnlGroup2.Controls.Add(this.btnSafetyAssessment);
            this.pnlGroup2.Controls.Add(this.btnRiskAssessment);
            this.pnlGroup2.Location = new System.Drawing.Point(4, 96);
            this.pnlGroup2.Margin = new System.Windows.Forms.Padding(0);
            this.pnlGroup2.Name = "pnlGroup2";
            this.pnlGroup2.Size = new System.Drawing.Size(120, 554);
            this.pnlGroup2.Text = "Page 2";
            //
            // btnResource
            //
            this.btnResource.Location = new System.Drawing.Point(3, 3);
            this.btnResource.Name = "btnResource";
            this.btnResource.Size = new System.Drawing.Size(116, 24);
            this.btnResource.TabIndex = 47;
            this.btnResource.Text = "Resource";
            this.btnResource.Click += new System.EventHandler(this.btnResource_Click);
            //
            // cmdInfoRef
            //
            this.cmdInfoRef.Location = new System.Drawing.Point(3, 79);
            this.cmdInfoRef.Name = "cmdInfoRef";
            this.cmdInfoRef.Size = new System.Drawing.Size(116, 24);
            this.cmdInfoRef.TabIndex = 38;
            this.cmdInfoRef.Text = "Screening";
            this.cmdInfoRef.Click += new System.EventHandler(this.btnInfoRef_Click);
            //
            // btnSWAN
            //
            this.btnSWAN.Location = new System.Drawing.Point(3, 129);
            this.btnSWAN.Name = "btnSWAN";
            this.btnSWAN.Size = new System.Drawing.Size(116, 24);
            this.btnSWAN.TabIndex = 34;
            this.btnSWAN.Text = "SWAN";
            this.btnSWAN.Click += new System.EventHandler(this.btnSWAN_Click);
            //
            // btnSupervisorNotes
            //
            this.btnSupervisorNotes.Location = new System.Drawing.Point(3, 104);
            this.btnSupervisorNotes.Name = "btnSupervisorNotes";
            this.btnSupervisorNotes.Size = new System.Drawing.Size(116, 24);
            this.btnSupervisorNotes.TabIndex = 33;
            this.btnSupervisorNotes.Text = "Supervisor Notes";
            this.btnSupervisorNotes.Click += new System.EventHandler(this.btnNotes_Click);
            //
            // btnSafetyAssessment
            //
            this.btnSafetyAssessment.Location = new System.Drawing.Point(3, 54);
            this.btnSafetyAssessment.Name = "btnSafetyAssessment";
            this.btnSafetyAssessment.Size = new System.Drawing.Size(116, 24);
            this.btnSafetyAssessment.TabIndex = 31;
            this.btnSafetyAssessment.Text = "Safety Assessment";
            this.btnSafetyAssessment.Click += new System.EventHandler(this.btnSafety2_Click);
            //
            // btnRiskAssessment
            //
            this.btnRiskAssessment.Location = new System.Drawing.Point(3, 29);
            this.btnRiskAssessment.Name = "btnRiskAssessment";
            this.btnRiskAssessment.Size = new System.Drawing.Size(116, 24);
            this.btnRiskAssessment.TabIndex = 30;
            this.btnRiskAssessment.Text = "Risk Assessment";
            this.btnRiskAssessment.Click += new System.EventHandler(this.btnRisk_Click);
            //
            // frmMemberMain
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1006, 712);
            this.Controls.Add(this.radPanelBar1);
            this.Controls.Add(this.lblCrisisAlert);
            this.Controls.Add(this.lblCNSpecial);
            this.Controls.Add(this.pnlGrids);
            this.Controls.Add(this.pnlMemberStuff);
            this.Controls.Add(this.mnuMain);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize = new System.Drawing.Size(640, 480);
            this.Name = "frmMemberMain";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "TAI LUIS Member Main";
            this.Activated += new System.EventHandler(this.HandleFormActivated);
            this.Load += new System.EventHandler(this.frmMemberMain_Load);
            this.mnuMain.ResumeLayout(false);
            this.mnuMain.PerformLayout();
            this.pnlMemberStuff.ResumeLayout(false);
            this.pnlMemberStuff.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).EndInit();
            this.pnlGrids.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPanelBar1)).EndInit();
            this.radPanelBar1.ResumeLayout(false);
            this.pnlMHMREI.ResumeLayout(false);
            this.pnlGroup1.ResumeLayout(false);
            this.pnlGroup2.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
 
        }
 
        #endregion
 
        private System.Windows.Forms.MenuStrip mnuMain;
        private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem messagesToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem managerToolStripMenuItem1;
        private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem issueSummaryToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem logAndIssueToolStripMenuItem;
        internal System.Windows.Forms.Button cmdGalaxyView;
        internal System.Windows.Forms.TextBox txtAddress3;
        internal System.Windows.Forms.TextBox txtHomePhone;
        internal System.Windows.Forms.Label label19;
        internal System.Windows.Forms.Label Label8;
        internal System.Windows.Forms.TextBox txtStatus;
        internal System.Windows.Forms.Label label16;
        internal System.Windows.Forms.TextBox txtType;
        internal System.Windows.Forms.Label label15;
        private System.Windows.Forms.TextBox txtCountyCode;
        private System.Windows.Forms.TextBox txtCountyName;
        internal System.Windows.Forms.Label label14;
        private System.Windows.Forms.Label label11;
        internal System.Windows.Forms.TextBox txtCellPhone;
        private System.Windows.Forms.Label label13;
        internal System.Windows.Forms.TextBox txtWorkPhone;
        private System.Windows.Forms.Label label10;
        internal System.Windows.Forms.Button cmdMemberView;
        internal System.Windows.Forms.Button cmdMemberSearch;
        internal System.Windows.Forms.Label label4;
        internal System.Windows.Forms.Button cmdMemberEdit;
        internal System.Windows.Forms.Button cmdMemberAdd;
        internal System.Windows.Forms.TextBox txtCISNumber;
        internal System.Windows.Forms.TextBox txtBSUNumber;
        internal System.Windows.Forms.TextBox txtZipCode;
        internal System.Windows.Forms.Label Label9;
        internal System.Windows.Forms.TextBox txtState;
        internal System.Windows.Forms.TextBox txtAddress2;
        internal System.Windows.Forms.TextBox txtCity;
        internal System.Windows.Forms.TextBox txtAddress1;
        internal System.Windows.Forms.TextBox txtDateOfBirth;
        internal System.Windows.Forms.Label Label7;
        internal System.Windows.Forms.Label Label5;
        internal System.Windows.Forms.Label Label6;
        internal System.Windows.Forms.TextBox txtSSN;
        internal System.Windows.Forms.Label Label3;
        internal System.Windows.Forms.TextBox txtMemberName;
        internal System.Windows.Forms.Label Label2;
        private System.Windows.Forms.Label label12;
        private System.Windows.Forms.TextBox txtDivision;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Panel pnlMemberStuff;
        private System.Windows.Forms.Panel pnlGrids;
        internal System.Windows.Forms.Button cmdView;
        internal System.Windows.Forms.Button cmdDelete;
        internal System.Windows.Forms.Button cmdEdit;
        internal System.Windows.Forms.Button cmdAdd;
        private System.Windows.Forms.PictureBox picLogo;
        protected TAIGridControl2.TAIGridControl taigMain;
        private TAICheckBox.TAICheckBox chkAssumedDOB;
        internal System.Windows.Forms.Label label22;
        internal System.Windows.Forms.TextBox txtEIXnum;
        internal System.Windows.Forms.Label label20;
        internal System.Windows.Forms.Label label21;
        internal System.Windows.Forms.TextBox txtMRXnum;
        internal System.Windows.Forms.TextBox txtMHXnum;
        internal System.Windows.Forms.Label label17;
        internal System.Windows.Forms.Label label18;
        internal System.Windows.Forms.TextBox txtMCInum;
        internal System.Windows.Forms.TextBox txtMAIDnum;
        internal System.Windows.Forms.TextBox txtPOMSlastchanged;
        private System.Windows.Forms.Label lblPOMS;
        internal System.Windows.Forms.Button cmdCloseItem;
        internal System.Windows.Forms.Button cmdPrint;
        internal System.Windows.Forms.Button cmdReverse;
        internal System.Windows.Forms.Button cmdCopy;
        internal System.Windows.Forms.Button cmdViewHistory;
        internal System.Windows.Forms.Button cmdGoToMember;
        internal System.Windows.Forms.TextBox txtEIStatus;
        internal System.Windows.Forms.TextBox txtCYAStatus;
        internal System.Windows.Forms.TextBox txtMRStatus;
        private System.Windows.Forms.Label label26;
        private System.Windows.Forms.Label label25;
        private System.Windows.Forms.Label label24;
        private System.Windows.Forms.Label label23;
        private System.Windows.Forms.ToolTip toolTip1;
        internal System.Windows.Forms.Button cmdDocumentFilter;
        private System.Windows.Forms.ToolStripMenuItem myAccessHistoryToolStripMenuItem;
        internal System.Windows.Forms.Button cmdClinicalNotesFilter;
        private System.Windows.Forms.Label lblCNSpecial;
        private System.Windows.Forms.Label lblCrisisAlert;
        private Telerik.WinControls.UI.RadPageView radPanelBar1;
        private Telerik.WinControls.UI.RadPageViewPage pnlGroup1;
        private Telerik.WinControls.UI.RadPageViewPage pnlGroup2;
        internal System.Windows.Forms.Button cmdDocuments;
        internal System.Windows.Forms.Button btnClaims;
        internal System.Windows.Forms.Button btnCaseNotes;
        internal System.Windows.Forms.Button btnAuths;
        internal System.Windows.Forms.Button btnAssociations;
        internal System.Windows.Forms.Button btnAlias;
        internal System.Windows.Forms.Button btnAdoption;
        internal System.Windows.Forms.Button btnAddress;
        private System.Windows.Forms.Button btnCloseCY;
        internal System.Windows.Forms.Button btnCourt;
        internal System.Windows.Forms.Button btnFSPReview;
        internal System.Windows.Forms.Button btnFamilyServicePlan;
        internal System.Windows.Forms.Button btnFamilyGroup;
        internal System.Windows.Forms.Button cmdDiagnosis1;
        internal System.Windows.Forms.Button btnSafetyAssessment;
        internal System.Windows.Forms.Button btnSWAN;
        internal System.Windows.Forms.Button btnSupervisorNotes;
        private Telerik.WinControls.UI.RadPageViewPage pnlMHMREI;
        internal System.Windows.Forms.Button cmdIntake;
        internal System.Windows.Forms.Button btnMedications;
        internal System.Windows.Forms.Button btnLiability;
        internal System.Windows.Forms.Button btnInfoRef;
        internal System.Windows.Forms.Button cmdInsurance;
        internal System.Windows.Forms.Button cmdFamilyGroup;
        internal System.Windows.Forms.Button cmdHospitalizations;
        internal System.Windows.Forms.Button btnDocuments;
        internal System.Windows.Forms.Button cmdEncounterLogging;
        internal System.Windows.Forms.Button btnClinicalNotes;
        internal System.Windows.Forms.Button cmdDiagnosis;
        internal System.Windows.Forms.Button cmdClaims;
        internal System.Windows.Forms.Button cmdAddress;
        internal System.Windows.Forms.Button cmdAssociations;
        internal System.Windows.Forms.Button cmdAlias;
        internal System.Windows.Forms.Button cmdAuth;
        private System.Windows.Forms.Button btnClose;
        internal System.Windows.Forms.Button btnCCRPOMS;
        internal System.Windows.Forms.Button btnRemovals;
        internal System.Windows.Forms.Button cmdProviders;
        internal System.Windows.Forms.Button btnLiabilities1;
        internal System.Windows.Forms.Button btnInsurance;
        internal System.Windows.Forms.Button btnPPC;
        internal System.Windows.Forms.Button btnPhysicalHealth;
        internal System.Windows.Forms.Button cmdMedications;
        internal System.Windows.Forms.Button btnHospitalizations;
        internal System.Windows.Forms.Button btnRiskAssessment;
        private System.Windows.Forms.Label label27;
        internal System.Windows.Forms.TextBox txtCrisisStatus;
        internal System.Windows.Forms.Button cmdInfoRef;
        internal System.Windows.Forms.Button cmdFamily;
        internal System.Windows.Forms.Button cmdRelationship;
        internal System.Windows.Forms.Button btnResource;
        internal System.Windows.Forms.Button btnHistory;
    }
}
I have the latest version of the windows rad controls 2012.2.828.20.

When i try to load the form in designed view I get the error "The variable 'radPanelBar1' is either undeclared or was never assigned".
This is happenning on code that was working fine before.

What's going on?

John

Stefan
Telerik team
 answered on 22 Oct 2012
2 answers
248 views
How to change the color of the cell when I changed its value?
rgv.CurrentRow.Cells[title].Value = newValue;
Is it possible?
Sam
Top achievements
Rank 1
 answered on 21 Oct 2012
5 answers
244 views
Let me specific here.....................

I have a grid with interactive filtering enabled. If the users clicks on a
button which is placed inside the grid to edit the record on another form, I get the GridViewInfo.RowIndex to access the Row.

However, when Filtering is active, the RowIndex in the Event does not
point to the correct Row, when I access the

index = RadGridView1.CurrentRow.GridViewInfo.CurrentIndex;

The GridViewInfo.RowIndex seems to point to the unfiltered row
index, while grid.Rows[] contains only the filtered rows.

What shall i do...I am using C# and Telerik Windows Q1 2009
Julian Benkov
Telerik team
 answered on 19 Oct 2012
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Form
Chart (obsolete as of Q1 2013)
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
Styling
Barcode
PopupEditor
RibbonForm
TaskBoard
Callout
NavigationView
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Security
LocalizationProvider
Dictionary
SplashScreen
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?