ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • Upload control
  • Spreadsheet control
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
The Content property is used to read or write the whole content of a control:
  • List Box populated programmatically,
  • Combo Box populated programmatically,
  • WINDEV Spreadsheet.
This allows you to read or write all the rows in the control in a single line of code.
Remark: On a List Box or Combo Box control based on a data file, you can only read the list of elements.
WEBDEV - Server codePHP The Content property can also be used on an Upload control to get the list of uploaded files.
Example
// Adds elements to the current content of the List Box control
LIST_List1.Content = LIST_List1.Content + CR + "Tommy" + CR + "Emma"
WINDEVReports and QueriesUser code (UMC)
n is int
// Add the row into the Table control (the Combo Box column being the 2nd one)
n = TableAddLine(TABLE_Table1, "1", "c2")
// Modify the content of the Combo Box column for the added row
// Note: Return values are used via gStoredValue,
// therefore, this option must be enabled in the description of the column
TABLE_Table1.COL_ComboBox[n].Content = "computer 1" + gStoredValue("c1") + CR + ...
"computer 2" + gStoredValue("c2")
Syntax

Getting the content of a Spreadsheet control, or a List Box or Combo Box populated programmatically Hide the details

<Control Content> = <Control used>.Content
<Control Content>: Character string
List of elements for the content of the control. The elements are separated by CR characters.
WINDEV For a Spreadsheet control, content of the control in binary format. This content can be saved by fSaveBuffer.
<Control used>: Control name
Name of the control to be used. This control must be:
  • a List Box control populated programmatically,
  • a Combo Box control populated programmatically,
  • a table column of type "List of values",
  • WEBDEV - Server code an Upload control.
  • WINDEV a Spreadsheet control.

Changing the content of a Spreadsheet control, or a List Box or Combo Box populated programmatically Hide the details

<Control used>.Content = <Control Content>
<Control used>: Control name
Name of the control to be used. This control must be a: Name of the control to be used. This control must be:
  • a List Box control populated programmatically,
  • a Combo Box control populated programmatically,
  • a table column of type "List of values",
  • WINDEV a Spreadsheet control.
<Control Content>: Character string
List of elements displayed in the control. The elements are separated by CR characters.
WINDEV For a Spreadsheet control, binary content to display in the control. You have the ability to use fLoadBuffer.
Remarks
WEBDEV - Server codeAjax

Upload control

The Content property is used to determine the list of files selected in a multi-file Upload control. The names of files are separated by CR characters (Carriage Return). For a multi-file Upload control, the name of the selected file is returned.

The name of the files corresponds to the path and to the name of the temporary uploaded file. For example: C\WebDep\Temp\File.upl
This property must be used in the "Receiving the uploaded files" event. In the other cases, this property returns an empty string.
This property is equivalent to the Value property.
WINDEV

Spreadsheet control

The Content property is used to get and modify the binary content of the Spreadsheet control. For example:
PSHEET_Show.Content = fLoadBuffer(fExeDir()+"\Fashion Showxls")
This property is equivalent to the Value property.
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help