begin process at 2010 09 03 06:20:37
  Trouver un code source :
 
dans
 
Accueil > 

Code

 > 

Date & Heure

 > CALCUL HEURE DE NUIT

CALCUL HEURE DE NUIT


 Information sur la source

Note :
Aucune note
Catégorie :Date & Heure Classé sous :calcul heure, flexgrid, total textbox Niveau :Débutant Date de création :27/01/2009 Date de mise à jour :19/04/2009 10:52:41 Vu / téléchargé :4 071 / 360

Auteur : ocejade

Ecrire un message privé
Commentaire sur cette source (7)
Ajouter un commentaire et/ou une note

 Description

Cliquez pour voir la capture en taille normale
cette source traite du calcul d heures de nuit elle n est pas encore
fini mais peut servir a un débutant
je reste a l écoute des experts pour avoir des conseilles pour enfin finir ma source  

tous reproche ou info est bonne a prendre

Source

  • Private Sub apercu_Click()
  • Printer.TrackDefault = True
  • Printer.ScaleMode = 6
  • Printer.Orientation = 1
  • Printer.PaperSize = 9
  • Printer.PrintQuality = -4
  • Printer.ColorMode = 1
  • Printer.FontSize = 20 'taille de la police
  • DecalX = 20 - (Printer.Width - Printer.ScaleWidth) / 2
  • DecalY = 15 - (Printer.Height - Printer.ScaleHeight) / 2
  • Printer.PaintPicture MSFlexGrid1.Picture, 30, 60
  • Printer.EndDoc
  • End Sub
  • Private Sub Command1_Click()
  • Dim i As Integer
  • i = Row + 2
  • MSFlexGrid1.AddItem Calendar1, 2
  • MSFlexGrid1.TextMatrix(i, 1) = TxtHeureDebut.Text & " h " & TxtMinuteDebut.Text
  • MSFlexGrid1.TextMatrix(i, 2) = TxtHeureFin.Text & " h " & TxtMinuteFin.Text
  • MSFlexGrid1.TextMatrix(i, 3) = TxtHeureResultat.Text & " h " & TxtMinuteResultat.Text
  • MSFlexGrid1.TextMatrix(i, 4) = Txtohsupp.Text & " h " & Txtomsupp.Text
  • MSFlexGrid1.TextMatrix(i, 5) = Textheurenuit.Text & " h " & Textminnuit.Text
  • On Error Resume Next
  • Text5.Text = Text5.Text
  • Texthnorm.Text = CSng(TxtHeureResultat.Text) + CSng(Texthnorm.Text)
  • Text5.Text = CSng(Text5.Text) + CSng(TxtMinuteResultat.Text)
  • Text8.Text = CSng(Textheurenuit.Text) + CSng(Text8.Text)
  • Text9.Text = CSng(Textminnuit.Text) + CSng(Text9.Text)
  • Text6.Text = CSng(Txtohsupp.Text) + CSng(Text6.Text)
  • Text7.Text = CSng(Txtomsupp.Text) + CSng(Text7.Text)
  • If Text5.Text > 60 Then Texthnorm.Text = Texthnorm.Text + 1
  • If Text5.Text > 59 Then Text5.Text = Text5.Text - 60
  • If Text7.Text > 60 Then Text6.Text = Text6.Text + 1
  • If Text7.Text > 59 Then Text7.Text = Text7.Text - 60
  • If Text7.Text < 0 Then Text6.Text = Text6.Text - 1
  • If Text7.Text < 0 Then Text7.Text = Text7.Text + 60
  • If Text6.Text < 0 Then Text6.Text = 0
  • End Sub
  • Private Sub Command2_Click()
  • CalculMinuteFin = TxtMinuteFin
  • CalculHeureFin = TxtHeureFin
  • If TxtMinuteFin < TxtMinuteDebut Then
  • CalculMinuteFin = TxtMinuteFin + 60
  • End If
  • If TxtHeureFin < TxtHeureDebut Then
  • CalculHeureFin = TxtHeureFin + 24
  • End If
  • TxtHeureResultat = CalculHeureFin - TxtHeureDebut
  • TxtMinuteResultat = CalculMinuteFin - TxtMinuteDebut
  • Txtohsupp = TxtHeureResultat - 6
  • Txtomsupp = TxtMinuteResultat - 30
  • Textheurenuit = H2 - TxtHeureDebut
  • Textminnuit = M2 - TxtMinuteDebut
  • End Sub
  • Private Sub Command3_Click()
  • Dim f As Integer
  • f = FreeFile
  • Open "apercu.txt" For Output As #f
  • Print #f, Texthnorm.Text
  • Close #f
  • Dim a As Integer
  • a = FreeFile
  • Open "1.txt" For Output As #a
  • Print #a, Text5.Text
  • Close #a
  • Dim b As Integer
  • b = FreeFile
  • Open "2.txt" For Output As #b
  • Print #b, Text6.Text
  • Close #b
  • Dim c As Integer
  • c = FreeFile
  • Open "3.txt" For Output As #c
  • Print #c, Text7.Text
  • Close #c
  • Dim d As Integer
  • d = FreeFile
  • Open "4.txt" For Output As #d
  • Print #d, Text8.Text
  • Close #d
  • Dim e As Integer
  • e = FreeFile
  • Open "5.txt" For Output As #e
  • Print #e, Text9.Text
  • Close #e
  • Dim file_name As String
  • Dim fnum As Integer
  • Dim max_row As Integer
  • Dim max_col As Integer
  • Dim R As Integer
  • Dim yy As Integer
  • file_name = App.Path
  • If Right$(file_name, 1) <> "\" Then file_name = file_name & "\"
  • file_name = file_name & "FlexGrid1.dat"
  • fnum = FreeFile
  • Open file_name For Output As fnum
  • ' Save the maximum row and column.
  • max_row = MSFlexGrid1.Rows - 1
  • max_col = MSFlexGrid1.Cols - 1
  • Write #fnum, max_row, max_col
  • For R = 0 To max_row
  • For yy = 0 To max_col
  • Write #fnum, MSFlexGrid1.TextMatrix(R, yy);
  • Next yy
  • Write #fnum,
  • Next R
  • Close fnum
  • End Sub
  • Private Sub Command4_Click()
  • MSFlexGrid1.Clear
  • MSFlexGrid1.Rows = 1
  • MSFlexGrid1.Row = 0
  • MSFlexGrid1.Col = 0
  • End Sub
  • Private Sub Command7_Click()
  • Texthnorm.Text = "00"
  • Text5.Text = "00"
  • Text6.Text = "00"
  • Text7.Text = "00"
  • Text8.Text = "00"
  • Text9.Text = "00"
  • TxtHeureDebut = "00"
  • TxtMinuteDebut = "00"
  • TxtHeureFin = "00"
  • TxtMinuteFin = "00"
  • End Sub
  • Private Sub Form_Load()
  • Open App.Path & "\apercu.TXT" For Input As #1
  • Texthnorm.Text = Input(LOF(1), #1)
  • Close #1
  • Open App.Path & "\1.txt" For Input As #1
  • Text5.Text = Input(LOF(1), #1)
  • Close #1
  • Open App.Path & "\2.txt" For Input As #1
  • Text6.Text = Input(LOF(1), #1)
  • Close #1
  • Open App.Path & "\3.txt" For Input As #1
  • Text7.Text = Input(LOF(1), #1)
  • Close #1
  • Open App.Path & "\4.txt" For Input As #1
  • Text8.Text = Input(LOF(1), #1)
  • Close #1
  • Open App.Path & "\5.txt" For Input As #1
  • Text9.Text = Input(LOF(1), #1)
  • Close #1
  • With MSFlexGrid1
  • .MergeCells = 1
  • MSFlexGrid1.MergeRow(1) = True
  • .Rows = 2
  • .Cols = 6
  • .MergeCells = 0
  • .MergeRow(0) = True
  • .ColWidth(0) = 1100
  • .ColWidth(1) = 1400
  • .ColWidth(2) = 1400
  • .ColWidth(3) = 1400
  • .ColWidth(4) = 1400
  • .ColWidth(5) = 1400
  • .TabStop = False
  • 'Ajouter filds
  • .TextMatrix(0, 0) = "date "
  • .TextMatrix(0, 1) = "heure embauche "
  • .TextMatrix(0, 2) = "fin de service "
  • .TextMatrix(0, 3) = "total jour "
  • .TextMatrix(0, 4) = "heure supp "
  • .TextMatrix(0, 5) = "heure nuit "
  • End With
  • Dim file_name As String
  • Dim fnum As Integer
  • Dim max_row As Integer
  • Dim max_col As Integer
  • Dim R As Integer
  • Dim c As Integer
  • Dim txt As String
  • Dim max_len As Single
  • Dim new_len As Single
  • file_name = App.Path
  • If Right$(file_name, 1) <> "\" Then file_name = file_name & "\"
  • file_name = file_name & "FlexGrid1.dat"
  • fnum = FreeFile
  • Open file_name For Input As fnum
  • ' Hide the control until it's loaded.
  • MSFlexGrid1.Visible = False
  • DoEvents
  • ' Get the maximum row and column.
  • Input #fnum, max_row, max_col
  • MSFlexGrid1.FixedCols = 0
  • MSFlexGrid1.Cols = max_col + 1
  • MSFlexGrid1.FixedRows = 1
  • MSFlexGrid1.Rows = max_row + 1
  • ' Load the cell entries.
  • For R = 0 To max_row
  • For c = 0 To max_col
  • Input #fnum, txt
  • MSFlexGrid1.TextMatrix(R, c) = txt
  • Next c
  • ' Read the last blank entry.
  • Input #fnum, txt
  • Next R
  • Close #fnum
  • ' Size the columns.
  • Font.Name = MSFlexGrid1.Font.Name
  • Font.Size = MSFlexGrid1.Font.Size
  • For c = 0 To max_col
  • max_len = 0
  • For R = 0 To max_row
  • new_len = TextWidth(MSFlexGrid1.TextMatrix(R, c))
  • If max_len < new_len Then max_len = new_len
  • Next R
  • MSFlexGrid1.ColWidth(c) = max_len + 240
  • MSFlexGrid1.ColAlignment(c) = flexAlignLeftCenter
  • Next c
  • ' Display the control.
  • MSFlexGrid1.Visible = True
  • End Sub
Private Sub apercu_Click()
Printer.TrackDefault = True
Printer.ScaleMode = 6
Printer.Orientation = 1
Printer.PaperSize = 9
Printer.PrintQuality = -4
Printer.ColorMode = 1
Printer.FontSize = 20 'taille de la police
DecalX = 20 - (Printer.Width - Printer.ScaleWidth) / 2
DecalY = 15 - (Printer.Height - Printer.ScaleHeight) / 2
Printer.PaintPicture MSFlexGrid1.Picture, 30, 60

Printer.EndDoc
 
End Sub

Private Sub Command1_Click()
Dim i As Integer
i = Row + 2
MSFlexGrid1.AddItem Calendar1, 2
MSFlexGrid1.TextMatrix(i, 1) = TxtHeureDebut.Text & " h " & TxtMinuteDebut.Text
MSFlexGrid1.TextMatrix(i, 2) = TxtHeureFin.Text & " h " & TxtMinuteFin.Text
MSFlexGrid1.TextMatrix(i, 3) = TxtHeureResultat.Text & " h " & TxtMinuteResultat.Text
MSFlexGrid1.TextMatrix(i, 4) = Txtohsupp.Text & " h " & Txtomsupp.Text
MSFlexGrid1.TextMatrix(i, 5) = Textheurenuit.Text & " h " & Textminnuit.Text
On Error Resume Next
Text5.Text = Text5.Text
Texthnorm.Text = CSng(TxtHeureResultat.Text) + CSng(Texthnorm.Text)
Text5.Text = CSng(Text5.Text) + CSng(TxtMinuteResultat.Text)
Text8.Text = CSng(Textheurenuit.Text) + CSng(Text8.Text)
Text9.Text = CSng(Textminnuit.Text) + CSng(Text9.Text)
Text6.Text = CSng(Txtohsupp.Text) + CSng(Text6.Text)
Text7.Text = CSng(Txtomsupp.Text) + CSng(Text7.Text)
If Text5.Text > 60 Then Texthnorm.Text = Texthnorm.Text + 1

If Text5.Text > 59 Then Text5.Text = Text5.Text - 60
If Text7.Text > 60 Then Text6.Text = Text6.Text + 1

If Text7.Text > 59 Then Text7.Text = Text7.Text - 60
If Text7.Text < 0 Then Text6.Text = Text6.Text - 1
If Text7.Text < 0 Then Text7.Text = Text7.Text + 60
If Text6.Text < 0 Then Text6.Text = 0

End Sub

Private Sub Command2_Click()
CalculMinuteFin = TxtMinuteFin
    CalculHeureFin = TxtHeureFin
    
  
    If TxtMinuteFin < TxtMinuteDebut Then
        CalculMinuteFin = TxtMinuteFin + 60
    End If

    If TxtHeureFin < TxtHeureDebut Then
        CalculHeureFin = TxtHeureFin + 24
    End If


    TxtHeureResultat = CalculHeureFin - TxtHeureDebut
    TxtMinuteResultat = CalculMinuteFin - TxtMinuteDebut
     Txtohsupp = TxtHeureResultat - 6
     Txtomsupp = TxtMinuteResultat - 30
     
     Textheurenuit = H2 - TxtHeureDebut
    
    Textminnuit = M2 - TxtMinuteDebut
    
End Sub

Private Sub Command3_Click()
Dim f As Integer
f = FreeFile
Open "apercu.txt" For Output As #f
Print #f, Texthnorm.Text
Close #f
 Dim a As Integer
a = FreeFile
Open "1.txt" For Output As #a
Print #a, Text5.Text
Close #a
Dim b As Integer
b = FreeFile
Open "2.txt" For Output As #b
Print #b, Text6.Text
Close #b
Dim c As Integer
c = FreeFile
Open "3.txt" For Output As #c
Print #c, Text7.Text
Close #c
Dim d As Integer
d = FreeFile
Open "4.txt" For Output As #d
Print #d, Text8.Text
Close #d
Dim e As Integer
e = FreeFile
Open "5.txt" For Output As #e
Print #e, Text9.Text
Close #e
Dim file_name As String
Dim fnum As Integer
Dim max_row As Integer
Dim max_col As Integer
Dim R As Integer
Dim yy As Integer

    file_name = App.Path
    If Right$(file_name, 1) <> "\" Then file_name = file_name & "\"
    file_name = file_name & "FlexGrid1.dat"

    fnum = FreeFile
    Open file_name For Output As fnum

    ' Save the maximum row and column.
    max_row = MSFlexGrid1.Rows - 1
    max_col = MSFlexGrid1.Cols - 1
    Write #fnum, max_row, max_col

    For R = 0 To max_row
        For yy = 0 To max_col
            Write #fnum, MSFlexGrid1.TextMatrix(R, yy);
        Next yy
        Write #fnum,
    Next R

    Close fnum
End Sub
Private Sub Command4_Click()
MSFlexGrid1.Clear
MSFlexGrid1.Rows = 1
MSFlexGrid1.Row = 0
MSFlexGrid1.Col = 0
End Sub


Private Sub Command7_Click()
Texthnorm.Text = "00"
Text5.Text = "00"
Text6.Text = "00"
Text7.Text = "00"
Text8.Text = "00"
Text9.Text = "00"
TxtHeureDebut = "00"
TxtMinuteDebut = "00"
TxtHeureFin = "00"
TxtMinuteFin = "00"
End Sub

Private Sub Form_Load()


Open App.Path & "\apercu.TXT" For Input As #1
Texthnorm.Text = Input(LOF(1), #1)
Close #1
 Open App.Path & "\1.txt" For Input As #1
Text5.Text = Input(LOF(1), #1)
Close #1
Open App.Path & "\2.txt" For Input As #1
Text6.Text = Input(LOF(1), #1)
Close #1
Open App.Path & "\3.txt" For Input As #1
Text7.Text = Input(LOF(1), #1)
Close #1
Open App.Path & "\4.txt" For Input As #1
Text8.Text = Input(LOF(1), #1)
Close #1
Open App.Path & "\5.txt" For Input As #1
Text9.Text = Input(LOF(1), #1)
Close #1

With MSFlexGrid1
.MergeCells = 1
MSFlexGrid1.MergeRow(1) = True
     .Rows = 2
     .Cols = 6
 .MergeCells = 0
     .MergeRow(0) = True
.ColWidth(0) = 1100
     .ColWidth(1) = 1400
     .ColWidth(2) = 1400
     .ColWidth(3) = 1400
     .ColWidth(4) = 1400
     .ColWidth(5) = 1400
     .TabStop = False
     'Ajouter filds
     
     
     .TextMatrix(0, 0) = "date "
     .TextMatrix(0, 1) = "heure embauche "
     .TextMatrix(0, 2) = "fin de service "
     .TextMatrix(0, 3) = "total jour "
     .TextMatrix(0, 4) = "heure supp "
     .TextMatrix(0, 5) = "heure nuit "
     
         End With
Dim file_name As String
Dim fnum As Integer
Dim max_row As Integer
Dim max_col As Integer
Dim R As Integer
Dim c As Integer
Dim txt As String
Dim max_len As Single
Dim new_len As Single

    file_name = App.Path
    If Right$(file_name, 1) <> "\" Then file_name = file_name & "\"
    file_name = file_name & "FlexGrid1.dat"

    fnum = FreeFile
    Open file_name For Input As fnum

    ' Hide the control until it's loaded.
    MSFlexGrid1.Visible = False
    DoEvents

    ' Get the maximum row and column.
    Input #fnum, max_row, max_col

    MSFlexGrid1.FixedCols = 0
    MSFlexGrid1.Cols = max_col + 1
    MSFlexGrid1.FixedRows = 1
    MSFlexGrid1.Rows = max_row + 1

    ' Load the cell entries.
    For R = 0 To max_row
        For c = 0 To max_col
            Input #fnum, txt
            MSFlexGrid1.TextMatrix(R, c) = txt
        Next c

        ' Read the last blank entry.
        Input #fnum, txt
    Next R

    Close #fnum
    

    ' Size the columns.
    Font.Name = MSFlexGrid1.Font.Name
    Font.Size = MSFlexGrid1.Font.Size
    For c = 0 To max_col
        max_len = 0
        For R = 0 To max_row
            new_len = TextWidth(MSFlexGrid1.TextMatrix(R, c))
            If max_len < new_len Then max_len = new_len
        Next R
        MSFlexGrid1.ColWidth(c) = max_len + 240
        MSFlexGrid1.ColAlignment(c) = flexAlignLeftCenter
    Next c

    ' Display the control.
    MSFlexGrid1.Visible = True
End Sub













 Fichier Zip

Les Membres Club peuvent télécharger directement un fichier contenu dans le zip sans télécharger le zip en entier !

Télécharger le zip


 Historique

27 janvier 2009 13:37:01 :
excuse pour les fautes d ortographes
01 février 2009 10:09:45 :
j ai modifier la commande 1 pour pouvoir faire un total heure normal
01 février 2009 10:21:14 :
ajout d une capture
15 février 2009 08:02:38 :
UN PEUT DE MODIFICATION DU CODE SUITE AUX CONSEIL QUE L ON M A DONNE
15 février 2009 08:09:56 :
BESOIN AIDE AVEC LA SAUVEGARDE DU MSFLEXGRID
15 avril 2009 19:17:56 :
j ais juste refait le zip
19 avril 2009 10:52:42 :
J AI MODIFIER LA SAUVEGARDE DU FLEXGRID ET REFAIT LE ZIP N OUBLIER PAS DE METTRE UNE NOTE OU UN COMMENTAIRE MERCI

 Sources du même auteur

Source avec Zip Source avec une capture CALCULE HEURES DE NUIT 2

 Sources de la même categorie

Source avec une capture AJOUT D'UN CONTRÔLE CALENDRIER EN DYNAMIQUE SUR UNE FORM, D'... par patrick
Source avec Zip Source avec une capture ALARMA! - TRANSPARENCE, ZONE DE NOTIFICATION par killerkurgan
Source avec Zip Source avec une capture Source .NET (Dotnet) MAYA DAY - LE JOUR DU JOUR ACTUEL DANS LE CALENDRIER MAYA (C... par Blodox
Source avec Zip Source avec une capture Source .NET (Dotnet) FUSEAUX HORAIRES (HORLOGES ANALOGIQUES) par Blodox
Source avec Zip Source avec une capture ANNIVERSAIRE,FÊTES ET DICTONS par claude440

 Sources en rapport avec celle ci

Source avec Zip Source avec une capture GESTIONNAIRE DE BASE ADO par CGSI3
Source avec Zip Source avec une capture CALCULE HEURES DE NUIT 2 par ocejade
Source avec Zip MINITABLEUR EXCEL AVEC FLEXGRID par lezj
Source avec Zip Source avec une capture GESTION D'UN PETIT COMMERCE par MALIKcpp
Source avec Zip Source avec une capture INJECTION DANS UNE DATABASE par MALIKcpp

Commentaires et avis

Commentaire de Renfield le 27/01/2009 13:50:55 administrateur CS

pense a utiliser App.Path

Commentaire de ocejade le 27/01/2009 19:59:16

laisser des commentaires pour que je puisse corriger mes erreurs

merci

Commentaire de bintou123 le 28/01/2009 16:19:13

Votre travail est super mais il y a une erreur au niveaux de call OuvrirCD une procedure manque. Bravo Bass

Commentaire de ocejade le 29/01/2009 12:45:44

bintou 123

bonjour a toi je ne c est pas ou tu a vu call ouvrircd car je ne veut pas faire d ouverture du lecteur cd
merci quant mémé

vous pouvaient me laisser une note ou une info  

Commentaire de ocejade le 03/02/2009 12:42:47

comment voulais vous qu un débutant progresse si personne ne lui donne de conseils

alors quant vous voulez pour m aider au lieu de télécharger egoistements

merci d avance

Commentaire de Renfield le 03/02/2009 13:11:23 administrateur CS

prends note des commentaires qui te sont fait, ca aidera...
comme l'utilisation de App.Path, chose que je t'avais vivement conseillée
(évite les "C:\Users\jean paul.PC-de-jeanpaul\Desktop\calcul heure de nuit ok\")
---------
utilises plutot des constantes, que des valeurs numériques pas claires

Printer.ScaleMode = 6
Printer.Orientation = 1
Printer.PaperSize = 9
Printer.PrintQuality = -4
Printer.ColorMode = 1


-----------
Close #a
Dim b As Integer
b = FreeFile

inutile d'utilise 15 variables, si tu n'accèdes pas a ces fichiers en même temps.

--------------
Pense à vérifier l'existence des fichiers lus.

-------------
évite les On Error Resume Next

--------------
harmonise ton code: utilise TextMatrix
         .Row = 1
         .Col = 5
         .Text = "heure nuit "

-------------
indente ton code

-------------
fais un essai avec un DateTimePicker, en remplacement de tes zones de saisie

-------------
Change de ton

Commentaire de ocejade le 03/02/2009 23:00:10

merci pour tous ces très bon conseils que je vais mettre en place rapidement .
il y a certain points que je vais devoir chercher a utilise comme
App.Path mais je suis heureux de recevoir enfin de l aide de personnes plus experte que moi

enfin un énorme  merci a toi Renfield pour t on soutien car tu est bien le seul

 Ajouter un commentaire


Discussions en rapport avec ce code source dans le forum

flexgrid ... [ par jfd ] salut,est-il possible d'éditer une cellule d'un flexgrid en execution ??merci d'avance Eléments d'un fichier texte dans un Flexgrid [ par florian ] Je cherche à placer des éléments d'un fichier texte dans un objet Flexgrid mais j'ai quelques difficultés à y arriverMerci pour toutes informationsSal 2048 lignes dans un flexgrid [ par florian ] J'extrais des données d'un fichier textepour les mettre dans une MSHflexgrid mais je n'arrive pas à afficher l'intégralité de celui-ci.la flexgrid s'a Transformer un flexGrid en Image [ par ARCHAON ] J'aimerai savoir comment faire pour transformer un MS FlexGrid en image sous VB ... je sais je suis un peu barje mais je n'ai pas le choix ;-) .. c'es Imprimer un MS FlexGrid [ par apkwa ] J'essaye d'imprimer un MSFlexGrid qui n'apparaît pas complètement sur l'écran.J'ai essayéPrinter.PaintPicture MSFlexGrid1.PicturePrinter.EndDocmais ça Problème de license avec le controle FlexGrid sous VBA [ par yakcutter ] J'utilise VBA et lorsque je veux créer un contrôle Microsoft FlexGrid (et même certains autres) VBA me lance " Le contrôle n'a pas été créé parce qu'i aide sur flexgrid [ par math ] Bonjour,je dois transferer le resultat d'une requete toute bete de type"select * from xxx where chps='zzzz'" sur un flexgrid.Mais je ne sais pas comme flexgrid et survol de souris [ par patrice ] bonjour, j'aimerais faire apparaitre au survol de la sourissur le flexgrid lavaleur de la cellule survolee dans une bulle generee avec la propriete to Désespéremment.....Datagrid ou flexgrid dans une feuille parent/enfant [ par coco ] J'en suis à ma premiere application ADO et je suis désespéré!!!J'ai une feuille parent/enfant dans laquelle le datagrid est "l'enfant".Ex. Étudiants ( Fusion de cellules dans un MS Flexgrid [ par Eric ] Bonjour,est-ce que quelqu'un sait s'il est possible de fusionner des cellules à la fois en lignes et en colonnes ?Visiblement non car les cellules son


Nos sponsors


Sondage...

CalendriCode

Septembre 2010
LMMJVSD
  12345
6789101112
13141516171819
20212223242526
27282930   

Consulter la suite du CalendriCode

 
Développement réalisé par Nicolas SOREL (Nix) avec l'aide de : Cyril DURAND et Emmanuel (EBArtSoft), Merci à Vincent pour ses précieux conseils.
CodeS-SourceS.com© Toute reproduction même partielle est interdite sauf accord écrit du Webmaster
CodeS-SourceS.com© est une marque déposée tous droits réservés

Google Coop CodeS-SourceS Google Coop CodeS-SourceS
Temps d'éxécution de la page : 0,671 sec (3)

Nous contacter | Annoncer sur CodeS-SourceS | Mentions légales