Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
General :: Windows :: Programming :: Windows with Delphi :: Windows Filesystem
File related questions and answers. File operations, attributes, system dialogs, hard disk handling.
Articles:
This list is sorted by recent document popularity (not total page views).
New documents will first appear at the bottom.
Only the 40 most recently viewed articles are shown. You can see the full list here.
Featured Article
Determine the type of an EXE FileHere's a function to return the platform the executable was designed for (16/32 bit Windows or DOS). Read the comment for the usage. This function works as well with DLLs, COMs, and maybe others. Thanks to Peter Below for this code.
Use it as shown at the bottom of the code snippet.
 | |  | |
type
TExeType = (etUnknown, etDOS, etWinNE );
function GetExeType(const FileName: string): TExeType;
var
Signature,
WinHdrOffset: Word;
fexe: TFileStream;
begin
Result := etUnknown;
try
fexe := TFileStream.Create(FileName, fmOpenRead or fmShareDenyNone);
try
fexe.ReadBuffer(Signature, SizeOf(Signature));
if Signature = $5A4D then
begin
Result := etDOS;
fexe.Seek($18, soFromBeginning);
fexe.ReadBuffer(WinHdrOffset, SizeOf(WinHdrOffset));
if WinHdrOffset >= $40 then
begin
fexe.Seek($3C, soFromBeginning);
fexe.ReadBuffer(WinHdrOffset, SizeOf(WinHdrOffset));
fexe.Seek(WinHdrOffset, soFrombeginning);
fexe.ReadBuffer(Signature, SizeOf(Signature));
if Signature = $454E then
Result := etWinNE
else
if Signature = $4550 then
Result := etWinPE;
end;
end;
finally
fexe.Free;
end;
except
end;
end;
begin
case GetExeType(aFileName) of
etUnknown: Label3.Caption := 'Unknown file type';
etDOS : Label3.Caption := 'DOS executable';
etWinNE : Label3.Caption := 'Windows 16-bit executable';
etWinPE : Label3.Caption := 'Windows 32-bit executable';
end;
end;
| |  | |  | You don't like the formatting? Check out SourceCoder then!
|
| Most recent comments
2008-08-08 11:46:02:
by anonymous
in Male Dating Scammers
on Dating scammer Robert Piperno, Robbie Piperno:
Hello,
I know dear Robbie too. He used basically the same m.o. with me. I found Jonathon's pic in a different pose but same clothing on a site of kid models that have been frequently used by sc ... read more
|
2008-08-08 11:39:18:
by anonymous
in Dating Scams
on Dating scammer Liliya:
hallo lilyia
I think understad
I hope your words is true
|
2008-08-08 11:39:14:
by anonymous
in Dating Scams
on Dating scammer Rhoda Naa from Accra, Ghana:
The below photo was take at Karaoke world in Tokyo, Japan. This young lady has traveled the world. Someone probably stile her photos from a photo hosting site such as Flicker, etc...
Her phot ... read more
|
|
2008-08-08 11:29:09:
by INVESTIGADOR
in Dating Scams
on Dating scammer Ksenia Lihacheva from Diwnogorsk, Russia:
SIEMPRE QUE LE MANDO CARTA ME CONTESTA, LO MAS QUE HE RECIBIDO SON 3 POR SEMANA.
LA VEZ PASADA QUE DEJO DE MANDARME YO LE ESCRIBI, LO QUE PASO FUE QUE LE DEJE DE ESCRIBIR, POR QUE PARA DECI ... read more
|
2008-08-08 11:13:46:
by anonymous
in Dating Scams
on Dating scammer pretty:
Ah look guys a new one from the friendly scammer, today's hot topic fear of flying.?.?.?.?
Hello <<Scammie name here>> !! How are you? I'm ok!!! I just returned from my work.
... read more
|
2008-08-08 10:52:28:
by INVESTIGADOR
in Dating Scams
on Dating scammer ANGELINA IVANOVA:
SALIO IGUAL QUE LA KSADILLA. LASTIMA AMIGO
PUES A VER QUE MAS TE ESCR.
SALUDOS
|
2008-08-08 10:20:50:
by [hidden]
in Male Dating Scammers
on Dating scammer Charles Wright, Richard Cirsalli, Mark Cruise, Green Cowser, Mar:
omg i cant belived this recently i got to know 1 guy name Mcdonald Peril
he got 1 son 4 yrs old and wife died of cancer. he is contrustion engineer, UK
we been contacting n he told me he love ... read more
|
2008-08-08 10:00:48:
by [hidden]
in Network
on Sending an email from Delphi using MAPI:
Excellent, thanks!
|
2008-08-08 09:43:01:
by anonymous
in Dating Scams
on Dating scammer williams rogers:
I want to add, because i've two daughters the last mail i'had send to him :
ah you are so shocked poor man...
In is saying Willy... Played well : that the sky falls you on the head, because yo ... read more
|
2008-08-08 08:12:02:
by Peter
in Dating Scams
on Dating scammer Ekaterina Rozhentsova:
Nachtrag,
Friedel, manchmal bin ich blöd! Wenn jemand Trojaner an alle Adressen sendet, die er hier im delphi findet, wer bekommt sie dann? 'Western Union' - Anhänge wohlgemerkt!! Wieviel Scamme ... read more
|
|