|
|
|
|
|
WLanguage procedure called by ExplorerAccept WLanguage procedure ("Callback") called by ExplorerAccept during a drag-and-drop operation from the Windows explorer. This procedure can be a local, global or internal procedure.
ExplorerAccept(True, LIB_ZONE_DROP, Call_backExplorerAccepte)
INTERNAL PROCEDURE Call_backExplorerAccepte(NombreDeFichiers is int,
ListeDesFichiers is string)
i is int
FOR i = 1 TO NombreDeFichiers
NomFic is string
NomFic = ExtractString(ListeDesFichiers, i, CR)
TableAddLine(TABLE_DND_WINDOWS, NomFic)
END
END
Syntax
ExplorerAccept_Callback(<Number of files> , <List of files>)
<Number of files>: Integer Number of files dropped from Windows Explorer. <List of files>: Character string List of files dropped from Windows Explorer. The different files are separated by a Carriage Return (CR). This list has the following format:
<File Name 1> + CR + ... + CR + <File Name N>
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|