AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones Google / Google Calendar
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Fills a calendar that was previously retrieved: the events corresponding to the calendar are retrieved via a custom query. This function must be used after the call to GglListCalendar.
Note: This is an advanced function.. It is recommended to use GglFillCalendar.
Ejemplo
// Connection
Cnt is gglConnection
...
IF GglConnect(Cnt) = False THEN
	Error(ErrorInfo())
	RETURN
END
// Retrieve a calendar
arrCalendars is array of 0 gglCalendar
arrCalendars = GglListCalendar(Cnt)
Calendar = arrCalendars[1]
// Request: 
// Retrieve the future events and organize them in chronological order
GglFillCalendarByRequest(Cnt, Calendar, "futureevents&orderby=starttime")
Sintaxis
<Result> = GglFillCalendarByRequest(<Google connection> , <Calendar> , <Parameters>)
<Result>: Boolean
  • True if the events have been retrieved,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Google connection>: gglConnection variable
Name of the gglConnection variable to be used. This connection was validated by GglConnect.
<Calendar>: gglCalendar variable
Name of the gglCalendar variable to fill.
<Parameters>: Character string
Parameters that must be passed to the HTTP request. The parameters are separated by the & character. For more details, see the documentation about the Google Calendar service.
Attention When switching from Google API v2 to Google API v3, the parameters to be passed to the request were modified by Google. For more details, see the documentation about the Google Calendar service (https://developers.google.com/google-apps/calendar/v3/reference/).
Observaciones
The dates sent to the Google server must be in UTC format. If necessary, use DateTimeLocalToUTC and DateTimeUTCToLocal to perform the conversions.
Componente: wd300ggl.dll
Versión mínima requerida
  • Versión 14
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local