split sentence into strings and progamaticaly insert these string

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,
Please have me. I'm stuck with one problem:
Let's say that I have form "frm_abc" bound to table "abc" with 3 textboxes
corresponding to fields: "word id" (auto increment), "sentence" (allowed
null) and "string" fields.
In this form, when I insert "Please go to the school" sentence into
"sentence" field, the form will also programatically
split this sentence into "Please" "go" "to" "the" "school" strings and
insert auto these string seperately into "string" field, one string by one
record.
I can programaticaly split sentence into seperate strings but I don't know
how to insert programatically these string into "string" at once.
Pls help me. I need your help.
 
I don't understand what you mean by inserting the words into the string
field.

Are you saying that because "Please go to the school" has 5 words in it, you
want to have 5 records in your table, each one with the same value in the
Sentence field, but a different value in the String field?
 
Back
Top