Question : vSphere Client hangs when resetting VM, some times

I have the most recent version of the vSphere client on my PC and I am connecting to a newly installed test ESXi 4 host and some times the vsphere client hangs when I tell it to reset a server, not always but when it hangs I have to kill the client. There doens't appear to be anything wrong on the host server.

Is there something wrong with my PC or is there a configuration problem related to teh ESXi host?

Thanks,

Answer : vSphere Client hangs when resetting VM, some times

Hi!

see this as well. Images have some description to understand.


-Shahan
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
private void button1_Click(object sender, EventArgs e)
        {
            dataGridView1.Columns.Add("Autonumber", "Autonumber");
            dataGridView1.Columns.Add("Name", "Name");
            dataGridView1.Columns.Add("Address", "Address");
            for (int i = 0; i < 4; i++)
            {
                DataGridViewRow dr = new DataGridViewRow();
                dr.CreateCells(dataGridView1,new object[] {(i+1), "Shahan" + (i+1),"fdsfasfds"});
                dataGridView1.Rows.Add(dr);  
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
                dataGridView1.Rows.RemoveAt(2); //to remove 3rd record; 3-1 = 2 , because index is zero-based
                for (int i = 2; i < 4-1; i++) // 4-1, because 1 row has been deleted.
                    dataGridView1.Rows[i].Cells[0].Value = ((int)dataGridView1.Rows[i].Cells[0].Value) - 1;
        }
Random Solutions  
 
programming4us programming4us