 |
|
 |
hi vishal
dis wud b a small issue for u..so kindly solve it
i need 2 identify executable files in an application.
so is dere a file header or whatever dat we can read and find what type of file it is..
pls reply.. i've been trying dis 4 days
|
|
|
|
 |
|
 |
I need something for NE executables, but this will help a lot to understand the headers.
Definitely my 5 points.
Gustavo
P.S.: Nice about
|
|
|
|
 |
|
 |
Fuction:
void PEResDialog::GetPropertyInfo(CString& strInfo)
has a bug.
The dialog template could be:
1>.DLGTEMPLATEEX dlgtemp;
2>.DLGTEMPLATE dlgtemp;
H.B.Shen
|
|
|
|
 |
|
 |
Hello,
anybody guide me about how to access the Portable Executable (PE) graphical area. plz also tell me it is possible or not?
i want to access the PE graphical area that is going to display at screen....
|
|
|
|
 |
|
|
 |
|
 |
Hey Vishal,
This is just excellent, not because it scans the exe, but the attitude with which you developed it. I liked your mantra - "Share the Code and exchange the knowledge".
Keep going on buddy...
**************
Bits&Bytes !!!
__o
_-\<,_
(_)/ (_)
|
|
|
|
 |
|
|
 |
|
 |
Sorry to be so dense, but where can I download mfc70.dll?
Lee
|
|
|
|
 |
|
|
 |
 | Great!  |  | CharlieLei | 15:16 9 Jun '05 |
|
 |
Your work is very excellent
|
|
|
|
 |
|
 |
Nice laser and infrared photo scans in the about dialog
#define __ARMEN_H__
|
|
|
|
 |
|
 |
in vs2003, it could not be compiled, telling me it could not decide to use which ceil()
Regards,
unruledboy@hotmail.com
|
|
|
|
 |
|
 |
Probably the code somewhere includes math and somewhere else includes math.h ?
Christian Graus - Microsoft MVP - C++
|
|
|
|
 |
|
 |
int iLines = (int)ceil((double)(m_dwSizeNew) /16) + 1;
|
|
|
|
 |
|
|
 |
|
 |
You can do the same thing by opening an executable file using visual studio...
-y
|
|
|
|
 |
|
 |
True, but the author is giving you the tools to perform this task in your code.
|
|
|
|
 |
|
 |
Hi,
I am not sure whether I have understood your question right or not but let me try to answer it. ExeScanner allows you to actually see the bitmap and not hex view of bitmap. It also allows you to modify it without the source code of exe you are scanning. Same is the case with many other resources. Visual studio can provide only hex view of a exe file if you dont have its source code. But ExeScanner shows what in the exe, how it looks and also allows to modify them(not all but many).
Vishal.
|
|
|
|
 |
|
 |
Vishalsinh Jhala wrote:
Visual studio can provide only hex view of a exe
Not true.
Visual Studio does indeed let you open an exe as a resource and you can modify the resources in there. In VS6 just open the exe or dll using the file open dialog. In VS7 (VS.NET) use the file open dialog, but click the little down arrow on the open button and choose "Open With..." then select "Resource editor".
|
|
|
|
 |
|
 |
Can you modify the resource in an executable (without any source code) and save it back in vc.net?
John
|
|
|
|
 |
|
|
 |
|
 |
Hello ahz,
I was unaware about this feature which studio provides. I checked it out and it a very handy feature.
But even if I knew it before I would have made this program. As you can see in the introduction of this article "Inspired by ResourceHacker from ...."
So there are tools that can do it better than ExeScanner but I wanted to make one of my own. Secondly None of thest tools give you the source code of how they do it(in VC++).
Besides being a useful tool, ExeScanner also helps in sharing knowledge and ideas through source code.
Vishal.
|
|
|
|
 |
|
 |
Hey, that's great!
Sharing is good and thanks for doing it. And so is figuring out how to do something for yourself (even though someone/something else has/is doing it) is definately good. It's good to explore and learn. Kudo's and more power to you! I wish more people (especially those who profess programmerhood, would do more of it).
I wasn't knocking your efforts at all, I merely wanted to correct a misunderstanding about Visual Studio.
If you wan to hear God laugh, just tell him what your plans are.
|
|
|
|
 |
|
 |
well, what about doing it without VisualStudio?
Visual Studi is expensive, plenty of people can't affort it!
Moreover this time you've got the source code to do it, unlike VisualStudio (I searched, but it was not on the DVD
|
|
|
|
 |
|
 |
it's left to the reader, as an exercise
in C# it's easy to load assembly and enumerate resource, but this article inspire me to write my own which will browse both assembly and native executable...
|
|
|
|
 |