Alright Nuke,
Just for you I am experimenting with the user contol. So far it has been fairly painless to just copy over all the controls and then the code. It isn't cutting off the right side anymore but we will see how it ends up.
User Profile
Collapse
-
Thank you for the reply Nuke. The biggest reason is so that I do not have to re-design the controls and risk destroying something. It works great for some forms but not all of them.Leave a comment:
-
Try this for setting your variables
score = CINT(intscore.t ext)
mark= CINT(intmark.te xt)
percent= CINT(percent.te xt)
Also, you may want to consider using Decimal or another variable type for your decleration. Integers are only hole numbers 1, 2 3, ect. so if you percentage ends up as a decimal it might cause issuesLeave a comment:
-
Form cut off when displayed in splitcontainer
I have a form that is currently being displayed in a split container with panel 1 holding a treeview and panel2 holding the form. my code for this is here. This is when selecting a item from the treeview.
Code:Dim CurrentForm As New Form Select Case TreeView1.SelectedNode.Text Case Is = "Customer" CurrentForm = Customer Case Is = "Quote"
No activity results to display
Show More
Leave a comment: