Membersihkan Seluruh Control/Object pada Form dengan VB.NET dan C#

Setelah beberapa hari yang lalu saya memposting tentang Membuat Placeholder pada Textbox dengan VB.NET dan C#

pada postingan kali ini saya akan membahas tentang Membersihkan Seluruh Control pada Form dengan VB.NET dan C#.
Terkadang ketika membuat sebuah form dimana form tersebut memiliki banyak control seperti textbox, listview, listbox atau yang lainnya, lalu anda ingin membersihkan isi dari control tersebut misalnya saja pada textbox dengan script textbox1.Text = "", mungkin jika hanya beberapa textbox akan mudah namum bagaiman jika kita memiliki banyak textbox dan juga control - control yang lainnya? kita pasti akan menggunakan banyak code untuk membersihkan isi dari control tersebut, saya juga terkadang merasa lelah jika melakukan itu terus - menerus. Tapi disini saya akan share source code hasil cari - cari google untuk Membersihkan Seluruh Control/Object pada Form dengan VB.NET dan C# dengan mudah dan cepat

1. Buka visual studio yang anda punya

2. Buatlah sebuah fungsi seperti dibawah ini

VBNET
01Private Sub Clear(frm As Form)
02        For Each obj As Object In frm.Controls
03            If TypeOf obj Is TextBox Or TypeOf obj Is MaskedTextBox Or TypeOf obj Is RichTextBox Or TypeOf obj Is ComboBox Then 'jika tipe obj adalah textbox atau maskedtextbox atau richtextbox atau combobox
04                obj.Text = ""
05            ElseIf TypeOf obj Is ListView Or TypeOf obj Is ListBox Or TypeOf obj Is ComboBox Then ' jika tipe obj adalah listview atau listbox atau combobox
06                obj.Items.Clear()
07            ElseIf TypeOf obj Is DataGridView Then ' jika tipe obj adalah datagridview
08                obj.Rows.Clear()
09            ElseIf TypeOf obj Is PictureBox Then ' jika tipe obj adalah picturebox
10                obj.Image = Nothing
11            ElseIf TypeOf obj Is CheckBox Or TypeOf obj Is RadioButton Then ' jika tipe obj adalah checkebox atau radiobutton
12                obj.Checked = False
13            ElseIf TypeOf obj Is NumericUpDown Then ' jika tipe obj adalah numericupdown
14                obj.Value = 0
15            End If
16        Next
17    End Sub
C#
01private void Clear(Form frm)
02        {
03            foreach (object obj in frm.Controls)
04            {
05                if (obj.GetType() == typeof(TextBox)) // jika tipe obj adalah textbox
06                {
07                    TextBox txtbox = (TextBox)obj;
08                    txtbox.Text = "";
09                }
10                else if (obj.GetType() == typeof(MaskedTextBox)) // jika tipe obj adalah maskedtextbox
11                {
12                    MaskedTextBox msktextbox = (MaskedTextBox)obj;
13                    msktextbox.Text = "";
14                }
15                else if (obj.GetType() == typeof(NumericUpDown)) // jika tipe obj adalah numericupdown
16                {
17                    NumericUpDown numeric = (NumericUpDown)obj;
18                    numeric.Value = 0;
19                }
20                else if (obj.GetType() == typeof(CheckBox)) // jika tipe obj adalah checkbox
21                {
22                    CheckBox chkbox = (CheckBox)obj;
23                    chkbox.Checked = false;
24                }
25                else if (obj.GetType() == typeof(RadioButton)) // jika tipe obj adalah radiobutton
26                {
27                    RadioButton rbutton = (RadioButton)obj;
28                    rbutton.Checked = false;
29                }
30                else if (obj.GetType() == typeof(ComboBox)) // jika tipe obj adalah combobox
31                {
32                    ComboBox cbox = (ComboBox)obj;
33                    cbox.Items.Clear();
34                    cbox.Text = "";
35                }
36                else if (obj.GetType() == typeof(PictureBox)) // jika tipe obj adalah picturebox
37                {
38                    PictureBox pbox = (PictureBox)obj;
39                    pbox.Image = null;
40                }
41                else if (obj.GetType() == typeof(RichTextBox)) // jika tipe obj adalah richtextbox
42                {
43                    RichTextBox rtbox = (RichTextBox)obj;
44                    rtbox.Text = "";
45                }
46                else if (obj.GetType() == typeof(ListBox)) // jika tipe obj adalah listbox
47                {
48                    ListBox lstbox = (ListBox)obj;
49                    lstbox.Items.Clear();
50                }
51                else if (obj.GetType() == typeof(ListView)) // jika tipe obj ada listview
52                {
53                    ListView lv = (ListView)obj;
54                    lv.Items.Clear();
55                }
56                else if (obj.GetType() == typeof(DataGridView)) // jika tipe obj adalah datagridview
57                {
58                    DataGridView dgv = (DataGridView)obj;
59                    dgv.Rows.Clear();
60                }
61            }
62        }
1
Anda juga bisa menyesuaikan control apa saja yang anda butuhkan dengan menambahkan IF baru atau yang lainnya

3. Untuk cara penggunaannya seperti dibawah ini

VB.NET
1Clear(Me)
C#
1Clear(this)

Berikut beberapa screenshotnya

Membersihkan Seluruh Control/Object pada Form dengan VB.NET dan C#

Membersihkan Seluruh Control/Object pada Form dengan VB.NET dan C#

Anda dapat mendownload source codenya dibawah ini
VB.NET | C# |
Untuk password silahkan klik disini
Previous
Next Post »
Thanks for your comment