TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
DGCODERS
NA
7
0
USING RADIO BUTTON IN FORMS
Mar 1 2004 2:53 AM
FORM 1: CONTAINS 1COMMAND BUTTON & 4 RADIO BUTTON I WANT TO CHECK WHICH RADIO BUTTON IS CHECKED. USING COMMAND BUTTON TRIGGER FOR EG Private Sub btn_next_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_next.Click If opt_Hex Then Dim hex As New frm_hex() Me.Hide() hex.Show() End If If opt_Bin Then Dim bin As New frm_bin() Me.Hide() bin.Show() End If If opt_dec Then Dim dec As New frm_dec() Me.Hide() dec.Show() End If If opt_oct Then Dim oct As New frm_oct() Me.Hide() oct.Show() End If End Sub ABOVE I CHECK THE OPT_DEC IS TRUE OR FALSE AN OK CODE BUT COMPILERS MAKES AN ERROR PLEASE HELP ME
Reply
Answers (
3
)
RE: value of e
Extracting text from PDF file?