Beispiel #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);
        }
Beispiel #2
0
        public void createPrint(flowerProfile flowerProf)
        {
            printCtrl myPrint = new printCtrl();

            myPrint.main(flowerProf);
        }
Beispiel #3
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();
        }
 public void main(flowerProfile flowerProf)
 {
     flowerProf.createImage();
 }