i make a text to list vb6 program that segments the text into words and add them in an access table ex. if the input (i go to school), the output will be:
i
go
to
school
the output is in an access table
my question is:
i want to add the segmented words in the access table in their desending order
i want the output to be
to
school
i
go
i want the word to be added in its desending order in the table (i donot want to sort the column after adding words in their original places).
my goal is to make a word frequancy program (in binary search) to be fast.
i
go
to
school
the output is in an access table
my question is:
i want to add the segmented words in the access table in their desending order
i want the output to be
to
school
i
go
i want the word to be added in its desending order in the table (i donot want to sort the column after adding words in their original places).
my goal is to make a word frequancy program (in binary search) to be fast.
Comment