ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Appointment functions (Lotus Notes/Android/iOS)
  • Special cases
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Reinitializes:
  • WINDEVWEBDEV - Server code the Appointment structure.
    Reminder This function cannot be used to reset the Appointment structure of an Outlook Express mailbox.
  • AndroidAndroid Widget the Appointment variable used by a calendar of an Android device.
Example
WINDEVWEBDEV - Server code
// Ouverture d'une session Lotus Notes
IDSession is int
IDSession = EmailStartNotesSession("MotDePasse", "ServeurMars", "mail/julie.nsf", "C:\Lotus Notes\julie.id")
// Initialisation des variables de la structure RendezVous
AppointmentReset()
// Renseignements des variables pour le nouveau rendez-vous
mAppointment.Subject = "Réunion commerciaux"
mAppointment.StartDate = "20070125100000"
mAppointment.Location = "Salle 3B"
mAppointment.NbParticipant = 3
mAppointment.Participant[1] = "Romain"
mAppointment.Participant[2] = "Lucas"
mAppointment.Participant[3] = "Stéphane"
// Ajout du rendez-vous
IF AppointmentAdd(IDSession) = True THEN
	Info("Rendez-vous ajouté")
ELSE
	Error("Erreur lors de l'ajout", ErrorInfo())
END
AndroidAndroid Widget
// Ajout d'un nouveau rendez-vous
AppointmentReset(gRDV)
gRDV.Titre = SAI_Titre
gRDV.DateDébut = SAI_DateDeb + SAI_HeureDeb
gRDV.DateFin = SAI_DateFin + SAI_HeureFin
gRDV.Lieu = SAI_Lieu
gRDV.Contenu = SAI_Desc
IF SAI_Fuseau <> "" THEN
	gRDV.FuseauHoraire = SAI_Fuseau
END
gRDV.Auteur = SAI_Auteur
gRDV.Invité = SAI_Invités
gRDV.JournéeEntière = INT_Jentière[1]

IF AppointmentAdd(gCal, gRDV) THEN
	ToastDisplay("RDV ajouté")
ELSE
	Error(ErrorInfo())
END
Syntax
WINDEVWEBDEV - Server code

Reinitializing the Appointment structure

AppointmentReset()
AndroidAndroid Widget

Reinitializing an Appointment variable Hide the details

AppointmentReset(<Appointment>)
<Appointment>: Appointment variable
Name of the Appointment variable to be used.
Remarks
AndroidAndroid Widget

Special cases

  • AppointmentReset can be used in the emulator but not in the simulator.
Component: wd300com.dll
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help