Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements

20 Posted Topics

Member Avatar for 21303359
Member Avatar for Parvathiapril8
Re: Void

Void in java means that no value will be returned. If your method is of type int, that method will return an integer value... if your method is of type string, that method will return a string value... but a void method will return nothing.

Member Avatar for JamesCherrill
0
264
Member Avatar for 21310051
Member Avatar for 21310051

what are the advantages of using radio button lists and checkbox lists instead of individual radio buttons and checkboxes?

Member Avatar for Fenrir()
0
164
Member Avatar for romain2193
Member Avatar for romain2193

int position = ListBox1.SelectedIndex; if(position >= 0) { ListBox1.Items.RemoveAt(position); } else { //output message asking the user to select an item from the list }

Member Avatar for 21310051
-1
109
Member Avatar for romain2193
Member Avatar for romain2193

You first create an object link to the data class : cData obj = new cData(); GridView1.DataSource = obj.MethodName();** GridView1.DataBind(); ** MethodName() refers to a method in the data class that is connecting to the database

Member Avatar for 21310051
0
122
Member Avatar for 21310051

How do you take a website that has been created using visual studio and C# and deploy it on the internet?

Member Avatar for 21345570
0
116
Member Avatar for 21310051
Member Avatar for 21310051

"&nbsp" appears a lot in the source code of a form, what is the purpose of this?

Member Avatar for gauravrana
0
116
Member Avatar for 21334929

if(RadioButtonList1.SelectedIndex > -1) { code you want the program to execute if a radio button is selected } else { output statement asking the user to selecct a radio button }

Member Avatar for 21310051
1
322
Member Avatar for 21310051

what is the difference between a partial class and an abstract class?

Member Avatar for YA RAMSAMKER
0
71
Member Avatar for 21345572

If you are linking to SQL server it would be best to use the Structured Query Language. As an alternative you could use the built-in database option in visual studio

Member Avatar for 21310051
0
240
Member Avatar for 21345572
Member Avatar for 21310051
0
96
Member Avatar for 21310051

when using a database in a program would it be better to use SQL server or the built-in option in visual studio?

Member Avatar for YA RAMSAMKER
0
108
Member Avatar for 21310051

why do you sometimes have a partial class with only accessor and mutator methods (get and set)?

0
70
Member Avatar for 21310051
Member Avatar for 21310051
Member Avatar for 21310051

The End.