#7745
Support 3
Participant

    quote:


    Using a button on the form is it possible to launch a separate form, prompting the user to enter appointment information and post the content of that to a calendar that they have proxy rights to?
    sed:


    You can use button click event (Double click a button in the Form Designer) to display another form.

    Sub btnDlg1Click(Sender)
      dlg2.showmodal
    End Sub
    

    quote:


    On this form I would like to also pick the month from a drop down list but store the number to the database for sorting purposes. I looked at listview and was able to successfully set it up using the viewstyle of vslist; however this method takes up a lot of real estate on the form, is there an alternative?


    Another option is to use DateTimeEdit control then extract the month. Example:
    msgbox month(dlg1.dateCtl.date)

    Hope this helps.

    Regards,
    Advansys Support