Today I registered the account in QIWI
Later I will try to register there the account for business (to receive the payments)
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.
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 etc
PS today announced the similar service: wishkey.ru
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+
'or contact by email [email protected]
'#13#10+
'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 DBISAM To Text converter published.
Very fast converter to text and CSV format from Elevate DBISAM tables.
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.
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
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/
Today I uploaded the new version for all our db-viewers:
The short list of new features:
Also I created the bundle with discount.
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.