There's probably a simpler method, but you could load the files into memory and compare them.
function CompareImages(Filename1,Filename2 : string): boolean;
var
S1,S2 : TMemoryStream;
P1,P2 : Pointer;
Match : boolean;
begin
S1 := TMemoryStream.Create;
S2 := TMemoryStream.Create...
I would like to display the dropdown calendar of the TDateTimePicker component when the cursor enters the TDateTimePicker or by pressing a particular keystroke.
Also,when I use the MonthCalendar component it doesn't appear to accept focus and won't allow arrow keys to navigate the days. I've...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.