Click to See Complete Forum and Search --> : Input data to windows pgm from text file


900FE
September 29th, 2009, 01:27 PM
I need to get data from a text or excel file and input it into a windows program that I do not have source code for and cannot get it.

What I am trying to do is get sales order data from one of our customers in a file and then read the file and input the order information into our sales order system by actually stepping through the order entry process so all the checks for item #'s, zip codes, etc that are already in the sales order entry software are utilized, basically so that data files integrity is maintained.

I am very green when it comes to programming, can anyone tell me if this can be done using vb.net or should I look into using another programming language.

Thxs, Neil.

HanneSThEGreaT
October 1st, 2009, 01:37 AM
That type of functionality should have been built into the program already.

If the program makes use of Text / data files, there may be a way of doing what you want, otherwise, not really ( I think :eek: )

VSNetNewb
October 15th, 2009, 02:49 PM
Well, you could theoretically disassemble and develop ASM code snippets to insert and do what you're looking for and then reassemble. But, in all reality, that's probably not worth the effort.

You could also write a program that hooks onto the target program and implement functionality that way. Once again, you would still need to disassemble to find out what methods and functions it's using so you could call them in your new program.


If you have a copy of the target program and file (barring any sensitive information), I can give it a shot for you.