how to create a calender control with more than one date has to be selelcted

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chandru8
    New Member
    • Sep 2007
    • 145

    how to create a calender control with more than one date has to be selelcted

    hi to all

    i had created a list box with dates from 1 to 30 whose style is checkbox

    i designed the list box to show up to 10 dates at a time

    the problem is, the user had to scroll to select the last date and they want in the horizontal with 7 dates in week like that

    is there any tool


    thanks in advance
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    There is no such control inbuilt in Vb 6.0 .

    You might need to search for some third party control .

    Comment

    • QVeen72
      Recognized Expert Top Contributor
      • Oct 2006
      • 1445

      #3
      Hi,

      Why dont you use "MSFlexGrid"... ? Populate with 5 Rows 7 Cols.. and Code to select Multiple Dates..

      REgards
      Veena

      Comment

      • chandru8
        New Member
        • Sep 2007
        • 145

        #4
        hi
        I can create to populate the days in the grid
        bu the problem is to selelct multiple days and to reterieve the selected days
        i have no idea on this
        thanks

        Comment

        • QVeen72
          Recognized Expert Top Contributor
          • Oct 2006
          • 1445

          #5
          Hi,

          For Selection Change the BackColor of the Cell..

          Grd.Row=2
          Grd.Col=3
          Grd.CellBackCol or = vbRed

          REgards
          Veena

          Comment

          Working...