Click here to Skip to main content
15,884,904 members
Home / Discussions / C#
   

C#

 
GeneralRe: dropdown to enum Pin
musefan11-Apr-11 5:40
musefan11-Apr-11 5:40 
GeneralRe: dropdown to enum Pin
OriginalGriff11-Apr-11 5:48
mveOriginalGriff11-Apr-11 5:48 
GeneralRe: dropdown to enum Pin
BobJanova11-Apr-11 5:39
BobJanova11-Apr-11 5:39 
GeneralRe: dropdown to enum Pin
OriginalGriff11-Apr-11 5:49
mveOriginalGriff11-Apr-11 5:49 
GeneralRe: dropdown to enum Pin
fififlowertot11-Apr-11 5:50
fififlowertot11-Apr-11 5:50 
GeneralRe: dropdown to enum Pin
OriginalGriff11-Apr-11 6:03
mveOriginalGriff11-Apr-11 6:03 
GeneralRe: dropdown to enum Pin
BobJanova11-Apr-11 22:16
BobJanova11-Apr-11 22:16 
AnswerRe: dropdown to enum Pin
Alan N11-Apr-11 5:53
Alan N11-Apr-11 5:53 
If the item list of the combobox is fixed and contains valid enum values only, then it is ok to do a direct cast of the SelectedItem.

C#
enum Fruit { Quince, Gooseberry, Damson }

public void InitialiseControls() {
  FruitComboBox.DataSource = Enum.GetValues(typeof(Fruit));
}

private void EatFruitBtn_Click(object sender, EventArgs e) {
  Fruit yummy = (Fruit)FruitComboBox.SelectedItem;
}

Alan.
QuestionHow to sync Data of 2 c# projects? Pin
akosidandan11-Apr-11 3:04
akosidandan11-Apr-11 3:04 
AnswerRe: How to sync Data of 2 c# projects? Pin
Wayne Gaylard11-Apr-11 3:11
professionalWayne Gaylard11-Apr-11 3:11 
GeneralRe: How to sync Data of 2 c# projects? Pin
akosidandan11-Apr-11 3:28
akosidandan11-Apr-11 3:28 
GeneralRe: How to sync Data of 2 c# projects? Pin
Wayne Gaylard11-Apr-11 3:36
professionalWayne Gaylard11-Apr-11 3:36 
GeneralRe: How to sync Data of 2 c# projects? Pin
akosidandan11-Apr-11 3:41
akosidandan11-Apr-11 3:41 
GeneralRe: How to sync Data of 2 c# projects? Pin
Wayne Gaylard11-Apr-11 3:52
professionalWayne Gaylard11-Apr-11 3:52 
QuestionNot able to see the dll which is registered successfully in cache Pin
meeram39511-Apr-11 1:44
meeram39511-Apr-11 1:44 
AnswerRe: Not able to see the dll which is registered successfully in cache PinPopular
Wayne Gaylard11-Apr-11 2:01
professionalWayne Gaylard11-Apr-11 2:01 
GeneralRe: Not able to see the dll which is registered successfully in cache Pin
meeram39511-Apr-11 2:13
meeram39511-Apr-11 2:13 
GeneralRe: Not able to see the dll which is registered successfully in cache Pin
meeram39511-Apr-11 2:16
meeram39511-Apr-11 2:16 
GeneralRe: Not able to see the dll which is registered successfully in cache Pin
Wayne Gaylard11-Apr-11 2:21
professionalWayne Gaylard11-Apr-11 2:21 
Questionread pst file and convert in Thunderbird,live [modified] Pin
situ2111-Apr-11 0:55
situ2111-Apr-11 0:55 
AnswerRe: read pst file and convert in Thunderbird,live Pin
Dave Kreskowiak11-Apr-11 1:13
mveDave Kreskowiak11-Apr-11 1:13 
GeneralRe: read pst file and convert in Thunderbird,live Pin
situ2111-Apr-11 2:06
situ2111-Apr-11 2:06 
GeneralRe: read pst file and convert in Thunderbird,live Pin
Dave Kreskowiak11-Apr-11 2:21
mveDave Kreskowiak11-Apr-11 2:21 
GeneralRe: read pst file and convert in Thunderbird,live Pin
Pete O'Hanlon11-Apr-11 2:38
mvePete O'Hanlon11-Apr-11 2:38 
GeneralRe: read pst file and convert in Thunderbird,live Pin
situ2111-Apr-11 3:00
situ2111-Apr-11 3:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.