Is there a way of embedding Text with in .EXE

  • Thread starter Thread starter MikeY
  • Start date Start date
M

MikeY

I am trying to figure out if there is a way of storing information within
the .exe. TextFile or other storage means, so that when I transport my
application I don't need to take the text file or other storage means with
it. Example (When I make a help button that pops up a window I want the info
to reside in it). I am working with C#

Any and all help is appreciated.

Thank you in advance.
 
Hello:
Yes you can embed it as a resource, or you still can embed it through your
deployment package that you make using Visual Studio.NET. In this case in
your help button you only deal with this textfile using its "relative"
location.

I hope this helps
 
Back
Top