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

C#

 
GeneralRe: how svd(singular decompostion value) works for matrix? Pin
Isawyouoo22-Nov-17 5:00
Isawyouoo22-Nov-17 5:00 
GeneralRe: how svd(singular decompostion value) works for matrix? Pin
OriginalGriff22-Nov-17 8:26
mveOriginalGriff22-Nov-17 8:26 
GeneralRe: how svd(singular decompostion value) works for matrix? Pin
Isawyouoo23-Nov-17 11:19
Isawyouoo23-Nov-17 11:19 
Questioncan't add combobox Items (C#) Pin
Dunnewijk22-Nov-17 3:43
Dunnewijk22-Nov-17 3:43 
AnswerRe: can't add combobox Items (C#) Pin
Pete O'Hanlon22-Nov-17 4:48
mvePete O'Hanlon22-Nov-17 4:48 
GeneralRe: can't add combobox Items (C#) Pin
Dunnewijk22-Nov-17 5:04
Dunnewijk22-Nov-17 5:04 
GeneralRe: can't add combobox Items (C#) Pin
Dave Kreskowiak22-Nov-17 5:15
mveDave Kreskowiak22-Nov-17 5:15 
GeneralRe: can't add combobox Items (C#) Pin
Sascha Lefèvre22-Nov-17 5:20
professionalSascha Lefèvre22-Nov-17 5:20 
Dave's answer is the one you should be following. Just for completeness: The reason why Visual Studio shows a squiggly red line under Items is because mycbox is of the type Control and not ComboBox, and as a Control it doesn't have an Items-property. You verified that it actually is a ComboBox but that doesn't "automagically" make the variable mycbox of that type. You would have to cast it to ComboBox before being able to access its Items-property:
C#
((ComboBox)mycbox).Items.Add("een");

If you get squiggly red lines place the mouse cursor on it and Visual Studio will (usually) give you a pretty good hint at what's wrong with it in a popup-tooltip.
If the brain were so simple we could understand it, we would be so simple we couldn't. — Lyall Watson

GeneralRe: can't add combobox Items (C#) Pin
Dunnewijk22-Nov-17 6:56
Dunnewijk22-Nov-17 6:56 
GeneralRe: can't add combobox Items (C#) Pin
Sascha Lefèvre22-Nov-17 7:55
professionalSascha Lefèvre22-Nov-17 7:55 
AnswerRe: can't add combobox Items (C#) Pin
Dave Kreskowiak22-Nov-17 5:02
mveDave Kreskowiak22-Nov-17 5:02 
GeneralRe: can't add combobox Items (C#) Pin
Dunnewijk22-Nov-17 6:59
Dunnewijk22-Nov-17 6:59 
QuestionHow to filter like or = with a column in reportviewer C# Pin
C Sharp coder 201821-Nov-17 4:56
C Sharp coder 201821-Nov-17 4:56 
Rant[REPOST] How to filter like or = with a column in reportviewer C# Pin
Richard Deeming21-Nov-17 5:03
mveRichard Deeming21-Nov-17 5:03 
Questionhow i distinguish scan or keyboard value ? in windows ce ?? Pin
Member 1284514418-Nov-17 1:52
Member 1284514418-Nov-17 1:52 
AnswerRe: how i distinguish scan or keyboard value ? in windows ce ?? Pin
OriginalGriff18-Nov-17 2:22
mveOriginalGriff18-Nov-17 2:22 
AnswerRe: how i distinguish scan or keyboard value ? in windows ce ?? Pin
jschell20-Nov-17 6:30
jschell20-Nov-17 6:30 
GeneralNullable reference types in C# Pin
jschell17-Nov-17 10:38
jschell17-Nov-17 10:38 
GeneralRe: Nullable reference types in C# Pin
Eddy Vluggen18-Nov-17 0:54
professionalEddy Vluggen18-Nov-17 0:54 
GeneralRe: Nullable reference types in C# Pin
jschell20-Nov-17 6:10
jschell20-Nov-17 6:10 
GeneralRe: Nullable reference types in C# Pin
Eddy Vluggen20-Nov-17 6:23
professionalEddy Vluggen20-Nov-17 6:23 
GeneralRe: Nullable reference types in C# Pin
jschell20-Nov-17 6:36
jschell20-Nov-17 6:36 
GeneralRe: Nullable reference types in C# Pin
Eddy Vluggen20-Nov-17 6:37
professionalEddy Vluggen20-Nov-17 6:37 
QuestionC# and SQL application help Pin
Member 1352717817-Nov-17 6:35
Member 1352717817-Nov-17 6:35 
GeneralRe: C# and SQL application help Pin
Sascha Lefèvre17-Nov-17 7:07
professionalSascha Lefèvre17-Nov-17 7:07 

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.