Click here to Skip to main content
15,893,564 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
frns tel me how can i check the radiobutton by default and when its checked the curso has to be in textbox1. pls help me wih the coding in vb.net.
Posted

1 solution

It's very easy.Set the Checked Property of RadioButton to True. :)
VB
If RadioButton1.Checked = True Then
   TextBox1.Focus()
End If
 
Share this answer
 
v2
Comments
jus coding 7-Dec-11 2:46am    
bro can u jus send the coding for browse button in vb.net.
browse button to browse the text file from system
Manoj K Bhoir 8-Dec-11 2:47am    
Drag OpenFileDialogBox in your Application from ToolBox then write following code on your Browse Button :

If OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
Dim SelectedFile As String = OpenFileDialog1.SafeFileName
End If

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900