Subversion Repositories spk

Rev

Rev 1 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 343
Line 59... Line 59...
59
			this->pictureBox1->Image = this->imageList1->Images[1];
59
			this->pictureBox1->Image = this->imageList1->Images[1];
60
			this->ComboInput->Items->Add(item);
60
			this->ComboInput->Items->Add(item);
61
		}
61
		}
62
		void SetSelectedOption(int index)
62
		void SetSelectedOption(int index)
63
		{
63
		{
-
 
64
			if(index < this->ComboInput->Items->Count)
64
			this->ComboInput->SelectedIndex = index;
65
				this->ComboInput->SelectedIndex = index;
65
		}
66
		}
66
 
67
 
67
		System::String ^GetInput() { if ( !this->ComboInput->Items->Count ) return TextInput->Text; return this->ComboInput->Text; }
68
		System::String ^GetInput() { if ( !this->ComboInput->Items->Count ) return TextInput->Text; return this->ComboInput->Text; }
68
		int GetInputSelected() { return this->ComboInput->SelectedIndex; }
69
		int GetInputSelected() { return this->ComboInput->SelectedIndex; }
69
 
70