Me.pass = Conversions.ToString(CDbl((((Conversions.ToDouble((4 & 3)) - Conversions.ToDouble(4)) + (Conversions.ToDouble(2) * Conversions.ToDouble(1))) / Conversions.ToDouble(2))))

Please help me find the value of Me.pass

I've been trying for a while but I simply cant get it :( Please help...
Also, it would be nice if you could explain it, thank you...

Well, if you're not setting the value somewhere else, then the value of Me.pass is what you just set it to in your codesnippet.

I have no idea as to why you have an ampersand in the first ToDouble method, especially considering that the ampersand is a string concatinator, which would make that value 43.
So the value of Me.pass would be this:
((43 - 4) + (2 * 1)) / 2 = (39 + 2) / 2 = 41 / 2 = 20.5

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.