QUOTE(jacobjordan @ 1 Jul, 2008 - 04:10 PM)

I don't exactly understand what you want, it would help a lot if you would show your code. If all you want to do is make a label say something like "Hello: 394", that isn't hard at all. Just say something like
vb
Label1.Text = "Hello: 394"
If the number 394 is stored in a variable, then do
vb
Dim int As Integer = 394
Label1.Text = "Hello: " & int
Well, I haven't started my code yet because I have to form a sentinel for some calculations. I need to have three labels and a textbox and have the user enter a sequence of numbers in the text box then end it with a -99 and the labels need to say min, max and average. I already have a plan for the code to be written but i was just trying to figure out how to have an output show up along side the label once I have the user press calculate first. Would I need to make this happen under the calculate button? Sorry, I just like to plan before I write the code..... Thanks for helping.