tfnd Posted September 13, 2022 at 01:11 PM Report Share #627241 Posted September 13, 2022 at 01:11 PM Private Sub TextBox1_change() Folha2.Range("K5").Value = TextBox1 End Sub Private Sub TextBox10_Change() If CheckBox1 = True Then UserForm1.TextBox10 = Folha2.Range(L5).Value Else UserForm1.TextBox10 = Folha2.Range(P5).Value End If End Sub Boas, estou a iniciar me a programar alguns formularios em vba... mas... percebo muito pouco disto.... lol desculpem a franqueza. tenho uma text box onde insiro um valor (textbox1) e ao inserir o valor nessa text box e, eu queria que foste mostrada na text box 10 um valor de uma célula e que não desse para alterar. Grato pela atenção dispensada Tiago Duarte Link to comment Share on other sites More sharing options...
tfnd Posted September 13, 2022 at 02:42 PM Author Report Share #627243 Posted September 13, 2022 at 02:42 PM Private Sub TextBox1_change() Folha2.Range("f4").Value = TextBox1 End Sub Private Sub TextBox10_Change() End Sub Mudei a folha e sem condições apenas pretendia que ao colocar um valor no textbox1 fosse apresentado o valor que está em Folha2.range("f5").value Link to comment Share on other sites More sharing options...
tfnd Posted September 13, 2022 at 03:28 PM Author Report Share #627244 Posted September 13, 2022 at 03:28 PM Também já experimentei adicinar o código seguinte que ao inicializar o formulário preenchia o text box com o valor de "g4" mas nada acontece. Nunca aparece o valor. Private Sub Preços_initialize() Me.TextBox10.Text = Folha2.Range(g4).Value End Sub Link to comment Share on other sites More sharing options...
Solution Luis_vxd Posted September 19, 2022 at 03:26 PM Solution Report Share #627317 Posted September 19, 2022 at 03:26 PM Olá Tiago Para assignar conteudo de uma célula à TextBox deve, com a TextBox selecionada clicar na 'Formula bar' e escrever, por exemplo "=A1". O que estiver na célula A1 vai aparecer na TextBox Cumprimentos Luis https://programar-excel.pt Link to comment Share on other sites More sharing options...
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