newline

T

Tree*Rat

in my input box the question is long and need to split it down. How do i
get this

"please enter name of guests - First name, last name sperated buy a
comma"

to this

"Please enter guests name"
"First name, last name"
""
"Seperated by a comma"




current code
------------
GuestName = InputBox("please enter name of guests - First name, last
name sperated buy a comma", "Enter name")


big thx
 
R

RonaldoOneNil

GuestName = InputBox("Please enter name of guests" & vbCrLf & "First name,
last
name" & vbCrLf & vbCrLf & "separated by a comma", "Enter name")
 
G

gls858

Tree*Rat said:
in my input box the question is long and need to split it down. How do i
get this

"please enter name of guests - First name, last name sperated buy a
comma"

to this

"Please enter guests name"
"First name, last name"
""
"Seperated by a comma"




current code
------------
GuestName = InputBox("please enter name of guests - First name, last
name sperated buy a comma", "Enter name")


big thx

Usually it's best to store the first name and last name as separate fields.

gls858
 
T

Tree*Rat

Usually it's best to store the first name and last name as separate
fields.

gls858

they will be stored as seperate fields as I will split the input. hence
the comma. But thanks anyway!
 
R

Rick Rothstein

How will your code split these two names (both are friends of mine)?

Joseph Della Rossa (Della Rossa is his last name)

Mary Anne Whitfield (Mary Anne is her first name)
 
G

gls858

Rick said:
How will your code split these two names (both are friends of mine)?

Joseph Della Rossa (Della Rossa is his last name)

Mary Anne Whitfield (Mary Anne is her first name)
 
G

gls858

Rick said:
Your comment did not come through with your posting...
No comment other than snide remark I decided to cancel and
I hit the send button by mistake.

gls858
 
R

Rick Rothstein

I'd be interested in your remark (snide or otherwise)... did my posting not
point out a problem with the OP's approach (and which, in its own way,
backed up your suggestion that the OP should consider putting the names in
separate fields)?
 
G

gls858

Rick said:
I'd be interested in your remark (snide or otherwise)... did my posting
not point out a problem with the OP's approach (and which, in its own
way, backed up your suggestion that the OP should consider putting the
names in separate fields)?

Nope you are absolutely correct! My comment would have been about the OP
already having his mind made up. Your comment was much more useful since
it gave an example of the problems the OP would face with his method.

gls858
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top