begin process at 2010 02 10 11:16:33
  Trouver un code source :
 
dans
 
Accueil > 

Code

 > 

Divers

 > DUMP EDITEUR BINAIRE

DUMP EDITEUR BINAIRE


 Information sur la source

Note :
Aucune note
Catégorie :Divers Classé sous :Dump, Editeur, Binaire, Visualiser, Modifier Niveau :Débutant Date de création :01/03/2009 Vu / téléchargé :1 602 / 301

Auteur : deleplace

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

 Description

Cliquez pour voir la capture en taille normale
Editeur tous fichiers
Affichage Hexadécimal et Ascii(Ansi)
Recherches:
Hexadecimale
Texte en respectant ou non Maj/min
  trouve les texte en Ascii et en Unicode (2 octets/Chr)
Modifications possible des fichiers
en Hexadécimal, en Ascii, en Unicode
possibilité de modifier la taille du fichier

Source

  • Private Declare Function GetFileTime Lib "kernel32" (ByVal hFile&, lpCreationTime As FILETIME, lpLastAccessTime As FILETIME, lpLastWriteTime As FILETIME) As Long
  • Private Declare Function SetFileTime Lib "kernel32" (ByVal hFile&, lpCreationTime As Any, lpLastAccessTime As Any, lpLastWriteTime As Any) As Long
  • Private Declare Function CreateFile Lib "kernel32" Alias "CreateFileA" (ByVal lpFileName As String, ByVal dwDesiredAccess As Long, ByVal dwShareMode As Long, lpSecurityAttributes As Any, ByVal dwCreationDisposition As Long, ByVal dwFlagsAndAttributes As Long, ByVal hTemplateFile As Long) As Long
  • Private Declare Function SetFilePointer Lib "kernel32" (ByVal hFile As Long, ByVal lDistanceToMove As Long, lpDistanceToMoveHigh As Long, ByVal dwMoveMethod As Long) As Long
  • Private Declare Function SetEndOfFile Lib "kernel32" (ByVal hFile As Long) As Long
  • Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
  • Private Const G_READ = &H80000000
  • Private Const G_WRITE = &H40000000
  • Private Const F_SH_READ = 1
  • Private Const F_SH_W_R = 3
  • Private Const OPEN_EXISTING = 3
  • Private Type FILETIME
  • LowDateTime As Long 'HighDateTime_LowDateTime=1E7*(SS+60*MN+3600*HH....
  • HighDateTime As Long
  • End Type
  • Option Explicit
  • Dim Fil$, LenOfFil&, P&
  • Dim Cree As FILETIME, Acces As FILETIME, Modif As FILETIME
  • Dim XX(255) As Byte, DoNot%
  • Private Function SaveDates%(F$)
  • Dim H&: H = CreateFile(F, G_READ, F_SH_READ, ByVal 0&, OPEN_EXISTING, vbArchive, 0)
  • If H <> -1 Then GetFileTime H, Cree, Acces, Modif: CloseHandle H: SaveDates = -1
  • End Function
  • Private Sub CutRedate(F$, Optional L&)
  • Dim H&: H = CreateFile(F, G_WRITE, F_SH_W_R, ByVal 0&, OPEN_EXISTING, 0, 0)
  • If H <> -1 Then
  • If L Then SetFilePointer H, L, 0, 0: SetEndOfFile H
  • SetFileTime H, Cree, Acces, Modif: CloseHandle H
  • End If
  • End Sub
  • Private Sub Cherche_Click()
  • Dim S0$, S1$, I0&, I1&, P0&, L, M%
  • M = 1 - Check1: S0 = Tscr: If S0 = "" Then Exit Sub
  • If M Then S0 = UCase(Tscr)
  • S1 = WS(S0)
  • If Fil = "" Then Exit Sub
  • Open Fil For Binary As 1
  • Dim B$
  • P0 = P:
  • Re: L = LenOfFil - P0
  • If L > 1073741824 Then L = 1073741696: B = Space(1073741824) Else B = Space(L)
  • Get 1, P0 + 2, B
  • If M Then B = UCase(B)
  • I0 = InStr(B, S0): I1 = InStr(B, S1)
  • If I1 Then If I0 = 0 Or I1 < I0 Then I0 = I1
  • If I0 Then P = P0 + I0: Close 1: Dump Fil, P
  • P0 = P0 + L: If P0 < LenOfFil Then GoTo Re
  • Close 1
  • End Sub
  • Private Sub Cherchexa_Click()
  • Dim S0$, I0&, I1&, P0&, L, B$
  • If Trim(Thexa) = "" Or Fil = "" Then Exit Sub
  • S0 = UnH(Thexa)
  • Open Fil For Binary As 1
  • P0 = P:
  • Re: L = LenOfFil - P0
  • If L > 1073741824 Then L = 1073741696: B = Space(1073741824) Else B = Space(L)
  • Get 1, P0 + 2, B
  • I0 = InStr(B, S0)
  • If I0 Then P = P0 + I0: Close 1: Dump Fil, P
  • P0 = P0 + L: If P0 < LenOfFil Then GoTo Re
  • Close 1
  • End Sub
  • Private Function UnH$(A$)
  • Dim B$, I%
  • B = Trim(Replace(Replace(A, vbCrLf, " "), " ", " ")) & " "
  • I = InStr(B, " ")
  • Do
  • UnH = UnH & Chr(Val("&h" & Left(B, I - 1)) And 255)
  • B = Mid(B, I + 1)
  • I = InStr(B, " ")
  • Loop While I
  • End Function
  • Private Sub CutFil_Click()
  • Dim L&, A$
  • If Fil = "" Then Exit Sub
  • If MsgBox("Etes-vous sûr ?", vbYesNo) = vbNo Then Exit Sub
  • A = Trim(TxtCut)
  • If LCase(Left(A, 2)) = "0x" Then
  • L = Val("&H" & Mid(A, 3) & "&")
  • Else
  • L = Val(A)
  • End If
  • If SaveDates(Fil) Then CutRedate Fil, L: SetLen
  • End Sub
  • Private Sub Debut_Click()
  • P = 0: Dump Fil, P
  • End Sub
  • Private Sub Dir1_Click()
  • File1.Path = Dir1.List(Dir1.ListIndex)
  • Dossier = File1.Path
  • End Sub
  • Private Sub Drive1_Change()
  • Dir1.Path = UCase(Left(Drive1.Drive, 2)) & "\"
  • File1.Path = Dir1.Path
  • End Sub
  • Private Sub File1_Click()
  • Fil = File1.Path
  • If Len(Fil) > 3 Then Fil = Fil & "\"
  • Fil = Fil & File1.FileName: P = 0
  • Label2 = Fil: SetLen
  • P = 0: Dump Fil, P
  • End Sub
  • Private Function Max&()
  • Max = ((LenOfFil - 1) Or 15) - 255: If Max < 0 Then Max = 0
  • End Function
  • Private Function WS$(A$)
  • Dim B() As Byte, I%
  • If Len(A) Then
  • ReDim B(2 * Len(A) - 1)
  • For I = 1 To Len(A): B(I + I - 2) = Asc(Mid(A, I, 1)): Next
  • WS = StrConv(B, vbUnicode)
  • End If
  • End Function
  • Private Sub Fin_Click()
  • P = Max: Dump Fil, P
  • End Sub
  • Private Sub Form_Load()
  • Dossier = File1.Path
  • Dim I%: For I = 0 To 31: XX(I) = 46: Next: For I = 32 To 255: XX(I) = I: Next
  • End Sub
  • Private Sub Dump(F$, P&)
  • If F = "" Then Exit Sub
  • Dim L&, B() As Byte, I%, J: L = FileLen(F)
  • Text1 = "": Text2 = "": Text3 = "": Text4 = Hx8(P): AdTxt = Text4
  • If P >= L Then Exit Sub
  • If L - P > 256 Then ReDim B(255) Else ReDim B(L - P - 1)
  • On Error Resume Next
  • Open F For Binary As 1
  • If Err Then Text2 = "Accés refusé": Exit Sub
  • Get 1, P + 1, B: Close 1
  • For I = 0 To UBound(B) Step 16
  • Text1 = Text1 & Hx8(P + I) & vbCrLf
  • For J = I To Inf(UBound(B), I + 15)
  • Text2 = Text2 & Hx2(B(J)) & " "
  • Text3 = Text3 & Chr(XX(B(J)))
  • Next J: Text2 = Text2 & vbCrLf:: Text3 = Text3 & vbCrLf
  • Next I
  • End Sub
  • Private Function Inf(A, B)
  • If A < B Then Inf = A Else Inf = B
  • End Function
  • Private Function Hx2$(B As Byte)
  • Hx2 = Hex(B): Hx2 = String(2 - Len(Hx2), "0") & Hx2
  • End Function
  • Private Function Hx8$(P&)
  • Hx8 = Hex(P): Hx8 = String(8 - Len(Hx8), "0") & Hx8
  • End Function
  • Private Sub Modification_Click()
  • If Fil = "" Then Exit Sub
  • If MsgBox("Etes-vous sûr ?", vbYesNo) = vbNo Then Exit Sub
  • SaveDates Fil
  • Err.Clear: On Error GoTo xerr
  • Open Fil For Binary As 1: Put 1, P + 1, UnH(Text2): Close 1
  • If pd Then CutRedate Fil
  • xerr: If Err Then Close 1: MsgBox "Impossible de modifier " & Fil
  • Text4_Keypress 13 'actualisation de la page courante
  • End Sub
  • Private Sub ModTxt_Click(I%)
  • Dim StrMod$, AT&
  • StrMod = Text5
  • If Fil = "" Or StrMod = "" Then Exit Sub
  • If I Then StrMod = StrConv(StrMod, vbUnicode)
  • AT = Val("&h" & AdTxt & "&")
  • If AT + Len(StrMod) > LenOfFil Then
  • If MsgBox("Hors de la taille du fichier" & vbCrLf & "Ecrire quand même ?", vbYesNo) <> vbYes Then Exit Sub
  • Else
  • If MsgBox("Etes-vous sûr ?", vbYesNo) = vbNo Then Exit Sub
  • End If
  • SaveDates Fil
  • Err.Clear: On Error GoTo xerr
  • Open Fil For Binary As 1: Put 1, AT + 1, StrMod: Close 1
  • If pd Then CutRedate Fil
  • xerr:
  • If Err Then
  • Close 1: MsgBox "Impossible de modifier " & Fil
  • Else
  • SetLen
  • End If
  • Text4_Keypress 13 'actualisation de la page courante
  • End Sub
  • Private Sub SetLen()
  • LenOfFil = FileLen(Fil)
  • TxtCut = "0x" & Hex(LenOfFil)
  • Longueur = "Longueur: " & LenOfFil & " (" & TxtCut & ")"
  • Fin.Caption = Hx8(Max)
  • End Sub
  • Private Sub plus_Click()
  • P = Inf(P + 256, Max): Dump Fil, P
  • End Sub
  • Private Sub moins_Click()
  • P = P - 256: If P < 0 Then P = 0
  • Dump Fil, P
  • End Sub
  • Private Sub Text4_Keypress(K%)
  • If K = 13 Then
  • P = Inf(Max, Val("&h" & Text4 & "&"))
  • If P < 0 Then P = 0
  • Dump Fil, P
  • End If
  • End Sub
  • Private Sub dossier_KeyPress(K%)
  • If K = 13 Then File1.Path = Dossier: DoNot = -1: Dir1.Path = Dossier: DoNot = 0
  • End Sub
  • Private Sub Thexa_Keypress(K%)
  • If K = 13 Then Cherchexa_Click
  • End Sub
  • Private Sub Tscr_Keypress(K%)
  • If K = 13 Then Cherche_Click
  • End Sub
Private Declare Function GetFileTime Lib "kernel32" (ByVal hFile&, lpCreationTime As FILETIME, lpLastAccessTime As FILETIME, lpLastWriteTime As FILETIME) As Long
Private Declare Function SetFileTime Lib "kernel32" (ByVal hFile&, lpCreationTime As Any, lpLastAccessTime As Any, lpLastWriteTime As Any) As Long
Private Declare Function CreateFile Lib "kernel32" Alias "CreateFileA" (ByVal lpFileName As String, ByVal dwDesiredAccess As Long, ByVal dwShareMode As Long, lpSecurityAttributes As Any, ByVal dwCreationDisposition As Long, ByVal dwFlagsAndAttributes As Long, ByVal hTemplateFile As Long) As Long
Private Declare Function SetFilePointer Lib "kernel32" (ByVal hFile As Long, ByVal lDistanceToMove As Long, lpDistanceToMoveHigh As Long, ByVal dwMoveMethod As Long) As Long
Private Declare Function SetEndOfFile Lib "kernel32" (ByVal hFile As Long) As Long
Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
Private Const G_READ = &H80000000
Private Const G_WRITE = &H40000000
Private Const F_SH_READ = 1
Private Const F_SH_W_R = 3
Private Const OPEN_EXISTING = 3
Private Type FILETIME
        LowDateTime As Long 'HighDateTime_LowDateTime=1E7*(SS+60*MN+3600*HH....
        HighDateTime As Long
End Type
Option Explicit
Dim Fil$, LenOfFil&, P&
Dim Cree As FILETIME, Acces As FILETIME, Modif As FILETIME
Dim XX(255) As Byte, DoNot%

Private Function SaveDates%(F$)
Dim H&: H = CreateFile(F, G_READ, F_SH_READ, ByVal 0&, OPEN_EXISTING, vbArchive, 0)
If H <> -1 Then GetFileTime H, Cree, Acces, Modif: CloseHandle H: SaveDates = -1
End Function

Private Sub CutRedate(F$, Optional L&)
Dim H&: H = CreateFile(F, G_WRITE, F_SH_W_R, ByVal 0&, OPEN_EXISTING, 0, 0)
If H <> -1 Then
 If L Then SetFilePointer H, L, 0, 0: SetEndOfFile H
 SetFileTime H, Cree, Acces, Modif: CloseHandle H
End If
End Sub

Private Sub Cherche_Click()
Dim S0$, S1$, I0&, I1&, P0&, L, M%
M = 1 - Check1: S0 = Tscr: If S0 = "" Then Exit Sub
If M Then S0 = UCase(Tscr)
S1 = WS(S0)
If Fil = "" Then Exit Sub
Open Fil For Binary As 1
Dim B$
P0 = P:
Re: L = LenOfFil - P0
If L > 1073741824 Then L = 1073741696: B = Space(1073741824) Else B = Space(L)
Get 1, P0 + 2, B
If M Then B = UCase(B)
I0 = InStr(B, S0): I1 = InStr(B, S1)
If I1 Then If I0 = 0 Or I1 < I0 Then I0 = I1
If I0 Then P = P0 + I0: Close 1: Dump Fil, P
P0 = P0 + L: If P0 < LenOfFil Then GoTo Re
Close 1
End Sub
Private Sub Cherchexa_Click()
Dim S0$, I0&, I1&, P0&, L, B$
If Trim(Thexa) = "" Or Fil = "" Then Exit Sub
S0 = UnH(Thexa)
Open Fil For Binary As 1
P0 = P:
Re: L = LenOfFil - P0
If L > 1073741824 Then L = 1073741696: B = Space(1073741824) Else B = Space(L)
Get 1, P0 + 2, B
I0 = InStr(B, S0)
If I0 Then P = P0 + I0: Close 1: Dump Fil, P
P0 = P0 + L: If P0 < LenOfFil Then GoTo Re
Close 1
End Sub
Private Function UnH$(A$)
Dim B$, I%
B = Trim(Replace(Replace(A, vbCrLf, " "), "  ", " ")) & " "
I = InStr(B, " ")
Do
 UnH = UnH & Chr(Val("&h" & Left(B, I - 1)) And 255)
 B = Mid(B, I + 1)
 I = InStr(B, " ")
Loop While I
End Function

Private Sub CutFil_Click()
Dim L&, A$
If Fil = "" Then Exit Sub
If MsgBox("Etes-vous sûr ?", vbYesNo) = vbNo Then Exit Sub
A = Trim(TxtCut)
If LCase(Left(A, 2)) = "0x" Then
 L = Val("&H" & Mid(A, 3) & "&")
Else
 L = Val(A)
End If
If SaveDates(Fil) Then CutRedate Fil, L: SetLen
End Sub

Private Sub Debut_Click()
P = 0: Dump Fil, P
End Sub

Private Sub Dir1_Click()
File1.Path = Dir1.List(Dir1.ListIndex)
Dossier = File1.Path
End Sub

Private Sub Drive1_Change()
Dir1.Path = UCase(Left(Drive1.Drive, 2)) & "\"
File1.Path = Dir1.Path
End Sub

Private Sub File1_Click()
Fil = File1.Path
If Len(Fil) > 3 Then Fil = Fil & "\"
Fil = Fil & File1.FileName: P = 0
Label2 = Fil: SetLen
P = 0: Dump Fil, P
End Sub

Private Function Max&()
Max = ((LenOfFil - 1) Or 15) - 255: If Max < 0 Then Max = 0
End Function
Private Function WS$(A$)
Dim B() As Byte, I%
If Len(A) Then
 ReDim B(2 * Len(A) - 1)
 For I = 1 To Len(A): B(I + I - 2) = Asc(Mid(A, I, 1)): Next
 WS = StrConv(B, vbUnicode)
End If
End Function

Private Sub Fin_Click()
P = Max: Dump Fil, P
End Sub

Private Sub Form_Load()
Dossier = File1.Path
Dim I%: For I = 0 To 31: XX(I) = 46: Next: For I = 32 To 255: XX(I) = I: Next
End Sub

Private Sub Dump(F$, P&)
If F = "" Then Exit Sub
Dim L&, B() As Byte, I%, J: L = FileLen(F)
Text1 = "": Text2 = "": Text3 = "": Text4 = Hx8(P): AdTxt = Text4
If P >= L Then Exit Sub
If L - P > 256 Then ReDim B(255) Else ReDim B(L - P - 1)
On Error Resume Next
Open F For Binary As 1
If Err Then Text2 = "Accés refusé": Exit Sub
Get 1, P + 1, B: Close 1
For I = 0 To UBound(B) Step 16
Text1 = Text1 & Hx8(P + I) & vbCrLf
For J = I To Inf(UBound(B), I + 15)
Text2 = Text2 & Hx2(B(J)) & " "
Text3 = Text3 & Chr(XX(B(J)))
Next J: Text2 = Text2 & vbCrLf:: Text3 = Text3 & vbCrLf
Next I
End Sub
Private Function Inf(A, B)
If A < B Then Inf = A Else Inf = B
End Function
Private Function Hx2$(B As Byte)
Hx2 = Hex(B): Hx2 = String(2 - Len(Hx2), "0") & Hx2
End Function
Private Function Hx8$(P&)
Hx8 = Hex(P): Hx8 = String(8 - Len(Hx8), "0") & Hx8
End Function

Private Sub Modification_Click()
If Fil = "" Then Exit Sub
If MsgBox("Etes-vous sûr ?", vbYesNo) = vbNo Then Exit Sub
SaveDates Fil
Err.Clear: On Error GoTo xerr
Open Fil For Binary As 1: Put 1, P + 1, UnH(Text2): Close 1
If pd Then CutRedate Fil
xerr: If Err Then Close 1: MsgBox "Impossible de modifier " & Fil
Text4_Keypress 13 'actualisation de la page courante
End Sub

Private Sub ModTxt_Click(I%)
Dim StrMod$, AT&
StrMod = Text5
If Fil = "" Or StrMod = "" Then Exit Sub
If I Then StrMod = StrConv(StrMod, vbUnicode)
AT = Val("&h" & AdTxt & "&")
If AT + Len(StrMod) > LenOfFil Then
 If MsgBox("Hors de la taille du fichier" & vbCrLf & "Ecrire quand même ?", vbYesNo) <> vbYes Then Exit Sub
Else
 If MsgBox("Etes-vous sûr ?", vbYesNo) = vbNo Then Exit Sub
End If
SaveDates Fil
Err.Clear: On Error GoTo xerr
Open Fil For Binary As 1: Put 1, AT + 1, StrMod: Close 1
If pd Then CutRedate Fil
xerr:
If Err Then
 Close 1: MsgBox "Impossible de modifier " & Fil
Else
 SetLen
End If
Text4_Keypress 13 'actualisation de la page courante
End Sub

Private Sub SetLen()
LenOfFil = FileLen(Fil)
TxtCut = "0x" & Hex(LenOfFil)
Longueur = "Longueur: " & LenOfFil & " (" & TxtCut & ")"
Fin.Caption = Hx8(Max)
End Sub

Private Sub plus_Click()
P = Inf(P + 256, Max): Dump Fil, P
End Sub
Private Sub moins_Click()
P = P - 256: If P < 0 Then P = 0
Dump Fil, P
End Sub

Private Sub Text4_Keypress(K%)
If K = 13 Then
P = Inf(Max, Val("&h" & Text4 & "&"))
If P < 0 Then P = 0
Dump Fil, P
End If
End Sub

Private Sub dossier_KeyPress(K%)
If K = 13 Then File1.Path = Dossier: DoNot = -1: Dir1.Path = Dossier: DoNot = 0
End Sub

Private Sub Thexa_Keypress(K%)
If K = 13 Then Cherchexa_Click
End Sub

Private Sub Tscr_Keypress(K%)
If K = 13 Then Cherche_Click
End Sub

 Conclusion

C'est l'outil dont je me ses depuis des années
Je vous l'offre

 Fichier Zip

Les Membres Club peuvent télécharger directement un fichier contenu dans le zip sans télécharger le zip en entier !
  •   hexiwin-046
    • src
  • (Renommer Dump.exe)Télécharger ce fichier [Réservé aux membres club]45 056 octets
  • Dump.frmTélécharger ce fichier [Réservé aux membres club]Voir ce fichier16 203 octets
  • Dump.frxTélécharger ce fichier [Réservé aux membres club]778 octets
  • dump.vbpTélécharger ce fichier [Réservé aux membres club]Voir ce fichier633 octets

Télécharger le zip


 Sources du même auteur

Source avec Zip Source avec une capture DUAL LANGUAGE VB6 DEVELOPPEZ EN FRANÇAIS COMPILEZ EN ANGLAIS...
Source avec Zip Source avec une capture PATCHER LE COMPILATEUR VB6 POUR QU'IL COMPILE DES EXES AUTON...
Source avec Zip Source avec une capture SUPPRESSEUR DE LA DÉPENDACE À VB6FR.DLL REND LES EXES VB6 AU...
Source avec Zip Source avec une capture CHARGE IMAGES COUCHE ALPHA PNG OU TIF SAUVE EN TIF ET PNG DE...
Source avec Zip DÉPLACER UN OBJET TRANSPARENT (PNG AVEC COUCHE ALPHA) SUR UN...

 Sources de la même categorie

Source avec Zip Source avec une capture Source .NET (Dotnet) SPACE - UN SPACE MAC POUR WINDOWS par vbnino
Source avec Zip Source .NET (Dotnet) MULTI THREAD AVEC AFFICHAGE par jaknight007
Source avec Zip Source .NET (Dotnet) COMPILATEUR EN VB NET 2003 par alpha5
Source avec Zip Source avec une capture CRYPTER AVEC LE CHIFFRE DES NIHILISTES RUSSES par tresorsdevie
Source avec Zip Source avec une capture Source .NET (Dotnet) COMPTE_BANCAIRE.NET par Adn56

 Sources en rapport avec celle ci

Source avec Zip Source avec une capture EDITEUR DE COMANDE VB6 ET VBA EXCEL par artgile
Source avec Zip Source avec une capture ALBUMKGB (2009) par koumougilles
Source avec Zip Source avec une capture TEXTSTYLE, EDITOR HTML par jupevi
Source avec Zip EDITEUR BINAIRE ET CONVERSION par LeKamé
Source avec Zip EDITEUR ICONE 2:MODIF.,ENREG.,OUVRIR LES EXE,DLL,OCX,ICO,CUR... par Warning

Commentaires et avis

Commentaire de asimengo le 02/03/2009 09:59:20

ok download.

J'utilise souvent Edit et j'ouvre l'exe en mode binaire, clavier en mode suppression et voila.

 Ajouter un commentaire


Discussions en rapport avec ce code source dans le forum

visualiser un fichier binaire [ par SEB73460 ] bonjour a tous je suis debutant sur vb6 et je souhaite&nbsp; visualiser un fichier dans un texte box&nbsp; j ai deja mis le code pour ouvrir une boite Ecriture dans un fichier binaire [ par fiko81 ] Bonjour à tous,Je voudrais savoir comment faire pour modifier le 7ième octet dans un fichier binaire.Je m'explique : J'ouvre un fichier dans un éditeu Modifier "Editeur inconnu" [ par ljalc ] Voila, lorsque je télécharge le logiciel que j'ai programmé via internet, à la fin du téléchargement, un fenêtre s'ouvre et me demande de confirmer l' modifier affectation fihier image dans picture box [ par rollot39 ] Bonsoir a tous,Ma question va vous paraitre stupide mais voila mon pbJe souhaite changer l' image contenu dans un picturebox via une autre image par u Ecriture dans un gros fichier binaire [ par youyou40 ] Bonjour à tous et mes meilleurs voeux pour 2009.Voici mon problème :Je voudrais rajouter des octets dans un fichier binaire de grande taille, jusqu'à Modification [ par habibovitch ] bonjour,je suis entrain de modifier une ligne dans l'application quand un qlq'un modifier la meme ligne je veux savoir quels sont les noms des champs binaire, backup, restore, diff [ par ridamaksour ] Salut tous,J'ai besoin de faire une comparaison binaire entre 2 fichiers, un constituant une copie recente l'autre une copie moins recente.je dois ain modifier toutes les lignes d'un champ [ par petchy ] bonjourVB 2008,base accessj'ai se code pour faire une modif dans ma basemais comment faire pour modifier toutes le champ complet d'un coupDim rs As<fo Ecouter port com en binaire [ par Billybobbonnet ] Bonjour à tous!Je cherche à faire un programme pour écouter sur un port com donné des messages entrant en binaire. J'ai trouvé un super composant pour Visualiser les données d'une DataBase [ par Triceratop ] Bonjour, je débute avec les base de données et j'en ai crée une que j'utilise avec un petite application VB. Lors de l'exécution de mon application j


Nos sponsors


Sondage...

Comparez les prix

CalendriCode

Février 2010
LMMJVSD
1234567
891011121314
15161718192021
22232425262728

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 : 1,014 sec (4)

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