ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Mobile specific functions / URI 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
WLanguage procedure called by URISelect
WLanguage procedure ("callback") called by URISelect for the selected file. This procedure is called when the user closes the URI selection window.
Example
// Open the system window to select an image or a pdf
URISelect(MyProcURISelect, uriImage + TAB + "application/pdf")
 
INTERNAL PROCÉDURE MyProcURISelect(Success is boolean, Result1 is URI)
IF Success = True THEN
// Displays the name of the selected resource
ToastDisplay(URIGetInfo(Result1, uriInfoName))
END
END
Syntax
URISelect_Callback(<Success> , <Result>)
<Success>: Boolean
  • True if the resource has been selected.
    In this case, <Result> is a URI variable that corresponds to the selected resource.
  • False if an error occurred.
<Result>: URI variable
URI that corresponds to the selected resource.
Component: wd290android.aar
Minimum version required
  • Version 25
Comments
Click [Add] to post a comment

Last update: 06/30/2023

Send a report | Local help