private void timer1_Tick(object sender, EventArgs e) { if (Index < Usuarios.Count) { string IP = IPTools.Skype2IP(Usuarios[Index].Handle); listBox1.Items[Index] = "Tentando..."; if (!IP.Contains("No")) { listBox2.Items.Add(Usuarios[Index].FullName + "-" + IP); } Index++; } else { timer1.Stop(); } }
void Apis(int id) { int i = id; try { string IP = IPTools.Skype2IP(Usuarios[i].Handle); if (IP.Contains("No") == true) { AppendTextBox1("Não foi possivel pegar"); } else { string Loc = IPTools.IP2Loc(IP); AppendTextBox1(IP); AppendTextBox2(Loc); } } catch (Exception ex) { } }