int index;// 1-függőben 2-csomagolt 3-Raport

        void ListFrisites()
        {
            listBox1.Items.Clear();
            termekKeres.Clear();
            vevoKereset.Clear();
            if (index == 1 || index == 2)
            {
                foreach (VevoRendelesUser item in vevo)
                {
                    listBox1.Items.Add(item);
                    vevoKereset.Add(item);
                    foreach (VevoRendelesTermek it in termek)
                    {
                        if (it.IdVevo == item.VevoID)
                        {
                            listBox1.Items.Add(it);
                            termekKeres.Add(it);
                        }
                    }
                    listBox1.Items.Add("");
                }
            }
            else if (index == 3)
            {
                foreach (VevoRendelesUser item in raport)
                {
                    vevoKereset.Add(item);
                    listBox1.Items.Add(item);
                    foreach (VevoRendelesTermek it in termek)
                    {
                        if (it.IdVevo == item.VevoID)
                        {
                            listBox1.Items.Add(it);
                            termekKeres.Add(it);
                        }
                    }
                    listBox1.Items.Add("");
                }
            }
            else if (index == 4)
            {
                foreach (VevoRendelesUser item in visszaFug)
                {
                    vevoKereset.Add(item);
                    listBox1.Items.Add(item);
                    foreach (VevoRendelesTermek it in termek)
                    {
                        if (it.IdVevo == item.VevoID)
                        {
                            listBox1.Items.Add(it);
                            termekKeres.Add(it);
                        }
                    }
                    listBox1.Items.Add("");
                }
            }
            else if (index == 5)
            {
                foreach (VevoRendelesUser item in visszaKesz)
                {
                    vevoKereset.Add(item);
                    listBox1.Items.Add(item);
                    foreach (VevoRendelesTermek it in termek)
                    {
                        if (it.IdVevo == item.VevoID)
                        {
                            listBox1.Items.Add(it);
                            termekKeres.Add(it);
                        }
                    }
                    listBox1.Items.Add("");
                }
            }
            else if (index == 6 || index == 7)
            {
                foreach (TermekHelyezes item in termekLok)
                {
                    listBox1.Items.Add(item);
                }
            }
            else if (index == 8)
            {
                foreach (TermekRossz item in termekLok)
                {
                    listBox1.Items.Add(item);
                }
            }
        }