PC SOFT
ONLINE REPOSITORY
FOR WINDEVWEBDEV AND WINDEV MOBILE

Home |  | Sign in | English US
Latest publications
Sort by:
Date
,
,
,
Filter by language:
(0)
 / Tools
Published on 06/07/2022
Downloaded 37 time(s)
WD Management of RTF // ---------------------------------------------------------------- // ----------------------- RUN CODE --------------------------- // -----------------------------------------...
(0)
WD Managing the main menu of a window by programmin - WD Gerenciando o menu principal de uma janela por programação IF bModif = True THEN // "MenuSelectMinus is used to gray an option." MenuSelectM...
(0)
 / Tools
Published on 06/07/2022
Downloaded 27 time(s)
WD Managing the timers // ---------------------------------------------------------------- // --------------------- GLOBAL VARIABLES ----------------------- // --------------------------------------...
(0)
 / Tools
Published on 06/07/2022
Downloaded 32 time(s)
WD Managing the Windows session // Manage the action to perform SWITCH RADIO_ACTION CASE 1 // Close the session SysShutdown(sysLogoff) // Close the window Close() CASE 2 // Stop the system...
(0)
WD Merging the column titles and the table cells - WD Mesclando os títulos das colunas e as células da tabela // define a font tt is Font tt = FontCreate("Verdana",11,iBold) // merge the titles of ...
(0)
WD Moving elements between two list boxes - WD Movendo elementos entre duas caixas de listagem // Clears the list ListDeleteAll(LIST_Memory) // Fills the list ListAdd(LIST_Memory, "Monday") ListAdd...
(0)
 / Tools
Published on 06/07/2022
Downloaded 48 time(s)
WD Native access to MongoDB // Connection to the MongoDB server on the example database (creates the database if it does not exist) gclConnection = MongoCreate(StringBuild("mongodb://%1:%2/%3",EDT_Se...
(0)
 / Tools
Published on 06/07/2022
Downloaded 24 time(s)
WD Operators Text // procedure used to update the display of results PROCEDURE UPD() // Calculate the result of an operation such as // ----------- sString1= String2[[ Subscript ]] -------- RES2 =...
(0)
 / Tools
Published on 06/07/2022
Downloaded 29 time(s)
WD Overloading WLanguage functions PROCEDURE Manage_Trace_TraceMode(nTraceType) // Store the trace mode Manage_Trace_Mode = nTraceType IF Manage_Trace_Mode = FileTrace OR Manage_Trace_Mode = Stand...
(0)
Published on 06/07/2022
Downloaded 41 time(s)
WD Play a sound mp3 / wav // select the sound file sFile is string sFile = fSelect(EDT_FILE,"Select a sound file...",... "mp3 files (*.mp3)"+TAB+"*.mp3"+CR+... "Wave files (*.wav)"+TAB+"*.wav"+CR+......