Ejemplo n.º 1
0
        //opens temporary flower result profile
        private void Display_Flower(int result, string images)
        {
            flowerProfile prof = new flowerProfile(flowers[result].getEnglishName(), flowers[result].getLatinName(),
                                                   flowers[result].getBotanicalFam(), notes[result], images, ids[result], userAcctType);

            prof.ShowDialog(this);
        }
Ejemplo n.º 2
0
        public void createGUI(string eng, string lat, string bot, string note, string image, int id, int acctType)
        {
            flowerProfile prof = new flowerProfile(eng, lat, bot, note, image, id, acctType);

            prof.ShowDialog();
        }