Click here to Skip to main content
15,905,679 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Install True Type Font Pin
Dave Kreskowiak23-May-07 3:46
mveDave Kreskowiak23-May-07 3:46 
QuestionOffline Test [modified] Pin
G.Manivannan23-May-07 0:51
G.Manivannan23-May-07 0:51 
AnswerRe: Offline Test Pin
Dave Kreskowiak23-May-07 5:56
mveDave Kreskowiak23-May-07 5:56 
GeneralRe: Offline Test Pin
G.Manivannan23-May-07 18:23
G.Manivannan23-May-07 18:23 
GeneralRe: Offline Test Pin
Dave Kreskowiak24-May-07 4:10
mveDave Kreskowiak24-May-07 4:10 
GeneralRe: Offline Test Pin
G.Manivannan28-May-07 20:47
G.Manivannan28-May-07 20:47 
GeneralRe: Offline Test Pin
Dave Kreskowiak29-May-07 13:13
mveDave Kreskowiak29-May-07 13:13 
GeneralRe: Offline Test Pin
G.Manivannan30-May-07 0:06
G.Manivannan30-May-07 0:06 
Creating radiobutton is not my problem? Only getting the value of all runtime radiobuttons at the single button click is my problem. see the following code:

Public Function Createcontrols(ByVal intidx As Integer)
radio1 = New RadioButton()
radio2 = New RadioButton()
radio1.Top = r1
radio1.Left = x
radio1.Height = 25
radio1.Width = 150
radio1.Text = ans1
Me.Controls.Add(radio1)
radio2.Top = r1
radio2.Left = r2
radio2.Height = 25
radio2.Width = 150
radio2.Text = ans2
Me.Controls.Add(radio2)
Panel1.Height = 25
Panel1.Width = 850
Panel1.Left = x
Panel1.Top = p1
Me.Controls.Add(Panel1)
Panel1.Controls.Add(radio1)
Panel1.Controls.Add(radio2)
end function

For intIdx = 0 To 4
Createcontrols(intIdx)
Next

by the above code i can get 5 radio1 and 5 radio2 on 5 panel control.
It is perfectly working.

But the problem is if I check any one radio button on all panel controls at a time (ie)keeping all 5 radio button's checked = true and then click submit button to get all checked radio button values.(ie) I have to print all checked radio buttons text in the msgbox.How can i print?

Regards,
G.Manivannan M.Sc.,[IT],
Software Programmer (VBA),
AKUVA Infotech, Bangalore.

GeneralRe: Offline Test Pin
Dave Kreskowiak30-May-07 14:31
mveDave Kreskowiak30-May-07 14:31 
Questionslow down performance when converting word to html Pin
koolprasad200323-May-07 0:32
professionalkoolprasad200323-May-07 0:32 
AnswerRe: slow down performance when converting word to html Pin
Dave Kreskowiak23-May-07 3:38
mveDave Kreskowiak23-May-07 3:38 
QuestionPrinting bug vb.net Pin
js8008522-May-07 21:56
js8008522-May-07 21:56 
AnswerRe: Printing bug vb.net Pin
Dave Kreskowiak23-May-07 3:36
mveDave Kreskowiak23-May-07 3:36 
GeneralRe: Printing bug vb.net Pin
js8008523-May-07 6:20
js8008523-May-07 6:20 
GeneralRe: Printing bug vb.net Pin
Dave Kreskowiak23-May-07 6:35
mveDave Kreskowiak23-May-07 6:35 
GeneralRe: Printing bug vb.net Pin
js8008523-May-07 6:53
js8008523-May-07 6:53 
GeneralRe: Printing bug vb.net Pin
Dave Kreskowiak23-May-07 7:28
mveDave Kreskowiak23-May-07 7:28 
GeneralRe: Printing bug vb.net Pin
js8008523-May-07 23:40
js8008523-May-07 23:40 
QuestionWhere do we use panel, FlowLayoutPanel and TableLayoutPanel control Pin
Mekong River22-May-07 21:19
Mekong River22-May-07 21:19 
AnswerRe: Where do we use panel, FlowLayoutPanel and TableLayoutPanel control Pin
The ANZAC22-May-07 21:37
The ANZAC22-May-07 21:37 
GeneralRe: Where do we use panel, FlowLayoutPanel and TableLayoutPanel control Pin
Mekong River22-May-07 22:43
Mekong River22-May-07 22:43 
GeneralRe: Where do we use panel, FlowLayoutPanel and TableLayoutPanel control Pin
The ANZAC22-May-07 22:59
The ANZAC22-May-07 22:59 
GeneralRe: Where do we use panel, FlowLayoutPanel and TableLayoutPanel control Pin
Mekong River22-May-07 23:34
Mekong River22-May-07 23:34 
QuestionError System.data.sqlClient.SqlException Help Pin
Vimalsoft(Pty) Ltd22-May-07 21:09
professionalVimalsoft(Pty) Ltd22-May-07 21:09 
AnswerRe: Error System.data.sqlClient.SqlException Help Pin
klaydze22-May-07 22:56
klaydze22-May-07 22:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.