|
You've 3 Textboxes where you can write something, a radiobox and a button.
U_Name is a string, U_B_D is a date value, U_Gender is a bool(only true/false) and a U_C_F int value.
This whole thing is a function which gets called if you click on button1.
U_name gets the text from textbox1, u_b_d from textbox2, if radiobox is true then u_gender gets true else false, u_c_f gets the value from textbox3.
Then you've a label(output text) it gets these(U_Name & vbCrLf & U_B_D &vbCrLf & U_Gender & vbCrLf & U_C_F) values, I guess as a string.
I think this is Visual basic code...sorry I've never worked with it...
|