From the above we can see count of relocation table entries is 0(there is no reloc item), but offset of first reloc item shows that the reloc item actually exists.
The definition of DOS EXE Header is here.
How to understand it?
...
Does anyone know whether the 'import address table' in the PE executable format on Windows is 'per dll' or 'per exe'?
...
Can you recommend the best or all of the best executable (EXE) compressors out there? It can either be free or paid. Also it can be publicly well known or even just a new compressor but seem to offer quite a punch.
I'm aiming for file size as I'm asking this question. Meaning the smaller the file size it can produce, the better.
Feel f...
I wanna check lots of execution files (*.exe) that made by packer or compilers.
So I need a library or anything like that which could tell me witch compiler or packer has made the *.exe files.
I have tried the exeinfo but it makes me lots of minute to wait becouse it works one by one.
Is there any program or library to handle that all...
So I've been using Handbrake command line to encode my video collection to store on my NAS so I can use it on my HTPC. I was looking for a way to output both to the screen so I can watch it's output as it's encoding, but also to a file so I can go back and look at a particular encoding session.
My solution for this was to use one Powers...
I have the exe file of micromedia flash player. I am able to run this file from the .net application by using the following code
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("peopledisplay.exe");
//System.Diagnostics.Process.Start("iexplorer.exe", "peopledispla...
I'm trying to make an exe in Windows out of python I developed in Linux. The program works on it's own in python under Windows, and when I use cxfreeze it completes and makes the exe. However when I run it I get:
C:\projects\0802001S\dist>listen.exe
Traceback (most recent call last):
File "C:\Python26\lib\site-packages\cx_Freeze\ini...
hi i have server exe file with exported function how can call it from other client exe file
assume server is run
...
Hi,
I've made a WPF application that runs perfectly inside Visual Studio 2010.
When I built it (debug or release mode) and try to run the app, I've got an error,
the form doesn't start.
any ideas?
thanks
Filip
...
Hi Friends,
I downloaded Selenium IDE code.Now i want to start selenium IDE just by double clicking on it not as firefox plugin.Any Idea which helps me to start IDE as a desktop application is appreciated.Thanks in advance.
...
Hi all,
there is a lot of examples how to load all dependencies from some assembly like:
var assembly = Assembly.ReflectionOnlyLoadFrom(assemblyPath);
foreach (var assemblyName in assembly.GetReferencedAssemblies()) {
try {
Assembly.ReflectionOnlyLoad(assemblyName.FullName);
} catch {
Assembly.ReflectionOnlyLoadFrom(Path.Co...
I want to create a batch file that I can run from the desktop. This batch file should execute a stored procedure in mysql.
This is what i have so far, the batch file logs into the server but it doesnt execute the stored procedure
<---- start: run_stored_proc.bat ----->
cd\
cd Program Files
cd mysql
cd mysql server 5.1
cd bin
mysql.e...