ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Usersform in VBA for Excel (https://www.excelbanter.com/excel-programming/328259-usersform-vba-excel.html)

No Name

Usersform in VBA for Excel
 
I have creted a userform using Visual basic that writes
into an excel spreadsheet. Within this form I have
several textboxes.

Is it possible for me to write some code which will
ensure that the boxes cannot be left blank when the form
is submitted and error message is presented telling the
user to add data to the relevant textboxes

Many thanks

Nick Read

Bob Phillips[_7_]

Usersform in VBA for Excel
 

With Textbox1
If .Text = "" Then
MsgBox "Submit data"
.SetFocus
End If
End With

--
HTH

Bob Phillips

wrote in message
...
I have creted a userform using Visual basic that writes
into an excel spreadsheet. Within this form I have
several textboxes.

Is it possible for me to write some code which will
ensure that the boxes cannot be left blank when the form
is submitted and error message is presented telling the
user to add data to the relevant textboxes

Many thanks

Nick Read




Stevie_mac

Usersform in VBA for Excel
 
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
If TextBox3.Text = "" Then TextBox3.SetFocus: Cancel = 1
If TextBox2.Text = "" Then TextBox2.SetFocus: Cancel = 1
If TextBox1.Text = "" Then TextBox1.SetFocus: Cancel = 1
End Sub


wrote in message ...
I have creted a userform using Visual basic that writes
into an excel spreadsheet. Within this form I have
several textboxes.

Is it possible for me to write some code which will
ensure that the boxes cannot be left blank when the form
is submitted and error message is presented telling the
user to add data to the relevant textboxes

Many thanks

Nick Read





All times are GMT +1. The time now is 05:10 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com