Скоро поздравлять будут роботы. По СМС пришло поздравление от страховой (PZU), по почте от всяких inet магазинов. Даже google вываливает персонально на главном экране:
Author: Mike Shkolnik
-
SMMsg suite: how to create the .eml file from code
I created the new sample project where I shown how you may create the .eml file from your code using SMMsg suite:
uses SMMsg, SMMSGTags; procedure TfrmMain.btnCreateEMLClick(Sender: TObject); var eml: TSMEMLFile; begin eml := TSMEMLFile.Create(Self); try eml.Properties.AddTypedValue(PR_SENT_REPRESENTING_EMAIL_ADDRESS, '[email protected]'); eml.Properties.AddTypedValue(PR_RCVD_REPRESENTING_EMAIL_ADDRESS, '[email protected]'); eml.Properties.AddTypedValue(PR_CLIENT_SUBMIT_TIME, Now()); // eml.Properties.AddTypedValue(PR_MESSAGE_CODEPAGE, 1251); eml.Properties.AddTypedValue(PR_SUBJECT, 'Subject'); eml.Properties.AddTypedValue(PR_BODY, 'Hello,'#13#10+ #13#10+ 'you may visit our site http://www.scalabium.com'#13#10+ 'or contact by email [email protected]'#13#10+ #13#10+ 'With best regards, Mike Shkolnik'); eml.Properties.AddTypedValue(PR_BODY_HTML, ''#13#10+ ''#13#10+ ''#13#10+ ''#13#10+ 'Hello,
'#13#10+ 'you may visit our site http://www.scalabium.com
'#13#10+ '
'#13#10+ 'or contact by email [email protected]With best regards, Mike Shkolnik
'#13#10+ ''); eml.Properties.AddAttachmentFile(ExtractFilePath(Application.ExeName) + 'scalfaq.gif'); eml.SaveToEMLFile(ExtractFilePath(Application.ExeName) + 'test.eml', True) finally eml.Free end; ShowMessage('File ' + ExtractFilePath(Application.ExeName) + 'test.eml' + ' created succesfully'); end; -
Visa Internet/приватбанк
Приватбанк отменил комиссию в 35 центов за каждую транзакцию по карте Visa Internet
Мне сейчас это подтвердил оператор в livechat
-
new product: DBISAM To Text converter
New DBISAM To Text converter published.
Very fast converter to text and CSV format from Elevate DBISAM tables. -
Excel File Viewer 2.2
Just now I published the new version for Excel File Viewer: http://www.scalabium.com/xls
Also today I changed the parser for .wb3 files (QuattroPro) and now the multisheet files (workbook) supported too.
-
Continuous Integration System
Good small article how to integrate the Jenkins CI (ex Hudson) with MSBuild for Delphi projects:
http://thundaxsoftware.blogspot.com/2011/07/continuous-integration-for-your-delphi.html
-
самое дешевое лекарство
Будьте заняты. Это самое дешевое лекарство на земле — и одно из самых эффективных.
Дейл Карнеги -
updated FAQ tips
I re-generated the tips and uploaded to site. The new template with category tree and some new tips for C#/.NET
Later I’ll add a few new tips for Java
Also created the index page for faq-directory:
http://www.scalabium.com/faq/ -
Database Viewers 2.08
Today I uploaded the new version for all our db-viewers:
- Paradox Viewer
- dBaseViewer
- DBISAM Viewer
- Clarion Viewer
- Advantage Viewer
The short list of new features:
- File Explorer for easy navigation and favorites support
- very fast export to text/html/xml (low memory and CPU used)
- common config file support (for Citrix environment)
- modified export to MySQL
- and more
Also I created the bundle with discount.
-
ExcelFile Viewer
Today I fixed the issue with QuattroPro spreadsheets (.wkq) and now the cells with row#>256 loaded correctly
Also the description for last BIFF-record (EOF) added in visual list.