My question is there a better structure to handle the more complex FEL2 and FEL3, like the web page? FEL2 will have approximately 20 questions and FEL3 will have about 50. I am still undecided whether to use radio buttons (radio button list, which I do not understand yet) or text boxes that will take a value between 0 and 10. I may weight the questions to give an overall percent complete that I can show on the progress bar or some such.
If there is a better structure than the Windows form, can it and the Windows Form be linked? If not, will abandon efforts to complete current FEL1. Conceptually, you cannot start FEL2 until you have completed FEL1, and FEL3 until FEL2 is complete.
Any thoughts appreciated. This forum is a godsend.
Public Class FrmFEL1 Dim PctCmpt As New ProgressBar() Private Sub CboxChrtr_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CboxChrtr.CheckedChanged If True Then PctCmpt.Value = 10 End Sub Private Sub CBoxPE_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CBoxPE.CheckedChanged If True Then PctCmpt.Value = 25 End Sub Private Sub CBoxPCM_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CBoxPCM.CheckedChanged If True Then PctCmpt.Value = 35 End Sub Private Sub CBoxPL_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CBoxPL.CheckedChanged If True Then PctCmpt.Value = 50 End Sub Private Sub TxtBasis_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TxtBasis.TextChanged If CboxChrtr.Checked = True Then TxFEL1.Text = "10" If CBoxPE.Checked = True Then TxFEL1.Text = "25" If CBoxPE.Checked And CBoxPCM.Checked Then TxFEL1.Text = "35" End Sub End Class
This is what I have so far. It is no working at all. No values appear when boxes checked.
Would like a value for each checkbox that can be added in in order to get a total. That total to be added to the percent complete (TxFEL1).
This post has been edited by wasatchu: 15 September 2009 - 12:47 PM

New Topic/Question
Reply




MultiQuote





|