Generate/edit files
-
Generate files How can we generate files. for example if I want to make an exe file that generate another exe file. and if i make a program and put an edit box, and when i write something in the edit box, and click generate. the value in the edit box will be edited to the generated exe files or if i have an exe file that have an (m_value) Cstring and make another file to edit/change (m_value) Cstring is it possible? thanks alot
-
Generate files How can we generate files. for example if I want to make an exe file that generate another exe file. and if i make a program and put an edit box, and when i write something in the edit box, and click generate. the value in the edit box will be edited to the generated exe files or if i have an exe file that have an (m_value) Cstring and make another file to edit/change (m_value) Cstring is it possible? thanks alot
Dody_DK wrote: for example if I want to make an exe file that generate another exe file. You've got one. It's called a compiler :-) Dody_DK wrote: and if i make a program and put an edit box, and when i write something in the edit box, and click generate. the value in the edit box will be edited to the generated exe files Your compiler does this also. You can take a string and shove it into a file easy enough, it's 'generating' an exe that is the job. Dody_DK wrote: if i have an exe file that have an (m_value) Cstring and make another file to edit/change (m_value) Cstring You need to define a process to do this, your two processes need to communicate and cooperate to achieve this. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder
-
Dody_DK wrote: for example if I want to make an exe file that generate another exe file. You've got one. It's called a compiler :-) Dody_DK wrote: and if i make a program and put an edit box, and when i write something in the edit box, and click generate. the value in the edit box will be edited to the generated exe files Your compiler does this also. You can take a string and shove it into a file easy enough, it's 'generating' an exe that is the job. Dody_DK wrote: if i have an exe file that have an (m_value) Cstring and make another file to edit/change (m_value) Cstring You need to define a process to do this, your two processes need to communicate and cooperate to achieve this. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder
you misunderstod me I know that the compiler make the exe programs but I mean to make a program let's call it "one.exe" and in this program are some edit box, when i write some values, i want it to be saved in other exe file with these values... i hope i explained it better this time : ) thanks alot
-
you misunderstod me I know that the compiler make the exe programs but I mean to make a program let's call it "one.exe" and in this program are some edit box, when i write some values, i want it to be saved in other exe file with these values... i hope i explained it better this time : ) thanks alot
Your request sounds a lot like this one.
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen
-
you misunderstod me I know that the compiler make the exe programs but I mean to make a program let's call it "one.exe" and in this program are some edit box, when i write some values, i want it to be saved in other exe file with these values... i hope i explained it better this time : ) thanks alot
I know what you want, it just sounds wierd. Why do you want to do this ? Is it to patch another program, or is it to hack it ? Either way, it can be done, so long as you're willing to sit with a hex editor and work out exactly at what position you need to insert your new value. Christian I have drunk the cool-aid and found it wan and bitter. - Chris Maunder