Ricardo Goncalves Posted June 20, 2018 at 10:19 AM Report #611044 Posted June 20, 2018 at 10:19 AM Boas, Estou a tentar passar o valor inserido numa TextBox para neste caso uma Label , mas tenho sempre o erro " Cannot implicitly convert type 'bool' to 'string' " ou seja que a Variavel "Value" que defeni como string, é Bool e não string. private void button1_Click(object sender, EventArgs e) { NumberStyles style; CultureInfo culture; double number; string value; style = NumberStyles.AllowDecimalPoint; culture = CultureInfo.CreateSpecificCulture("pt-PT"); value=textBox1.Text; label1.Text = Double.TryParse(value, style, culture, out number); } desde já muito obrigado
Rui Carlos Posted June 21, 2018 at 05:56 PM Report #611070 Posted June 21, 2018 at 05:56 PM Sem perceber muito de C#, parece-me que o problema está na atribuição do resultado de Double.TryParse (um bool que indica se foi ou não possível fazer a conversão) a label1.Text (que espera uma string). Rui Carlos Gonçalves
M6 Posted June 22, 2018 at 09:14 AM Report #611082 Posted June 22, 2018 at 09:14 AM (edited) Tens sempre o Convert.ToXXXXX(). Edited June 22, 2018 at 09:14 AM by M6 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar."
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now