Paid for next year for server in Canada.
Category: Soft/Programming
-
TSMExportToXML: create xml compatible with ADO.NET
Today I added the new feature in SMExport – to create the xml file from dataset which is compatible with ADO.NET.
Small sample code:
smeXML := TSMExportToXML.Create(nil); try smeXML.DataSet := ClientDataSet; smeXML.ColumnSource := csDataset; smeXML.FileName := ADOXMLFileName; smeXML.AddTitle := True; smeXML.Format := xmlADO; smeXML.XMLTags.RowTag := 'z:row'; smeXML.DataFormats.CustomDateTimeFormat := 'yyyy-mm-ddThh:nn:ss'; smeXML.Execute; finally smeXML.Free; end; -
SIM: resend license
Today in SIM (Shareware Information Manager) I added the feature to re-send the license for old orders. Just search in database the infrormation about reg.folder, userid+password and re-generate the mail for customer.
Also minor modification is in algorithm for random password: at least one digit must exists in strong password. Else CPanel will popup the warning.
-
Idea for Facebook application – Friend’s gift
anyone may select some product(s) in online shop(s) and their friends may “transfer” the part of sum to “basket”. When the total amount in basket is equal or greater than product price, this product will be ordered and sent/delivered to original user.
May be integrated with ebay, aliexpress etcPS today announced the similar service: wishkey.ru
-
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; -
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/