Jx_Man 987 Nearly a Senior Poster Featured Poster

why you using check box?

Jx_Man 987 Nearly a Senior Poster Featured Poster

HI Nessie...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

OK. this is a simple program. i think you have done with this and not need my help again.
happy coding friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Dude Nice Finding :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

dream

Jx_Man 987 Nearly a Senior Poster Featured Poster

146 = 10010010

Jx_Man 987 Nearly a Senior Poster Featured Poster

4515

Jx_Man 987 Nearly a Senior Poster Featured Poster

-879

Jx_Man 987 Nearly a Senior Poster Featured Poster

lake

Jx_Man 987 Nearly a Senior Poster Featured Poster

what a next word kpnprakash???
i add the word for u...

fate
feed
dear

Server

Jx_Man 987 Nearly a Senior Poster Featured Poster

cello

Jx_Man 987 Nearly a Senior Poster Featured Poster

Yes, Really Much...

Do you like chinese food??

Jx_Man 987 Nearly a Senior Poster Featured Poster

2F

Jx_Man 987 Nearly a Senior Poster Featured Poster

1178 :D

Jx_Man 987 Nearly a Senior Poster Featured Poster

CapCay

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

HI...Welcome to Daniweb..
Post your problem on current forum. many people will help u much :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

you're welcome :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

don't waste your time!!

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi BstrucT...Welcome to Daniweb friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

you cannot do it without delete related data.

Jx_Man 987 Nearly a Senior Poster Featured Poster

I notice you used cmd instead of txt....I was wondering if that was a text box you used, because it said Input next to where you input the numbers

you did not understand my program! i m not using cmd instead of text box. i just make it more simple!
what different if you input 3 numbers in a same time with 3 text box than you input 3 numbers one by one with 1 text box?? its a same way to use both, it cause the numbers will sorted to get smallest and largest. so i prefer to use one textbox to input it one by one and its not a instead of textbox!!

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Welcome to Daniweb :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Jenn...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi Lingamurthy...Welcome to daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

i didn't understand..what do you want?? this is a really simple program...

Jx_Man 987 Nearly a Senior Poster Featured Poster

thanks for info friend :)
i will try it.

Jx_Man 987 Nearly a Senior Poster Featured Poster

any
sane
server

Sanguine

Jx_Man 987 Nearly a Senior Poster Featured Poster

jello

Jx_Man 987 Nearly a Senior Poster Featured Poster

Dare Devil

Jx_Man 987 Nearly a Senior Poster Featured Poster

140 = 10001100

Jx_Man 987 Nearly a Senior Poster Featured Poster

4508

Jx_Man 987 Nearly a Senior Poster Featured Poster

tail

Jx_Man 987 Nearly a Senior Poster Featured Poster

-864

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi...Welcome to Daniweb Friend :)

Jx_Man 987 Nearly a Senior Poster Featured Poster

if u using vb.net it means you in wrong forum.
i don't understand for points c and g.
see example in attachment...

Jx_Man 987 Nearly a Senior Poster Featured Poster

i guest you do this in vb.net cause in your example code use class.right??

Jx_Man 987 Nearly a Senior Poster Featured Poster

First think...!!!
i want to know in vb 6 or vb.net you worked this project??

Jx_Man 987 Nearly a Senior Poster Featured Poster

as jeff said your code result is 385.
i add message box to show the result. see the red one.

Private Sub MysteryCode_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MysteryCode.Click
        
        ' Determines MYSTERVALUE base on number entered by user
        Dim Y As Integer, X As Integer, MYSTERYVALUE As Integer

        ' initialization phase
        X = 1 'prepare to loop
        MYSTERYVALUE = 0 'set MYSTERVALUE To 0

        ' processing phase
        While X <= 10 ' loop 10 times
            Y = X ^ 2 ' X raised to the power of 2
            MYSTERYVALUE = MYSTERYVALUE + Y ' add MYSTERVALUE to Y
            X = X + 1 ' add 1 to X
        End While

        ' display MYSTERYVALUE 
        Text = "Value is " & MYSTERYVALUE
        MsgBox(Text)
    End Sub
Jx_Man 987 Nearly a Senior Poster Featured Poster

this code i posting to you in your previous thread.
delete all variable declared in your code. you don't have to declare cause you have it as label name.

Dim txtInput1 As Double
Dim txtInput2 As Integer
Dim txtInput As Integer
Dim Sum As Integer
Dim Average As Integer
Dim Larger As Integer
Dim Smallest As Integer

so you just delete all variable and use label to display result.
and my question is, this program do in vb.net???

Jx_Man 987 Nearly a Senior Poster Featured Poster

see this LINK

Jx_Man 987 Nearly a Senior Poster Featured Poster

Hi..Welcometo Daniweb Friend :D

Jx_Man 987 Nearly a Senior Poster Featured Poster

who said i want to do this work for u??

but they dont work for some silly reason

i just want to know why it cannot work..

Jx_Man 987 Nearly a Senior Poster Featured Poster

i means what project of that?

Jx_Man 987 Nearly a Senior Poster Featured Poster

you're welcome :)

Estella commented: helpfull person +1
Jx_Man 987 Nearly a Senior Poster Featured Poster

what u want to do?

Jx_Man 987 Nearly a Senior Poster Featured Poster

use timer & progress bar.

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        ProgressBar1.Value += 1

        If ProgressBar1.Value <= 20 Then

            Label1.Text = "5"

        ElseIf ProgressBar1.Value <= 40 Then

            Label1.Text = "4"

        ElseIf ProgressBar1.Value <= 60 Then

            Label1.Text = "3"

        ElseIf ProgressBar1.Value <= 80 Then

            Label1.Text = "2"

        ElseIf ProgressBar1.Value <= 99 Then

            Label1.Text = "1"
        End If
        If ProgressBar1.Value = 100 Then
            Label1.Text = "Time's Up"
            Timer1.Dispose()
        End If
    End Sub
Jx_Man 987 Nearly a Senior Poster Featured Poster

using database?what a database?

Jx_Man 987 Nearly a Senior Poster Featured Poster

show us the effort :)