C
C#2mo ago
Nightswyng

Utilizing List boxes in group box

I tend to get myself thinking in circles. So the assignment is to convert from a selection. Inches, feet, and yards to its selected equivalent. With also if the same is selected on both sides, it will show the exact number. ie, 12 inches will show 12 inches in the converted distance. I am missing something or a step and can't pinpoint how to put the Yards, Inches, and Feet into my commands and they are reading red. Please help me figure this out. https://paste.mod.gg/gzgpvhiqfetj/0
BlazeBin - gzgpvhiqfetj
A tool for sharing your source code with the world!
No description
25 Replies
Pobiega
Pobiega2mo ago
Look at what variables you have declared, then read the error messages and look where the red squiggles are. fromGroupBox is declared as int fromGroupBox = 0; (and is never reassigned) your switch is then having its cases be strings... you can't compare strings to ints, so that doesnt work
Nightswyng
NightswyngOP2mo ago
so what should i do? The course book shows similar to this so I am a bit confused on how to resolve this
Pobiega
Pobiega2mo ago
well for one, you'll need to access the actual listbox control and get its value currently you are not checking what the user has selected you have a lot of code that seems like it should do that, but its acting on your 0 declared value, not the actual thing the user selected
Nightswyng
NightswyngOP2mo ago
So should I remove the string code? I am sorry this chapter really confused me compared to the other ones
Pobiega
Pobiega2mo ago
dont delete anything, but lets take a step back how do we check what the user has selected in the FROM list?
Nightswyng
NightswyngOP2mo ago
if statements?
Pobiega
Pobiega2mo ago
one step even further back how do we access that information?
Nightswyng
NightswyngOP2mo ago
Declare the variables
Pobiega
Pobiega2mo ago
wrong the variables are just variables they dont magically contain the values from the UI we must access the control's properties you are correctly doing it for the distance the user entered
Nightswyng
NightswyngOP2mo ago
the double.parse
Pobiega
Pobiega2mo ago
but not for your to/from lists not the parse itself what does double.Parse do?
Nightswyng
NightswyngOP2mo ago
its a string for numeric values
Pobiega
Pobiega2mo ago
I uh.. don't agree :p its a method that takes a string in, and returns a double, if the strings content is something that looks like a number
Nightswyng
NightswyngOP2mo ago
ok so its taking the numbers from the text box to calculate with it inputed in the commands
Pobiega
Pobiega2mo ago
The way you used it, yes but it doesnt magically know what to parse you have to give it a string, in this case, the text from the textbox distance = double.Parse(distanceTextBox.Text); what part of this is the UI control?
Nightswyng
NightswyngOP2mo ago
the Distance Text Box
Pobiega
Pobiega2mo ago
correct but we are not looking for the distance right now, we need what the user picked from the "To" box... how would we go about getting that?
Nightswyng
NightswyngOP2mo ago
so I need to do the messagebox.show?
Pobiega
Pobiega2mo ago
nope you have the UI controls already, I can see them in your screenshot but your code that you pasted isnt accessing them
Nightswyng
NightswyngOP2mo ago
Do I need to do the double inches, double feet?
Pobiega
Pobiega2mo ago
?
Nightswyng
NightswyngOP2mo ago
Like at the top with the double distance, specifying them at the beginning? I got how to do checked and radio box but this one wasn't explained well in the book
Pobiega
Pobiega2mo ago
Hm. Want to jump on a screenshare real quick? Might just be easier to show you
Nightswyng
NightswyngOP2mo ago
Sure let me switch to my laptop ok ready
Pobiega
Pobiega2mo ago
#vc-3

Did you find this page helpful?