Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~95 People Reached
Favorite Forums

1 Posted Topic

Member Avatar for adityavarma999

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO; using System.Collections; namespace FileReadFormsAuto { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { if (comboBox1.SelectedItem.Equals("TV")) { comboBox2.Items.Clear(); comboBox2.Items.Add("TV.ON"); comboBox2.Items.Add("TV.OFF"); comboBox2.Items.Add("TV.MUTE"); } …

Member Avatar for thines01
0
95

The End.