Can We Read Text data From an EXE

  • Thread starter Thread starter CrimeMaster
  • Start date Start date
C

CrimeMaster

HI
I have an Exe file when it runs ,there are just two controls on the
window.One is a ListBox and another is a Multi line Rich Edit
control.When i click on an item in the list some text is displayed in
the Edit control.Exe have a Hunderds of items in the List
controls,which display some text in edit control against an item
selection.

I want to read that data which is displayed in edit control against the
selection of an item in list controls .and want to place that data in a
Word file.Can any body tell me how i can do that.is there any API's
available to read that data.plz tell me.

Crime Master
 
CrimeMaster said:
HI
I have an Exe file when it runs ,there are just two controls on the
window.One is a ListBox and another is a Multi line Rich Edit
control.When i click on an item in the list some text is displayed in
the Edit control.Exe have a Hunderds of items in the List
controls,which display some text in edit control against an item
selection.

I want to read that data which is displayed in edit control against the
selection of an item in list controls .and want to place that data in a
Word file.Can any body tell me how i can do that.is there any API's
available to read that data.plz tell me.

Crime Master

I'm responding to this even though I dislike your moniker. If you have visual
studio, open the exe in "resource" mode and see if the text is stored as a
resource. If so, you can write code to get at it.

/steveA
 
Steve said:
I'm responding to this even though I dislike your moniker. If you have visual
studio, open the exe in "resource" mode and see if the text is stored as a
resource. If so, you can write code to get at it.

/steveA

Thanks Steve
I have checked it But no text is stored in the resource.Can u tell me
is there any other way to access that data.and i want to access that
data through a program written VC++
 
CrimeMaster said:
Thanks Steve
I have checked it But no text is stored in the resource.Can u tell me
is there any other way to access that data.and i want to access that
data through a program written VC++

That suggests that it is probably compiled statically in their heap
initialization. I suspect it would be very hard to find. You couldn't even
depend on a fixed address if they deliver a new version...

/steveA
 
Back
Top