Administration des entités, (Web, Web Services, PDA, WidGet, Fat Client)
XAS.Services
  XML Kiosk  
Technologie XAS.Technology Version V 6.0.1
Dernière modification Jeudi 17 Juin 2010 Par Zaïr BEZGHICHE
Dernière vérification Samedi 3 Juillet 2010 Par Support France
ThèmeAdministration des entités, (Web, Web Services, PDA, WidGet, Fat Client) Fonction FrmEntity.DoGrid

Prototype
Function DoGrid (ctrl As Control, NbRow As Integer) As Integer
Usage
Administration-des-entites.DoGrid(...)
HTTP (GET,POST)SOAP WSDLSOAP RESTXML-RPC
Format de sortie
XML HTML TEXT EXCEL(CSV)

Code Source - développement open source
Function DoGrid (ctrl As Control, NbRow As Integer) As Integer
Function DoGrid (ctrl As Control, NbRow As Integer) As Integer
Dim i%
Dim j%

ctrl.Clear

ctrl.Rows = NbRow
MaxGridRow = NbRow
ctrl.Cols = 9
NbRow = NbRow - 1
 
For i = 0 To NbRow
    ctrl.Row = i
    ctrl.RowHeight(i) = 285
    For j = 1 To 8
	ctrl.Col = j
	ctrl.Text = ""
    Next j
Next i
ctrl.RowHeight(0) = 500


For j = 1 To 2
    ctrl.Col = j
    ctrl.ColAlignment(j) = 2
Next j

ctrl.Row = 0
ctrl.Col = 1
ctrl.ColWidth(1) = 3000
ctrl.Text = "Raison Sociale"

ctrl.Col = 2
ctrl.ColWidth(2) = 2000
ctrl.Text = "Nom"

ctrl.Col = 3
ctrl.ColWidth(3) = 1000
ctrl.Text = "Prenom"

ctrl.Col = 4
ctrl.ColWidth(4) = 3000
ctrl.Text = "Adresse"

ctrl.Col = 5
ctrl.ColWidth(5) = 500
ctrl.Text = "CP"

ctrl.Col = 6
ctrl.ColWidth(6) = 1500
ctrl.Text = "Ville"

ctrl.Col = 7
ctrl.ColWidth(7) = 500
ctrl.Text = "Id"

If Val(GlobPU.XasDroit) >= 5 Then
    ctrl.Col = 8
    ctrl.ColWidth(7) = 500
    ctrl.Text = "DB"
End If

DoGrid = True
End Function

Références XAS.Technology
Clear , Val ,

Audience
Cette documentation est destinée aux personnes s'intéressant aux systèmes d'information collaboratifs.
Les Webservices, les architectures collabortives et distribuées, les moteurs transactionnelles et les concepts de programmation orientés objet.


XAS Services - Zaïr BEZGHICHE - Copyright 1991-2011 tous droits réservés- Powered by XAS.Technology