Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JackM2

    Compare two pictures

    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...
  2. JackM2

    TDateTimePicker - display calendar automatically on enter

    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...

Part and Inventory Search

Back
Top