Programming Help

comoregion

Registered Member
Joined
Nov 26, 2012
Messages
55
Reaction score
9
This might be tricky to explain.

I have a program that displays data.
I need a program that can search that data and compile a list from the ones I’m searching for.

For example, find 1-2 and 78-4.

List A
1-2
99-0
78-4
90-389

I would paste what I was looking for and have that program compile a list of those found. I would be looking for several things of that specific item, which I would need the program to copy.

That would be the first part.


The second part would be this:
The compiled list would be hyperlinked or such to autofill an entry form out.

For example, if I clicked the first in the list; it would fill out the form like this:
Click the Hyperlink: 832456
Form:
Sort:
ID:
Number:

Any ideas of how I can do this?

Thanks
 
Last edited:
When you say search data... Well what kind of data? Are you talking binary data, text data, markup data, database files, etc, you have to be specific for us to help you.
 
why can you not associate the link with the user id.

and add a random number in the database each time a link added.

specific user
select from user where id=$1d and rn=$rd

all user
select from * where id=$1d and rn=$rd

while loop {
www.whatever?$rd
}
 
Last edited by a moderator:
You could be more specific about displaying data too. Are you taking about a GUI display? A browser display? A console display?
 
I have a program that displays text in some type of file (not sure at the moment).

It would be like:

Original Area- Origin - Current Area - Number - Percent

Those are the values that I’d like to scan and save
 
Back
Top