示例#1
0
 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();
     }
 }
示例#2
0
        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)
            {
            }
        }