615
|
rubrique |
nom en anglais |
nom en français |
détail/abrév.(anglais) |
complément ou exemple |
|
ADO |
ADO |
interface de programmation (DB) |
Activex Data Objects |
composant activeX |
|
ADO |
bookmark |
créer
un signet dans un Recordset |
. |
rs.bookmark |
|
ADO |
dataset |
groupe
de données |
recordset (ADO), |
. |
|
ADO |
getrows |
obtenir une ligne |
. |
. |
|
ADO |
openDatabase |
ouvrir
une base de données |
. |
set
ex5 = OpenDatabase(ex1) |
|
ADO |
QueryDef |
objet
qui contient la définition d'une requête SQL |
. |
. |
|
ADOdb |
ADODB |
connexion ADODB |
ADO
DataBase ActiveX Data Object database, |
dim
ex5 as ADODB.connection |
|
ADOdb |
append |
ajouter (VB) |
. |
rsex5.Fields.Append
"ex1", adInteger |
|
ADOdb |
command |
commande (ADO) |
. |
. |
|
ADOdb |
connection |
connexion (objet) |
method
: OpenSchema, close, |
set
conn = New ADODB.connection |
|
ADOdb |
connectionString |
string
de connexion |
. |
global
const exstring as string = "provider=toto;server=…." |
|
ADOdb |
cursor |
curseur (VB) |
type
of cursors |
. |
|
ADOdb |
database |
base
de données (pour le string de connexion) |
members : connect, close, execute, name, |
global
const ex1 as string ="….;Database=ex"' |
|
ADOdb |
execute |
exécution (méthode), exécution d'un query |
. |
ex5="select * from ex1"….set rs = conn.execute(ex5) |
|
ADOdb |
new |
nouveau Recordset |
. |
set rs
= new ADODB.recordset |
|
ADOdb |
new |
nouvelle connexion |
. |
set
ex5 = new ADODB.connection |
|
ADOdb |
nothing |
rien
(ADODB) |
. |
set
connection_a = Nothing …set recordset_a = Nothing |
|
ADOdb |
open |
ouvrir
une connexion (ADODB : méthode) |
. |
conn.open ex5_string_connection |
|
ADOdb |
openSchema |
méthode d'ouverture du schéma de base de données |
. |
Set rs
= cn.OpenSchema(adSchemaTables) |
|
ADOdb |
provider |
fournisseur (pour le string de connexion) |
OLEDB
provider |
global
const e5string as string ="provider=SQLOLEDB;…" |
|
ADOdb |
PWD |
mot de
passe (pour le string de connexion) |
password |
...Pwd=;.. |
|
ADOdb |
recordset |
ensemble d'objets (VB) |
. |
recordset = table + dynaset + snapshot |
|
AdOdb |
recordset |
ensemble d'enregistrement d'une base de données |
RS, |
set rs
= New ADODB.Recordset ….MsgBox rs("nom") |
|
ADOdb |
server |
serveur (VB) |
. |
...serveur=ex5;… |
|
ADOdb |
SQLOLEDB |
fournisseur SQLOLEDB |
. |
. |
|
ADOdb |
State |
état d'une connexion |
AdstateOpen, AdstateClosed, |
if
(cn.state = adStateOpen) then …end if |
|
ADOdb |
UID |
. |
User
Identifier |
...Uid=sa;… |
|
API |
findWindow |
recherche la fenêtre |
. |
If
FindWindow(vbNullString, "Calculator") = 0 Then.. |
|
API |
getDriveType |
type
de l'unité de disque |
. |
. |
|
base |
[ ] |
doubles crochets (DAO) |
. |
rs![code postal] |
|
base |
= |
égal
(VB) |
. |
if
(ex1 > ex2) then ex3=ex4 |
|
base |
>= |
plus
grand ou égale (VB) |
. |
If
(ex1 >= ex2) then
End If |
|
base |
ASC |
valeur
numérique à partir d'une chaîne de caractère |
. |
. |
|
base |
code |
fenêtre avec le code |
. |
. |
|
base |
collection |
collection |
. |
. |
|
base |
component |
composant (VB) |
components : controls, designers, |
Microsoft flexGrid control |
|
base |
current |
actuel |
. |
. |
|
base |
index |
index |
. |
. |
|
base |
infotext |
info-
bulle |
. |
. |
|
base |
match |
correspondre |
match
case |
. |
|
base |
matching |
correspondant |
. |
. |
|
base |
module |
module |
. |
ex5.bas |
|
base |
navigate |
navigation |
. |
ex5.navigate "www.google.fr" |
|
base |
nothing |
rien |
. |
set rs
= nothing ' (rs=recordset) |
|
base |
object |
objet
(VB) |
. |
public
sub ex1 (ex2 as Object) End Sub |
|
base |
procedure |
routine |
. |
ex5_change, ex5_click |
|
base |
property |
propriété |
. |
Public
Property Get ex1() as String End Property |
|
base |
reference |
référence (VB) |
references |
Microsoft graph 5.0 object library |
|
base |
step |
étape |
. |
. |
|
base |
tabstrip |
onglet |
. |
. |
|
caractère |
char |
fonction caractère |
. |
ex5 =
"toto"+char(1) -> toto49 |
|
caractère |
left |
à
gauche |
. |
ex5 =
left (ex1,10) ' prendre les 10 caractères à gauche |
|
caractère |
left |
à
gauche (C++) |
. |
ex1=
left$(ex2,1) |
|
caractère |
left$ |
gauche$ |
. |
If
(Left$(ex1, 5) = "exe_5") Then End If |
|
caractère |
LEN |
longueur |
LENgh |
if
len(ex5.text) > 0 then |
|
caractère |
len |
longueur (VB) |
. |
select
ex1, ex2 from ex where len(ex5) <> 0 |
|
caractère |
Mid |
milieu |
. |
ex5=mid ("AAAAA BBBBBB ", 6,6) ' ex5 = BBBBBB |
|
caractère |
Mid |
moyen |
. |
. |
|
caractère |
right |
caractères à droite |
. |
ex5 =
right (ex1, 25) |
|
caractère |
right |
à
droite |
. |
if
(Right(ex5,1) <> "A") then… |
|
caractère |
text |
texte
(VB) |
Textbox, |
with
ex1 ex1=.text End With |
|
caractère |
trim |
supprime les espaces |
. |
ex
=Trim(Str(Val(compteur))) …ex1 = "ex5" + ex |
|
classe |
class
module |
module
de classe |
. |
. |
|
classe |
method |
méthode (VB) |
. |
beep,
show, reflesh, |
|
classe |
object |
objet |
. |
entités : méthode, text, label, propriété, événement |
|
clavier |
CTRL+space |
permet
de voir les différentes possibilités |
. |
. |
|
clavier |
F5 |
démarrage en VB |
START |
. |
|
clavier |
F8 |
avancé
à l'intérieur |
step
into (debug) |
. |
|
clavier |
F9 |
..... |
toggle
breakpoint |
. |
|
communication |
DDE |
ensemble de propriétés |
linkitem, linkmode, lintimeout, linktopic, |
. |
|
constante |
&H |
constante de couleur |
. |
Global
Const c_orange = &H80FF& |
|
constante |
&H800000 |
gris
(couleur) |
. |
....BackColor = &H800000 |
|
constante |
&Hbbggrr |
couleur (blanc, vert, rouge) |
. |
. |
|
constante |
&HC0& |
couleur sang |
blood,
#C00000 |
ex5.BackColor = &HC0& |
|
constante |
adStateClosed |
objet
est fermé (situation par défaut) |
. |
. |
|
constante |
adstateopen |
état
d'ouverture de la connexion |
. |
f
(cn.state = adStateOpen) then …end if |
|
constante |
color
constant |
constante de couleur |
. |
. |
|
constante |
const |
constante (VB) |
constant |
Const
ex1=1 ...Const ex2="ex5" |
|
constante |
constant |
constante |
. |
vbNullString |
|
constante |
null |
nul
(VB) |
. |
if
(ex5 = Null) then …End if |
|
constante |
S_FALSE |
constante "faux"' |
. |
vaut
00000001 |
|
constante |
vbAbortRetryIgnore |
constante : affiche le bouton Abandonner, Réessayer … |
. |
MsgBox
message, vbAbortRetryIgnore, "ex5 1" |
|
constante |
vbArray |
constante tableau |
. |
. |
|
constante |
vbBlack |
constante équivalent à la couleur "noire" |
&h00 |
ex5(1).ForeColor = vbBlack |
|
constante |
vbBlue |
bleu |
&hFF0000 |
. |
|
constante |
vbBoolean |
constante booléen |
. |
. |
|
constante |
vbByte |
constante octet |
. |
. |
|
constante |
VBCR |
constante VB (retour chariot) Chr(13) |
carriage return character |
ex5
="ex1" & vbCr & ex2 |
|
constante |
vbCritical |
message critique |
. |
MsgBox
" ex5 :", vbCritical, "EX1" |
|
constante |
vbCritical |
16 :
affiche l'icône Message critique |
. |
. |
|
constante |
VBCRLF |
combinaison de CR LF |
Carriage return–linefeed combination |
. |
|
constante |
vbCurrency |
donnée
monétaire |
. |
. |
|
constante |
vbDataObject |
objet
non OLE automation |
. |
. |
|
constante |
vbDate |
constante date |
. |
. |
|
constante |
vbDecimal |
constante nombre décimal |
. |
. |
|
constante |
vbDefaultButton1 |
0 : le
premier bouton est le bouton par défaut |
. |
. |
|
constante |
vbDefaultButton2 |
256 Le
deuxième bouton est le bouton par défaut |
. |
. |
|
constante |
vbDouble |
nombre
en virgule flottante double précision |
. |
. |
|
constante |
vbEmpty |
vide
(non initialisée) |
. |
. |
|
constante |
vbError |
numéro
d'erreur |
. |
. |
|
constante |
vbExclamation |
48
affiche l'icône Message d'avertissement |
. |
. |
|
constante |
vbGreen |
vert |
&hFF00 |
. |
|
constante |
vbInformation |
64
Affiche l'icône message d'information |
. |
. |
|
constante |
vbInteger |
constante entier |
. |
. |
|
constante |
vbKey |
constante de code de touches |
. |
vbKeyTab, vbKeyClear |
|
constante |
VBLF |
constante VB retour à la ligne -> char(10) |
Linefeed |
. |
|
constante |
vbLong |
. |
entier
long |
. |
|
constante |
vbMagenta |
magenta |
&hFF00FF |
. |
|
constante |
VbNewLine |
constante VB nouvelle ligne |
Chr(13) + Chr(10) |
. |
|
constante |
vbNull |
nul
(pas de donnée valide) |
. |
. |
|
constante |
vbNullString |
string
à nul |
. |
hex5 =
FindWindow(vbNullString, "ex5") |
|
constante |
vbOjbect |
. |
object
OLE automation |
. |
|
constante |
vbOKCancel |
1 :
affiche les boutons OK et Annuler |
. |
. |
|
constante |
vbOkCancel |
constante "ok, supprimer" pour msgbox |
. |
. |
|
constante |
vbOKOnly |
0 :
affiche le bouton OK uniquement |
. |
. |
|
constante |
vbQuestion |
32
Affiche l'icône requête d'avertissement |
. |
. |
|
constante |
vbQuestion |
affichage d'un point d'interrogation dans msgbox |
. |
. |
|
constante |
vbRetryCancel |
5:
affiche les boutons Réessayer et Annuler |
. |
. |
|
constante |
vbSingle |
nombre
en virgule flottante simple précision |
. |
. |
|
constante |
vbString |
chaîne
de caractères |
. |
. |
|
constante |
vbTab |
tabulation horizontale (chr(9)) |
. |
ex5.Clip = "toto" & vbTab & "toto1" |
|
constante |
vbVariant |
variant (pour des tableaux de variants) |
. |
. |
|
constante |
vbWhite |
constante équivalent à la couleur blanche |
. |
ex5(1).ForeColor = vbWhite |
|
constante |
vbYellow |
jaune |
&hFFFF |
. |
|
constante |
vbYes |
réponse oui |
. |
if ex5
= vbYes then |
|
constante |
vbYesNo |
constante VB "oui non" |
. |
. |
|
constante |
vbYesNo |
4 :
affiche les boutons Oui, Non et Annuler |
. |
. |
|
constante |
vbYesNoCancel |
3:
affiche Abandonner, Réessayer et Ignorer |
. |
. |
|
contrôle |
ActiveX Control |
contrôle ActiveX |
ActiveX controls |
datagrid, datalist, MSHflexGrid, |
|
contrôle |
ADODC |
. |
ADO
Data Control |
Msadodc.ocx |
|
contrôle |
animate button |
bouton
animation |
. |
. |
|
contrôle |
animation |
animation |
. |
. |
|
contrôle |
button |
bouton
(VB) |
button
: enabled, value, |
. |
|
contrôle |
checkBox |
case à
cocher |
. |
. |
|
contrôle |
comboBox |
liste
modifiable |
. |
. |
|
contrôle |
comboBox |
zone
de liste déroulante modifiable |
. |
cbo |
|
contrôle |
command button |
bouton
de commande |
. |
. |
|
contrôle |
commandButton |
bouton
de commande |
. |
. |
|
contrôle |
control |
contrôle (intrinsèques, ActiveX) |
. |
checkbox, combobox, label, textbox, |
|
contrôle |
control button |
bouton
de contrôle |
. |
. |
|
contrôle |
convention |
convention |
. |
Frm :
from Txt : text |
|
contrôle |
coolbar |
barre
d'outils |
. |
. |
|
contrôle |
data |
donnée
(contrôle) |
. |
lié à
DAO, préfixe : dat, |
|
contrôle |
data
control |
contrôle de données |
. |
. |
|
contrôle |
datareport |
permet
de faire des impressions |
. |
. |
|
contrôle |
DBGRID |
grille
avec données |
Microsoft DataGrid Control |
Dbgrid32.ocx |
|
contrôle |
dblist |
liste
de données |
. |
. |
|
contrôle |
dialog
box |
boîte
de dialogue |
font
dialog box, color dialog box, print dialog box, |
ShowPrinter, InputBox, ShowSave, ShowOpen, |
|
contrôle |
dirlistbox |
liste
de dossiers |
. |
. |
|
contrôle |
driverlistbox |
contrôle pour la gestion des répertoires |
. |
. |
|
contrôle |
DTPicker |
permet
la saisie formatée d'une date |
. |
. |
|
contrôle |
filelistbox |
liste
de fichiers |
. |
. |
|
contrôle |
flatScrollBar |
barre
de défilement |
. |
. |
|
contrôle |
frame |
cadre
(VB) |
. |
. |
|
contrôle |
gauge |
jauge |
. |
. |
|
contrôle |
GRID |
grille |
col,
colsel, cols, rows, additem, |
. |
|
contrôle |
hScrollBar |
barre
de défilement horizontale |
. |
. |
|
contrôle |
image |
dessin
(VB) |
. |
. |
|
contrôle |
imageList |
liste
d'images |
. |
16x16,
32x32, 48x48 |
|
contrôle |
label |
étiquette (VB) |
label
: forecolor, caption, visible, |
private sub lbl5_click()…end sub,….lbl5.caption="ex" |
|
contrôle |
line |
ligne
('VB) |
. |
. |
|
contrôle |
list |
liste
de données (VB) |
. |
contrôle : listbox, combox, |
|
contrôle |
listBox |
fenêtres de liste |
. |
. |
|
contrôle |
listBox |
zone
de liste |
. |
. |
|
contrôle |
menu |
menu
déroulant VB |
. |
. |
|
contrôle |
MSCOMM |
communication asynchrone |
Microsoft communication control |
mscomm32.ocx |
|
contrôle |
MSFLEXGRID |
grille
flexible |
Microsoft FlexGrid, Microsoft flexibility grid |
ex5.Col= 2 |
|
contrôle |
MSHFLEXGRID |
contrôle de grille |
Microsoft Hierarchical FlexGrid |
. |
|
contrôle |
optionBox |
bouton
d'option |
. |
. |
|
contrôle |
optionbutton |
bouton
d'option |
. |
. |
|
contrôle |
pictureBox |
zone
d'image |
. |
. |
|
contrôle |
progressbar |
barre
de progression |
. |
ProgressBar1.Min=1 |
|
contrôle |
radiobutton |
case
d'option |
. |
. |
|
contrôle |
RDC |
contrôle d'accès aux données |
remote
data control |
. |
|
contrôle |
shape |
forme
(VB) |
. |
. |
|
contrôle |
ShowPrinter |
boîte
de dialogue imprimer |
show
Print or Print Options dialog box |
. |
|
contrôle |
spinbutton |
bouton
toupie |
. |
. |
|
contrôle |
SSTAB |
page à
onglets |
. |
. |
|
contrôle |
statusbar |
barre
d'état |
. |
. |
|
contrôle |
textBox |
zone
d'édition, zone de texte |
. |
TextBox1.Text="ex5" |
|
contrôle |
timer |
horloge (en millisecondes) |
name,
index, interval, left tag, top, |
tmrex5.Enabled = True |
|
contrôle |
togglebutton |
bouton
bascule |
. |
. |
|
contrôle |
toolbar |
barre
d'outils (contrôle) |
. |
. |
|
contrôle |
treeview |
liste
en arbre |
treeviews |
. |
|
contrôle |
TXT |
texte
(VB) (préfixe), Boite Texte |
TextBox, |
. |
|
contrôle |
vScrollBar |
barre
de défilement verticale |
. |
. |
|
convention |
CBO |
lste
modifiable |
ComBoBox |
. |
|
convention |
CHK |
case à
cocher |
CheckBox |
. |
|
convention |
CMD |
bouton
de commande |
CoMmanD |
. |
|
convention |
DAT |
contrôle de données |
Data
OLE |
. |
|
convention |
DBC |
Liste
Modifiable Base de Données |
DbCombo |
. |
|
convention |
DBG |
Grille
Base de Données |
DBGrid |
. |
|
convention |
DIR |
Liste
répertoires |
DirListBox |
. |
|
convention |
DRV |
Liste
unités fixes |
DriveBox |
. |
|
convention |
FIL |
Liste
fichiers |
FileListBox |
. |
|
convention |
FRA |
cadre |
FRAme |
. |
|
convention |
FRM |
formulaire en Decforms |
FoRM |
ex5.frm |
|
convention |
IMG |
dessin |
Image |
. |
|
convention |
LIN |
Lignes |
Lines |
. |
|
convention |
LST |
List
simple |
List
Box |
. |
|
convention |
mnu |
menu |
. |
. |
|
convention |
ONG |
onglet |
. |
. |
|
convention |
OPT |
bouton
d'option |
. |
. |
|
convention |
SHP |
Formes |
Shapes |
. |
|
convention |
TMR |
Minuterie |
Timer |
. |
|
convention |
vsb |
vertical |
. |
. |
|
database |
connection string |
chaîne
de connexion |
. |
"string" de connexion |
|
database |
data
environment |
environnent de base de données |
DataEnvironment, connection, command, |
. |
|
database |
data-bound |
composant relié aux données |
. |
. |
|
database |
DBMS |
système de gestion de base de données |
Data
Base Management System |
SGBD |
|
date |
D |
jour |
day |
Format$(Date, "mm/dd/yyyy") |
|
date |
date |
fonction date |
. |
ex5 =
Format$(Date, "mm/dd/yyyy") |
|
date |
date |
date |
. |
dim
ex5 as date |
|
date |
Date
formatting |
format
de date |
. |
. |
|
date |
DAY |
retourne le jour (1-31) (VB, .net) |
. |
. |
|
date |
H |
heure |
hour, |
ex5 =
Format$(Time, "hh:mm:ss") |
|
date |
M |
minute |
. |
ex5 =
Format$(Time, "hh:mm:ss") |
|
date |
M |
mois |
month |
ex5 =
Format$(Date, "mm/dd/yyyy") |
|
date |
minute |
minute
(propriété d'un objet) |
. |
. |
|
date |
now |
maintenant |
. |
ex5 =
Format(Now, "YYMMDD") |
|
date |
S |
seconde |
second, |
Format$(Time, "hh:mm:ss") |
|
date |
time |
heure
système courante |
. |
ex5 =
Format$(Time, "hh:mm:ss") |
|
date |
weekday |
jour
de semaine |
. |
. |
|
date |
Y |
année |
year |
ex5 =
Format$(Date, "mm/dd/yyyy") |
|
date |
year |
retourne l'année de 100-9999 (.net, VB) |
. |
. |
|
debug |
break
point |
point
d'arrêt |
. |
. |
|
debug |
clear
all break |
suppression de tous les point d'arrêts |
clear
all breaks |
ctrl+shift+F9 |
|
debug |
end |
terminaison |
. |
. |
|
debug |
error
trap |
piège
à erreurs |
. |
. |
|
debug |
quick
watch |
espion
express |
. |
SHIFT+F9 |
|
debug |
step
Into |
pas à
pas détaillé ("allez dedans") |
. |
F8 |
|
debug |
step
out |
pas à
pas sortant |
. |
ctrl+shift+F8 |
|
debug |
step
over |
pas à
pas principal |
. |
shift+F8 |
|
debug |
Toggle
Breakpoint |
basculer le point d'arrêt |
. |
F9 |
|
donnée |
@ |
currency entier |
. |
. |
|
donnée |
boolean |
booléen |
. |
dim
ex5 as Boolean |
|
donnée |
BYTE |
octet
(8 bits) |
Binary
Term / Binary Digit |
256 :
nombre entre 0 à 255 (8 bits) |
|
donnée |
currency |
monétaire |
. |
. |
|
donnée |
DATA |
donnée
(ensemble de propriétés) |
datafield, dataformat, datamember, |
. |
|
donnée |
data
type |
type
de valeur |
. |
byte,
integer, boolean, long, date, |
|
donnée |
declaration |
déclaration |
. |
public
const ex5 as long = 0 |
|
donnée |
double |
réel
double |
. |
. |
|
donnée |
integer |
entier |
. |
dim
ex5 as integer |
|
donnée |
long |
entier
double précision |
. |
dim
ex5 as long…dim ex(150) as Long ' tableau |
|
donnée |
private |
privé
(VB) |
. |
private sub ex1(ex2 as Boolean) ...End Sub |
|
donnée |
public |
publique |
. |
public
const ex5 as Integer = 0 |
|
donnée |
static |
statistique |
. |
. |
|
donnée |
string |
chaîne
de caractères |
. |
dim
ex5 as string |
|
donnée |
type |
types
spécifiques |
. |
type
ex5 A as integer…end type |
|
donnée |
variable |
variable |
. |
byte,
integer, boolean, long, date, |
|
donnée |
variant |
variant |
. |
Dim
status As Variant |
|
événement |
change |
modification |
…_change() |
private sub Txtex5_change()…end sub |
|
événement |
click |
cliquez sur |
.._click() |
private sub label1_click() … End Sub |
|
événement |
dblclick |
double
click |
. |
. |
|
événement |
dragdrop |
copier
coller |
. |
. |
|
événement |
dragover |
déplacé au-dessus |
. |
. |
|
événement |
gotFocus |
obtention du focus |
. |
. |
|
événement |
keyup |
relâchement d'une touche du clavier |
. |
. |
|
événement |
load |
chargement d'une feuille |
. |
Private Sub Form_load(), _load, |
|
événement |
lostfocus |
perte
du focus |
. |
. |
|
événement |
unload |
décharger |
..._unload(Cancel as Integer), _unload, |
Private sub form_Unload(cancel as integer)…Unload Me |
|
événement |
validate |
validation |
. |
. |
|
extension |
BASE |
fichier module (VB) |
BASIC
Source Code |
ex5.bas |
|
extension |
CTL |
fichier de contrôles ActiveX (en VB) |
. |
. |
|
extension |
DEP |
..... |
Setup
Wizard Dependency |
ex5.dep |
|
extension |
FRX |
fichier de données du "form" |
Form
data file |
ex5.frx, ex5.frm |
|
extension |
HPJ |
.... |
Help
ProJect file (help Compiler) |
. |
|
extension |
PAG |
fichier pages de propriétés (en VB) |
PAGe |
. |
|
extension |
PDM |
..... |
Product Data Management |
. |
|
extension |
RES |
ressource |
RESources |
. |
|
extension |
VBG |
extension pour un groupe de projets |
VB
group, Visual Basic Group Project, |
. |
|
extension |
VBP |
fichier projet |
VB
project |
.vbp
-> .frm (form), .bas(module), .cls (class |
|
extension |
VBW |
fichier projet |
Visual
Basic Project Workplace |
exemle.VBW : |
|
extension |
VBX |
extension VB |
Visual
Basic Extension |
. |
|
extension |
VGB |
fichier groupe de projets (en VB) |
Visual
basic Group |
. |
|
fenêtre |
child |
fils |
. |
. |
|
fenêtre |
children |
progéniture |
. |
. |
|
fenêtre |
color
palette |
palette de couleurs |
. |
. |
|
fenêtre |
data
view |
voir
et modifier les connexions DB |
data
view window, data links |
. |
|
fenêtre |
form |
fenêtre |
form1.Caption="Titre" |
. |
|
fenêtre |
form
layout |
permet
de voir ou se situe les forms |
form
layout window, |
. |
|
fenêtre |
immediate |
exécution |
. |
? A…25 |
|
fenêtre |
local |
local
(variable) |
locales window, locales, |
private sub ex5() ..dim toto as integer … end sub |
|
fenêtre |
modal |
modale
(fenêtre) |
. |
. |
|
fenêtre |
object |
fenêtre objet |
. |
form,(general), |
|
fenêtre |
object
browser |
explorateur d'objets |
. |
. |
|
fenêtre |
project |
projet |
project browser : forms, modules, Designers, |
extension (.vbp) |
|
fenêtre |
project explorer |
explorateur de projets |
. |
. |
|
fenêtre |
Properties Window |
fenêtre Propriétés |
. |
. |
|
fenêtre |
property |
propriété (VB) |
properties, |
forecolor, backcolor, name, caption, tag, |
|
fenêtre |
propriety |
fenêtre de propriétés, |
properties window, |
. |
|
fenêtre |
toolbar |
barre
d'outils (VB) |
content : debug, edit, form editor, standard, |
est
une fenêtre ancrable contenant plusieurs boutons |
|
fenêtre |
toolbox |
boîte
à outils (VB) |
. |
content : listbox, textbox, label, ComboBox, |
|
fenêtre |
watch |
surveiller |
watch
window, |
fenêtre de surveillance |
|
fichier |
MSCOMCTL |
contrôle |
Microsoft Windows Common Controls |
msComctl.ocx |
|
fichier |
VB6 |
Visual
Basic 6 |
C:\Program Files\Microsoft Visual Studio\VB98\vb6.exe |
. |
|
fichier |
VSS_V6 |
…….. |
visual
source safe |
C:\Program Files\...\VSS\win32\SSEXP.EXE |
|
fonction |
array |
tableau (VB) |
. |
dim
ex5..ex5=Array("A","B") |
|
fonction |
CHR |
conversion valeur numérique en caractère(s) |
chraracter |
ex5_char= "nom : " + chr(ex5) |
|
fonction |
CINT |
conversion en entier |
Convert INTeger |
ex =
Cint (Asc("0")) |
|
fonction |
curdrive |
changement de répertoire |
. |
. |
|
fonction |
DateDiff |
différence de dates (diffdate) |
. |
. |
|
fonction |
DateSerial |
Série
date |
. |
. |
|
fonction |
DIR |
répertoire (VB) |
. |
ex5 =
dir ('c:\*.txt") |
|
fonction |
filecopy |
copier
un fichier |
. |
FileCopy "d:\ex5.txt,"c:\ex5.txt" |
|
fonction |
FILELEN |
retourne la taille d'un fichier en octet. |
. |
. |
|
fonction |
FIX |
fixer |
. |
. |
|
fonction |
FORMAT |
formater |
. |
ex =
format (date,"dd/mm/yy") |
|
fonction |
format$ |
formatage de dates,… |
. |
ex5 =
format$(date,"dd/mm/yyyy") |
|
fonction |
function |
fonction (VB) |
year,
trim, chr, right, len, rtrim, |
public
function ex1(EX2 as integer) as Integer ... End Function |
|
fonction |
IIF |
si
condition partie vraie sinon partie fausse |
Immediate IF |
ex5=
IIf(ex1>ex2,0,1) |
|
fonction |
InputBox |
boîte
de saisie |
. |
ex5 =
InputBox ("age ?","introduire votre âge","25") |
|
fonction |
InStr |
recherche une zone de caractère dans une autre |
. |
ex5=
InStr("marche","a",1) ' position de a dans marche |
|
fonction |
IsEmpty |
est
vide |
. |
. |
|
fonction |
IsMissing |
paramètre manquant ou pas |
. |
if
IsMissing(ex5) then…End If |
|
fonction |
isNull |
indique si une variable est vide |
. |
if
(Not IsNull (ex5)) then ex1=4 |
|
fonction |
isNumeric |
test
si expression est un nombre ou pas |
. |
if
IsNumeric(ex5) = true then |
|
fonction |
lbound |
retourne le plus petit indice d'un tableau |
. |
. |
|
fonction |
Lcase |
converti les caractères d'une chaîne en minuscule |
. |
if
Lcase (ex5) <> "toto") then…end if |
|
fonction |
ltrim |
retirer les blancs au début |
. |
. |
|
fonction |
messageBox |
boîte
de message |
. |
. |
|
fonction |
MKDIR |
création d'un répertoire (VB) |
Make
DIRectory |
mkdir
"d:\ex5" |
|
fonction |
monthname |
nom du
mois et du jour de la semaine |
. |
. |
|
fonction |
print |
écrire
dans un fichier ou affichage d' un texte à l'écran |
. |
Open
ex1 For Append As #7…Print #7, ex_fichier…close#7 |
|
fonction |
rtrim |
supprimer les blancs à droite |
. |
ex1=RTrim(ex2) |
|
fonction |
SGN |
signe
de l'expression |
sign |
. |
|
fonction |
shell |
lancer |
. |
shell
"c:\ex5.exe" |
|
fonction |
space$ |
espace$ |
. |
ex5=
space$(128) |
|
fonction |
SQR |
racine
carrée |
square
Racine |
. |
|
fonction |
STR |
retourne la chaîne de caractères |
string |
label1.caption = str(ex5) |
|
fonction |
strcomp |
compare deux chaînes de caractères |
. |
. |
|
fonction |
UBOUND |
retourne le plus grand indice d'un tableau VB |
upper
bound |
. |
|
fonction |
UCASE |
met
majuscule le texte (VB) |
Upper
CASE |
if
Ucase (ex5) ="TOTO" then…End If |
|
fonction |
val |
nombre
(valeur) |
. |
ex1 =
val(ex2) |
|
fonction |
weekdayname |
retourne le jour de la semaine |
. |
. |
|
icône |
controlBox |
icône
sous forme de croix |
. |
. |
|
icône |
maxButton |
bouton
d'agrandissement |
. |
. |
|
icône |
minbutton |
bouton
d'agrandissement |
. |
. |
|
instruction |
' |
commentaire |
. |
'
-------- remarque ------- |
|
instruction |
' ' |
dans
les ordres SQL pour les champs caractères |
. |
ex5 =
"select * from ex1 where ex1= ' " & toto & " ' " |
|
instruction |
" " |
double
guillemets """ |
double
quote, "" |
ex5 =
ex1 + "texte" |
|
instruction |
# |
dièse |
. |
open
ex5 for Append as #10 |
|
instruction |
#if
#end if |
si ….
Fin de si |
. |
. |
|
instruction |
& |
pour
les valeurs de couleurs |
ampersand |
ex5.backcolor = &H8000& |
|
instruction |
& _ |
permet
de mettre la suite d'une ligne sur une autre |
. |
ex5="select * " & _ "from ex1" |
|
instruction |
() |
en
rapport avec un tableau |
array |
global
ex5(10) as boolean |
|
instruction |
: |
permet
de mettre plusieurs instruction sur la même ligne |
. |
A=B :
C=2 |
|
instruction |
: |
étiquette (VB) |
label |
On
Error GoTo ex5…...ex5:… |
|
instruction |
_ |
souligné |
. |
if
(IsNumeric(ex5) = true AND _ |
|
instruction |
<=cvcvcxvx |
plus
petit ou égal |
. |
if
(ex5(3) <=0) then..end if |
|
instruction |
apostrophe |
commentaire (') |
. |
' ex5
de commentaire |
|
instruction |
append |
joindre (ajouter) |
. |
open
ex5 for append as #3…print #3, ex1…close #3 |
|
instruction |
as |
comme |
. |
dim
nombre as long…dim const ex5 as integer=2 |
|
instruction |
as
String |
comme
caractère |
. |
Const
ex5 As String = "contenu de ex5" |
|
instruction |
case |
cas
((VB) |
select
case…end select |
select
case (valeur) ...case ex5:.. End select |
|
instruction |
chr(13) |
retour
chariot (13h) |
CR,
carriage return, pas nom, |
MsgBox
"Er " + Str(Err.Number) + Chr(13) + Err.Description |
|
instruction |
close |
fermer
un fichier |
. |
Open
ex5 For Append As #7...Print #7, ex5 .. Close#7 |
|
instruction |
const |
constante |
constant |
public
const ex5 as integer=150 |
|
instruction |
debug |
déboguer |
. |
Debug.print rst.Fields(1) |
|
instruction |
dim |
dimensionner une variable |
. |
Dim
ex5 As long |
|
instruction |
dim as |
dimensionnement d'une variable |
. |
Dim
nombre as long |
|
instruction |
Do
Loop |
boucle
(do while) |
Do
while…loop |
do
while ex5 < 100…ex5=ex5+1…Loop |
|
instruction |
Do
Loop |
boucle
(do until) |
Do
until…loop |
do
until ex5 >=100…ex5=ex5+1…loop |
|
instruction |
do
until |
faire
jusqu'à (VB) |
. |
. |
|
instruction |
do
while |
bouche
tant que "do while wend" |
Do
While ...wend |
Do
While not rs!EOF…rs.movenext...Wend |
|
instruction |
do
while |
boucle
tant que (Visual Basic) |
do
while… loop |
do
while ex1 < 10…ex1=ex1+1…loop |
|
instruction |
end |
fin
(VB) |
. |
If
App.PrevInstance = 1 Then End |
|
instruction |
Enum |
énumération (VB) |
. |
private Enum ex5…ex1… ex2…End Enum |
|
instruction |
EOF |
fin de
fichier (VB) |
End Of
File |
do
while not EOF(1)…loop |
|
instruction |
exit |
quitter (VB) |
. |
. |
|
instruction |
exit
function |
sortir
de la fonction |
. |
private function ex5(…) …if (a>2) then Exit Function |
|
instruction |
Exit
Sub |
sortie
de la procédure (sous-routine) |
. |
Private Sub ex5() ...exit sub…End Sub |
|
instruction |
for |
pour
-> boucle en Visual Basic |
for
..to...next, |
for i
to ex5 …. Next i |
|
instruction |
for
each |
pour
chaque (VB, VBA) |
for
each …next |
for
each ex1 in ex2 … next ex1 |
|
instruction |
function |
fonction |
. |
public
function…. End Function |
|
instruction |
global |
global |
. |
global
ex5 as string |
|
instruction |
goto |
atteindre |
. |
On
Error Goto 0 |
|
instruction |
instruction |
instruction |
for
each, do while, do loop, set, |
. |
|
instruction |
LIB |
librairie |
LIBrary |
Declare Function GetWindow Lib "user32" ..As Long |
|
instruction |
loop |
boucle |
do
while …loop, |
do
while ex < 3…ex=ex+1 …loop |
|
instruction |
msgbox |
boîte
de message |
message box |
msgbox
"ex5", vbYesNo,"titre") |
|
instruction |
new |
nouvelle instance d'une classe (VB) |
. |
set
ex5 = New ex1 |
|
instruction |
on
Error |
sur
erreur |
. |
on
error resume next |
|
instruction |
on
error goto |
sur
une erreur aller à (étiquettes,…) |
. |
On
Error GoTo ex5…ex5: |
|
instruction |
on
goto |
aller
à (VB) |
. |
. |
|
instruction |
OPEN |
ouvrir
un fichier |
Open…For Append As |
Open
ex5 For Append As #7 Print #7, ex5 Close #7 |
|
instruction |
option
explicit |
déclaration explicite des variables |
. |
option
explicit |
|
instruction |
optional |
optionnel |
. |
Optionnal ByVal … |
|
instruction |
preserve |
préserver |
. |
. |
|
instruction |
print |
affichage de contenu d'une donnée |
. |
print
ex5 |
|
instruction |
REDIM |
redimensionner un tableau |
. |
ReDim
ex5(200 to 210) |
|
instruction |
ReDim
Preserve |
redimensionnement en gardant les données |
. |
ReDim
Preserve ex5 (200 to 230) |
|
instruction |
REM |
commentaire en VB |
remark |
. |
|
instruction |
select
case |
sélection suivant la valeur d'une variable |
. |
select
case (ex5)…case ex1:…end select |
|
instruction |
set |
mettre
une variable à une valeur |
. |
set rs
= Nothing ' (recordset) |
|
instruction |
SUB |
procédure (sous-routine) |
sub…,
private sub txt_change(), private sub lbl_click(), |
Private Sub ex5() ….End Sub |
|
instruction |
then |
alors
(VB) |
. |
if
(ex5=1) then beep |
|
instruction |
underscore |
continuation de la ligne (_) en VB |
. |
. |
|
instruction |
while |
tant
que (VB) |
. |
while
not (rst.EOF) …Wend |
|
instruction |
with |
avec |
. |
With
label2 .caption="ex5"…End With |
|
langage |
VB |
langage Visual Basic |
Visual
Basic, VB6, VB5, |
société : Microsoft |
|
langage |
Visual
Basic |
langage Visual Basic |
VB |
. |
|
logique |
and |
et
(opérateur) |
. |
if
(ex5=1 and toto =3) then end if |
|
logique |
false |
faux
(VB) |
. |
if
(ex5 = false) then…end if….ex1= false… |
|
logique |
if |
si
(VB) |
. |
if
(ex5(i)="vrai") then…end if |
|
logique |
if |
si (VB
autre exemple) |
. |
#if
ex1 then #End If |
|
logique |
if |
si
(condition) |
. |
if
ex5=0 then ex1=3 |
|
logique |
not |
pas
(ne pas...) |
. |
if
(not rs.EOF) then ..End If |
|
logique |
or |
ou |
. |
if
(ex5 = 1 or ex5 = 2) then…end if |
|
logique |
true |
vrai |
. |
if
IsNumeric(ex5) = true then |
|
math |
ABS |
valeur
absolue |
. |
if
Abs(ex5 < 20) then… |
|
math |
COS |
cosinus |
. |
. |
|
math |
MOD |
reste
de la division entière |
modulo |
ex5 =
ex1 Mod ex2 |
|
math |
round |
retourne un nombre arrondi |
. |
. |
|
math |
TAN |
fonction tan (tangente) |
. |
. |
|
menu |
add-in |
synonyme de plug-in |
add-ins, visual data manager, |
. |
|
menu |
diagram |
diagramme (VB) |
. |
. |
|
menu |
format |
format |
align,
center in form, |
. |
|
menu |
make |
créer
un exécutable (EXE) |
. |
menu :
fichier, make -> création d'un exécutable |
|
menu |
query |
interrogation |
. |
. |
|
méthode |
accept |
accepter |
. |
. |
|
méthode |
activate |
activer |
. |
. |
|
méthode |
additem |
ajouter des éléments (combo) |
. |
combo1.additem "1" |
|
méthode |
beep |
bip
(VB) |
. |
. |
|
méthode |
getData |
données stockées dans la mémoire tampon |
. |
. |
|
méthode |
hide |
cacher
une feuille |
. |
. |
|
méthode |
move |
déplacement |
. |
Me.Move (ex1,ex2) |
|
méthode |
refresh |
actualiser |
. |
. |
|
méthode |
setFocus |
permet
de se positionner sur un élément |
. |
cmdex5.SetFocus |
|
méthode |
SHOW |
afficher (montrer) une feuille |
ex1.show vbModal |
ex5.show 1, Me ' modal=1 |
|
méthode |
showColor |
boîte
de dialogue choix d'une couleur |
. |
. |
|
méthode |
ShowFont |
boite
de dialogue choix d'une police de caractères |
Show
Font dialog box |
. |
|
méthode |
showHelp |
appel
l'aide en ligne |
. |
. |
|
méthode |
showOpen |
boîte
de dialogue ouvrir |
Open
dialog box |
. |
|
méthode |
ShowSave |
boîte
de dialogue enregistrer sous |
Save
As dialog box |
. |
|
méthode |
zorder |
méthode VB |
. |
.ex1.zorder 0 |
|
nombre |
choose |
choisir |
. |
ex5=Choose(ex1,"A", "B", "C") |
|
nombre |
count |
compteur |
. |
ex1 =
lblex2.Count |
|
nombre |
event |
événement |
. |
click,
dblclick, keypress, load, unload, dragdrop, |
|
nombre |
int |
conversion en entier (C++,VB, .net) |
. |
. |
|
nombre |
value |
valeur
(VB) |
. |
if
ex1.value = 1 then |
|
nombre |
value |
valeur
(SQL) |
. |
insert
into ex5 (compteur) values (…) |
|
objet |
APP |
objet
APP (application) |
APPlication |
app.PrevInstance |
|
objet |
application |
application (VB) |
app |
. |
|
objet |
ERR |
objet
ERR (erreur VB) |
err
(error) : number, description, source, |
msgbox
"Erreur " + str(err.number ) |
|
objet |
form |
feuille de travail |
frm |
fenêtre |
|
objet |
object
model |
modèle
objet |
. |
DAO
(odbc direct), RDO, ADO, |
|
objet |
OMT |
technique "OMT" |
Object
Modelling Technique |
. |
|
objet |
printer |
modèle
pour l'impression |
orientation, copies, |
. |
|
ODBC |
data
source |
nom du
contrôle DATA |
. |
. |
|
opérateur |
- |
moins
(VB) |
. |
A =
B-C |
|
opérateur |
& |
concaténation de chaînes |
and |
ex5.caption = "ex1" & "ex2" |
|
opérateur |
* |
multiplication |
. |
a = b
* C |
|
opérateur |
. |
opérateur (propriété,…) |
point, |
form_ex5.backcolor=&H8000& |
|
opérateur |
\ |
division entière |
. |
. |
|
opérateur |
+ |
concaténation |
. |
ex5 =
fichier + ".txt" |
|
opérateur |
+ |
addition |
. |
ex5 =
ex5 + 1 |
|
opérateur |
< |
plus
petit que |
. |
if
(ex5 < 1000) then …end |
|
opérateur |
<> |
différent de |
angel
brackets |
if
(ex5 <> "rouge") then ... end if |
|
opérateur |
= |
signe
d'affectation |
. |
ex5 =
1 |
|
opérateur |
=> |
plus
grand ou égal |
. |
. |
|
opérateur |
> |
plus
grand que |
greater than |
if
(ex5 > 0 then … end if |
|
opérateur |
operator |
opérateur (VB) |
. |
<, >,
>=, <=, =, <>, not, and, or, MOD,^,/,\, xor, like, |
|
outil |
RC |
éditeur de ressources |
Resource Compiler |
rc.exe |
|
outil |
tool |
outil |
tools |
. |
|
procédure |
property get |
obtenir |
propertyGet, |
. |
|
propriété |
absolutePosition |
numéro
d'enregistrement en cours dans le contrôle data |
. |
. |
|
propriété |
align |
aligner |
. |
. |
|
propriété |
alignment |
alignement (gauche, droit, en haut) |
left,
right, center, top, bottom, |
0 -
left justify, |
|
propriété |
alphabetic |
alphabétique (tri) |
. |
. |
|
propriété |
always
On Top |
toujours visible |
. |
. |
|
propriété |
appearance |
apparence (en 3D ou non) |
appearance : backcolor, borderstyle, forecolor, |
1-3D,
0 = flat, |
|
propriété |
autoredraw |
mémorise des dessins |
. |
. |
|
propriété |
autoSize |
adaptation au contenu |
. |
false,
true |
|
propriété |
backcolor |
couleur de fond |
. |
form1.BackColor = &H8000& |
|
propriété |
backcolorbkg |
couleur de fond hors cellules |
. |
. |
|
propriété |
backcolorfixed |
couleur de fond (cellule fixe) |
. |
(en-tête) |
|
propriété |
backcolorsel |
couleur de fond de la sélection |
. |
. |
|
propriété |
backStyle |
style
Fond |
. |
1 -
opaque, |
|
propriété |
bandLevel |
numéro
de bande |
. |
. |
|
propriété |
borderstyle |
type
de bordure, type de barre de titre |
. |
0 -
none, 1 - fixed single, |
|
propriété |
caption |
titre,
texte visible, |
table
caption |
label1.caption="en service" + ex5 |
|
propriété |
categorized |
par
catégorie (tri) |
. |
. |
|
propriété |
cellAlignment |
l'alignement de la cellule |
. |
ex5.CellAlignment = flexAlignCenterCenter |
|
propriété |
cellBackColor |
couleur de fond de la cellule active |
. |
. |
|
propriété |
cellWidth |
largeur de la cellule active |
. |
. |
|
propriété |
clear |
effacer |
. |
combo1.clear |
|
propriété |
clip |
rogner |
. |
. |
|
propriété |
COL |
colonne |
column |
ex1.col = 4 |
|
propriété |
colAlignment |
alignement des données dans une colonne non fixe. |
. |
. |
|
propriété |
COLS |
colonnes |
columns |
. |
|
propriété |
colWidth |
largeur d'une colonne |
. |
ex5.colWidth(0) = 2010 |
|
propriété |
container |
conteneur |
. |
. |
|
propriété |
copy |
nombre
de copie (copies) |
copies |
ex5.copies = 2 |
|
propriété |
datachanged |
indique que le contenu a changé |
. |
. |
|
propriété |
datafield |
nom du
champ dans le Recordset |
. |
. |
|
propriété |
description |
description de l'erreur |
err.description |
ex5 =
err.description |
|
propriété |
dialogTitle |
donne
le titre de la boîte de dialogue |
. |
. |
|
propriété |
downPicture |
image
que le bouton affiche lorsqu'il est enfoncé |
. |
. |
|
propriété |
dragIcon |
icône
utilisée lors d'un glissement |
. |
. |
|
propriété |
dragMode |
mode
d'initialisation du glissement |
. |
0 -
Manuel |
|
propriété |
enabled |
activer un timer,…. |
. |
tmrex5.enabled |
|
propriété |
fillcolor |
couleur de remplissage |
. |
. |
|
propriété |
fillstyle |
type
de remplissage |
. |
. |
|
propriété |
filter |
filtre |
. |
. |
|
propriété |
fixedCols |
nombre
de colonnes fixes |
. |
. |
|
propriété |
fixedRows |
nombre
de lignes fixes |
. |
. |
|
propriété |
focusRect |
type
de rectangle dessiné pour indiquer le focus (0 à 2) |
. |
. |
|
propriété |
font |
fonte |
. |
MS
sans Serif, |
|
propriété |
fontBold |
font
grasse ou non |
. |
. |
|
propriété |
fontItalic |
police
de caractère en italique ou non |
. |
. |
|
propriété |
fontsize |
corps
du caractère (taille) |
. |
. |
|
propriété |
fontStrikethru |
caractères barrés |
. |
. |
|
propriété |
fontUnderline |
caractère souligné |
. |
. |
|
propriété |
forecolor |
couleur du texte |
. |
ex5.ForeColor = &HC000& |
|
propriété |
forecolorfixed |
couleur des caractères des cellules fixes |
. |
. |
|
propriété |
forecolorsel |
couleur des caractères de la sélection |
. |
. |
|
propriété |
formatString |
chaîne
de mise en forme |
. |
. |
|
propriété |
gridColor |
couleur de quadrillage |
. |
. |
|
propriété |
gridcolorfixed |
couleur de quadrillage des cellules fixes |
. |
. |
|
propriété |
gridlines |
quadrillage |
. |
. |
|
propriété |
gridLineWith |
largeur des lignes de quadrillage |
. |
. |
|
propriété |
headerstyle |
propriété de l' en-tête du datagrid |
. |
. |
|
propriété |
height |
hauteur de la feuille (valeurs en twips) |
. |
. |
|
propriété |
helpContext |
numéro
de la page d'aide. |
. |
. |
|
propriété |
helpContextId |
contexte Aide |
. |
. |
|
propriété |
helpFile |
fichier d'aide |
. |
. |
|
propriété |
highlight |
surbrillance |
. |
msflexgrid |
|
propriété |
hinstance |
identifie l'instance courante de l'application |
. |
. |
|
propriété |
HWND |
refFen
(handle de la fenêtre), handle de la fenêtre |
Handle
WiNDow |
. |
|
propriété |
initDir |
répertoire initial |
. |
. |
|
propriété |
interval |
intervalle pour un timer |
. |
tmrex5.Interval= 10000 |
|
propriété |
key |
clé
(VB) |
. |
ex1=button. key |
|
propriété |
list |
liste |
. |
. |
|
propriété |
listcount |
nombre
total items |
. |
. |
|
propriété |
listindex |
numéro
de l'élément de la liste sélectionné |
. |
cboex5.ListIndex=0 |
|
propriété |
maxLength |
longueur maximum |
. |
. |
|
propriété |
MISC |
divers |
MISCellaneous, alignment, index, mouseIcon, |
propriétés diverses |
|
propriété |
mouseIcon |
icône
de la souris |
. |
. |
|
propriété |
Mousepointer |
aspect
du pointeur de souris |
vbDefault, vbArrow, |
Me.MousePointer= vbHourglass ' en forme de sablier |
|
propriété |
moveable |
mobile |
. |
. |
|
propriété |
multiselect |
sélection multiple |
. |
. |
|
propriété |
name |
nom
interne d'un contrôle, |
. |
label1, lblex5, |
|
propriété |
number |
numéro
de l'erreur |
err.
number, |
msgbox
"Erreur " + str(err.number ) |
|
propriété |
orientation |
orientation (portrait ou paysage) |
. |
ex1.orientation = vbPRORLandscape ' orientation (paysage) |
|
propriété |
paintPicture |
permet
de mettre un dessin |
. |
. |
|
propriété |
palette |
palette |
. |
. |
|
propriété |
parent |
parent |
. |
. |
|
propriété |
picture |
image
de fond de la feuille |
. |
. |
|
propriété |
PrevInstance |
précédente instance |
previous instance |
If
App.PrevInstance = 1 Then End |
|
propriété |
property |
propriété (ADO) |
properties |
Debug.Print cn.Properties("Connect Timeout") |
|
propriété |
readOnly |
lecture seul (VB) |
. |
. |
|
propriété |
redraw |
actualiser |
. |
ex5.Redraw = True |
|
propriété |
righttoleft |
de
droite à gauche |
. |
. |
|
propriété |
rowHeight |
hauteur de ligne |
. |
. |
|
propriété |
scale |
réduire |
. |
. |
|
propriété |
scrollbars |
barres
de défilement |
. |
. |
|
propriété |
selLength |
longueur Sélection |
. |
. |
|
propriété |
selStart |
début
Sélection |
. |
CboEx1.SelStart = 0 |
|
propriété |
sort |
tri |
. |
. |
|
propriété |
sorted |
trié |
. |
. |
|
propriété |
state |
état |
. |
. |
|
propriété |
stretch |
agrandir |
. |
. |
|
propriété |
TAB |
onglet |
tabcontrol |
SStabex5.tab=1 |
|
propriété |
tabIndex |
index
Tabulation |
. |
. |
|
propriété |
tabStop |
arrêt
Tabulation |
. |
. |
|
propriété |
tag |
chaîne
de caractères associée |
. |
. |
|
propriété |
tag |
étiquette |
. |
. |
|
propriété |
top |
sommet |
. |
. |
|
propriété |
visible |
le
contrôle est visible ou non |
. |
Cmdex5.Visible = False |
|
propriété |
whatsThisButton |
bouton
Aide |
. |
. |
|
propriété |
width |
largeur d'un contrôle |
. |
.width
= ex2 |
|
propriété |
windowstate |
état
de la feuille |
vbNormal, vbMinimized, vb, Maximized, window state, |
frm1.WindowsState = vbMinimized |
|
propriété |
wordwrap |
renvoi
à la ligne automatique |
. |
false, |
|
recherche |
find |
recherche |
. |
rs.find ex5 |
|
recordset |
! |
point
d'exclamation (VB) |
not |
ex5.AddItem(rs!toto) |
|
recordset |
! |
élément d'un Recordset |
. |
dim
rs_ex5 = New ADODB.recordset..toto = rs_ex5!nom |
|
recordset |
" " |
double
guillemets (Recordset) |
. |
debug.print rs.fields("ex5").value |
|
recordset |
() |
parenthèses (VB) |
. |
msgbox
rs("ex5") & " " rs("ex1") |
|
recordset |
. |
permet
d'accéder aux méthodes et propriété du Recordset |
. |
rs.movenext |
|
recordset |
addNew |
ajout
d'un enregistrement |
. |
rsex5.AddNew |
|
recordset |
adLockReadOnly |
prise
en lecture seule |
. |
rsex5.open "select…", adOpenStatic, AdLockReadOnly |
|
recordset |
BOF |
début
du Recordset |
Begin
Of File |
valeur
: true, false |
|
recordset |
close |
fermeture d'une connexion, d'un Recordset, |
. |
rs.close ' (rs = recordset) |
|
recordset |
delete |
suppression d'enregistrements |
. |
ex5
="delete from ex1 where toto=5"…conn.Execute ex5 |
|
recordset |
EOF |
dernier enreg. Du Recordset (propriété) |
End Of
File |
Do
While Not adoRS.EOF …Loop |
|
recordset |
fields |
champs |
. |
rsex5.fields("ex5").value |
|
recordset |
insert
into |
insertion dans une base de données |
. |
ex5 =
"insert into toto (compteur) values …" |
|
recordset |
moveFirst |
se
déplacer au début |
. |
rs.movefirst |
|
recordset |
movelast |
aller
au dernier enregistrement |
. |
rs.movelast |
|
recordset |
moveNext |
aller
à l'enregistrement qui suit dans le Recordset |
. |
while
not (rs.EOF)… msgbox rs("e1")….rs.movenext..wend |
|
recordset |
movePrevious |
se
positionner sur enregistrement précédent |
. |
Data1.Recordset.MovePrevious |
|
recordset |
Recordset |
Jeu
d'enregistrements (ensemble d'objets) |
RS,
delete, select, update, new, insert into, |
global
ex5 As ADODB.Recordset |
|
recordset |
RS |
ensemble d'enregistrement |
recordset |
. |
|
recordset |
seek |
positionnement |
. |
. |
|
recordset |
select |
sélectionner (VB) |
. |
set rs
= conn.execute("select ex1 from ex5") |
|
recordset |
update |
mise à
jour d'un enregistrement |
. |
ex5
="update t_ex5 set toto=1" |
|
routine |
form_load |
routine au chargement du form |
form
load |
private sub Form_load()…end sub |
|
SQL |
'' |
valeur
vierge |
. |
select
* from ex5 where ex1 <> "''" |
|
SQL |
-2147217900 |
violation de la clé primaire |
Violation of PRIMARY KEY constraint |
. |
|
SQL |
createDatabase |
création d'une base de données |
. |
set
ex=CreateDatabase('"c:\ex5.mdb,…) |
|
SQL |
drop |
supprimer une table |
. |
sqlstr
= "drop table ex5" |
|
SQL |
like |
correspond à |
. |
select
* from ex5 where ex1 like "mot*" ' ex1 |
|
SQL |
select
into |
copie
d'une partie d'une table dans une autre |
. |
sql =
"select * INTO ex1 from example where ex2='toto" |
|
SQL |
select
into |
copier
une table dans une autre |
. |
sql =
"select * INTO table1 from table2" |
|
tableau |
cell |
cellule d'un tableau |
. |
. |
|
tableau |
row |
ligne
(d'un tableau), rangée |
. |
.row =
ex1 |
|
tableau |
rows |
nombres total de lignes |
. |
. |
|
transaction |
BeginTrans |
débute
une transaction |
Begin
Transaction |
. |
|
transaction |
CommitTrans |
valide
une transaction |
commit
transaction |
. |
|
transaction |
rollback |
annuler une transaction |
. |
. |