Category: Soft/Programming

  • qiwi

    Today I registered the account in QIWI

    Later I will try to register there the account for business (to receive the payments)

  • 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 etc

    PS 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+ '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 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.

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