Hide

SftMask/OCX 7.0 - ActiveX Masked Edit Control

Display
Print

Date2 Sample (C#)

This sample illustrates a popup calendar.

This is not an executable sample, so a complete project is not provided. These statements are intended to show basic concepts and the syntax used.

private void Form1_Load(object sender, System.EventArgs e)
{
    axSftMask1.Mask = "$d";
    axSftMask1.Calendar.CenturyBreak = 50;
    // 00-49 is 20xx  50-99 is 19xx
    axSftMask1.Alignment = SftMaskAlignConstants.alignSftMaskRight;
    axSftMask1.EditStyle = SftMaskEditStyleConstants.editSftMaskCalendarDropDown;
    axSftMask1.AutoAdvance = true;
    axSftMask1.TabAdvance = true;
    axSftMask1.Caption.Text = "&Ship Date";
    axSftMask1.Caption.Alignment = SftMaskAlignConstants.alignSftMaskCenter;
    axSftMask1.Caption.Position = SftMaskPositionConstants.positionSftMaskTop;
    axSftMask1.Contents.DateTime = new DateTime(2007, 1, 1);
    axSftMask1.Caption.BackColor = (uint) ColorTranslator.ToOle(SystemColors.Highlight);
    axSftMask1.Caption.ForeColor = (uint) ColorTranslator.ToOle(SystemColors.HighlightText);
    axSftMask1.AutoSize = true;
}

private void axSftMask1_UpdateMonth(object sender, AxSftMaskLib70._ISftMaskEvents_UpdateMonthEvent e)
{
    axSftMask1.Calendar.BoldDate = new DateTime(2007, 1, 2);
    axSftMask1.Calendar.BoldDate = new DateTime(2007, 1, 9);
    axSftMask1.Calendar.BoldDate = new DateTime(2007, 1, 16);
    axSftMask1.Calendar.BoldDate = new DateTime(2007, 1, 23);
    axSftMask1.Calendar.BoldDate = new DateTime(2007, 1, 30);
}

Last Updated 08/13/2020 - (email)
© 2024 Softel vdm, Inc.