ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV, WEBDEV and WINDEV Mobile 2024 feature!
Help / WLanguage / WLanguage functions / Standard functions / Guided Tour functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns information about a Guided Tour.
Example
// Opens the Guided Tour only at first launch
IF GuidedTourInfo(GuidedTourGetStarted, gtInfoCount) = 0 THEN
GuidedTourStart(GuidedTourGetStarted)
END
// Opens the Guided Tour no more than once per day, and a maximum of 5 times overall
IF GuidedTourInfo(GuidedTourGetStarted, gtInfoDate) < DateSys() 
_AND_ GuidedTourInfo(GuidedTourGetStarted, gtInfoCount) < 5 THEN
GuidedTourStart(GuidedTourGetStarted)
END
// Shows what's new in a version 
WhatsNewTour is GuidedTour
WhatsNewTour.Identifier = "What's new in this version"
WhatsNewTour.Version = 29
IF GuidedTourInfo(WhatsNewTour, gtInfoVersion) < 29 THEN
WhatsNewTour.Step[1].Target = EDT_FirstName
WhatsNewTour.Step[1].Title = "New!"
WhatsNewTour.Step[1].Description = "Now, you can enter your first name"
GuidedTourStart(WhatsNewTour)
END
Syntax
<Result> = GuidedTourInfo(<Guided Tour> , <Information>)
<Result>: Type of Information
Requested information.
<Guided Tour>: String or variable of type GuidedTour
Guided Tour used. This parameter can correspond to:
  • the identifier of the Guided Tour.
  • the name of the GuidedTour variable.
<Information>: Integer constant
Desired information:
gtInfoDateDate the Guided Tour was last viewed on the current computer.
gtInfoCountNumber of times the user has seen the Guided Tour.
gtInfoVersionVersion number of the last Guided Tour viewed by the user.
Business / UI classification: UI Code
Component: wd290mdl.dll
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/14/2023

Send a report | Local help