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 Lundi 23 Août 2010 Par Zaïr BEZGHICHE
Dernière vérification Vendredi 10 Septembre 2010 Par Support France
ThèmeAdministration des entités, (Web, Web Services, PDA, WidGet, Fat Client) Fonction CHECKMOD.CheckShortTimeFormat

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

Code Source - développement open source
Function CheckShortTimeFormat (sTime As String) As Integer
Function CheckShortTimeFormat (sTime As String) As Integer
Dim ret%
Dim s$

CheckShortTimeFormat = False

If Len(sTime) <> 5 Then
    Exit Function
End If
s = Mid$(sTime, 3, 1)
If s <> Chr$(58) Then
    Exit Function
End If
s = Mid$(sTime, 1, 2)
If Val(s) > 23 Then
    Exit Function
End If
s = Mid$(sTime, 4, 2)
If Val(s) > 59 Then
    Exit Function
End If

CheckShortTimeFormat = True

End Function

Références XAS.Technology
Len , Mid , Chr , 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