IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Windows Forms Discussion :

Envoie de mail par VB


Sujet :

Windows Forms

  1. #1
    Nouveau membre du Club
    Inscrit en
    Septembre 2005
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Septembre 2005
    Messages : 6
    Par défaut Envoie de mail par VB
    Bonsoir/bonjour
    bon voilà, j'ai des connaisances moyennes en VB, et j'ai besoin de trouver une astuce ou une methode pour l'envoie d'un mail quand je clik sur un boutton de l'interfaçe que je dois concevoir.
    y'as quelqu'un qui peu me donner un bon debut ou une idée?? et si c'est faisable par VB? merci.

  2. #2
    Expert confirmé
    Avatar de bidou
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Mai 2002
    Messages
    3 055
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 58
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Transports

    Informations forums :
    Inscription : Mai 2002
    Messages : 3 055

  3. #3
    Nouveau membre du Club
    Inscrit en
    Septembre 2005
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Septembre 2005
    Messages : 6
    Par défaut
    Bonjour, oui j'ai vu le lien merci, mais j'ai un petit prob c'est que la class : system.web.mail n'est pas reconnu (je travaille sous VS2003) avec framwork 1.1, il me parrait qu'il ne reconnais que system.Web pas Systm.Web.Mail !!!!! SOS

  4. #4
    Membre émérite
    Avatar de HULK
    Inscrit en
    Juillet 2003
    Messages
    1 276
    Détails du profil
    Informations personnelles :
    Âge : 45

    Informations forums :
    Inscription : Juillet 2003
    Messages : 1 276
    Par défaut
    ce code marche si tu veux envoyer des mails avec outlook

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    Imports System.Web.Mail
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
     
     Public Sub EnvoiMail(ByVal Destinataire As String, ByVal DestinataireCopie As String, ByVal DestinataireInvisible As String, ByVal message As String, ByVal sujet As String, ByVal PieceJointe As String)
            Dim email As New MailMessage
            SmtpMail.SmtpServer = "nom server smtp"
     
            With email
                .From = "adresse"
                .To = Destinataire
                .Cc = DestinataireCopie
                .Bcc = DestinataireInvisible
                .Priority = MailPriority.High
                .Attachments.Add(New MailAttachment(PieceJointe))
                .Subject = sujet
                .Body = message & vbCrLf & vbCrLf
                'type d 'autentification (ds ce cas autentification de base) 
                .Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1")
                'login de messagerie  
                .Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "nom utilisateur")
                'pass de messagerie 
                .Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "")
            End With
            Try
                SmtpMail.Send(email)
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
        End Sub
    aprèes y'a ca, plus compliqué mais beaucoup plus complet, je l'ai jamais testé

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
     
    Attribute VB_Name = "mapi" 
    Option Compare Database 
           Option Explicit 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' déclaration des types utilisés 
    '----------------------------------------------------------------------------------------------------------' 
    Type FILETIME 
        dwLowDateTime As Long 
        dwHighDateTime As Long 
    End Type 
     
    Type MAPIMessage 
       Reserved As Long 
       Subject As String 
       NoteText As String 
       MessageType As String 
       DateReceived As String 
       ConversationID As String 
       flags As Long 
       RecipCount As Long 
       FileCount As Long 
    End Type 
     
    Type MapiRecip 
       Reserved As Long 
       RecipClass As Long 
       Name As String 
       Address As String 
       EIDSize As Long 
       EntryID As String 
    End Type 
     
    Type MapiFile 
       Reserved As Long 
       flags As Long 
       POSITION As Long 
       PathName As String 
       FileName As String 
       FileType As String 
    End Type 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' déclaration de constantes 
    '----------------------------------------------------------------------------------------------------------' 
    Global Dialogue As MAPIMessage 
    Global Const SUCCESS_SUCCESS = 0 
    Global Const MAPI_TO = 1 
    Global Const MAPI_CC = 2 
    Global Const MAPI_CCO = 3 
    Global Const MAPI_LOGON_UI = &H1 
    Global Const MAPI_DIALOG = &H8 
     
    Public Const HKEY_CLASSES_ROOT = &H80000000 
    Public Const HKEY_CURRENT_USER = &H80000001 
    Public Const HKEY_LOCAL_MACHINE = &H80000002 
    Public Const HKEY_USERS = &H80000003 
    Public Const HKEY_PERFORMANCE_DATA = &H80000004 
    Public Const HKEY_CURRENT_CONFIG = &H80000005 
    Public Const HKEY_DYN_DATA = &H80000006 
     
    Private Const STANDARD_RIGHTS_READ = &H20000 
    Private Const KEY_QUERY_VALUE = &H1& 
    Private Const KEY_ENUMERATE_SUB_KEYS = &H8& 
    Private Const KEY_NOTIFY = &H10& 
    Private Const SYNCHRONIZE = &H100000 
    Private Const KEY_READ = ((STANDARD_RIGHTS_READ Or _ 
                            KEY_QUERY_VALUE Or _ 
                            KEY_ENUMERATE_SUB_KEYS Or _ 
                            KEY_NOTIFY) And _ 
                            (Not SYNCHRONIZE)) 
    Private Const MAXLEN = 256 
    Private Const ERROR_SUCCESS = &H0& 
     
    Const REG_NONE = 0 
    Const REG_SZ = 1 
    Const REG_EXPAND_SZ = 2 
    Const REG_BINARY = 3 
    Const REG_DWORD = 4 
    Const REG_DWORD_LITTLE_ENDIAN = 4 
    Const REG_DWORD_BIG_ENDIAN = 5 
    Const REG_LINK = 6 
    Const REG_MULTI_SZ = 7 
    Const REG_RESOURCE_LIST = 8 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' Déclaration des fonctions de kernerl32.dll (qui devrait etre dans c:\windows\system32\) 
    '----------------------------------------------------------------------------------------------------------' 
    Private Declare Function GetActiveWindow Lib "user32" () As Long 
    Private Declare Function FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long 
    Private Declare Function MAPILogon Lib "MAPI32.DLL" (ByVal lUIParam As Long, ByVal user As String, ByVal Password As String, ByVal lFlags As Long, ByVal lReserved As Long, lSession As Long) As Long 
    Private Declare Function MAPILogoff Lib "MAPI32.DLL" (ByVal lSession As Long, ByVal lUIParam As Long, ByVal lFlags As Long, ByVal lReserved As Long) As Long 
    Private Declare Function LoadLibraryEx Lib "kernel32" Alias "LoadLibraryExA" (ByVal lpLibFileName As String, ByVal hFile As Long, ByVal dwFlags As Long) As Long 
    Private Declare Function FormatMessage Lib "kernel32" Alias "FormatMessageA" (ByVal dwFlags As Long, ByVal lpSource As Long, ByVal dwMessageId As Long, ByVal dwLanguageId As Long, ByVal lpBuffer As String, ByVal nSize As Long, Arguments As Any) As Long 
     
    Declare Function MAPISendMailOE _ 
                     Lib "C:\Program Files\Outlook Express\Msoe.dll" _ 
                     Alias "BMAPISendMail" _ 
                     (ByVal session&, _ 
                      ByVal UIParam&, _ 
                      Message As MAPIMessage, _ 
                      Recipient() As MapiRecip, _ 
                      File() As MapiFile, _ 
                      ByVal flags&, _ 
                      ByVal Reserved&) As Long 
     
    Declare Function MAPISendMail _ 
                     Lib "MAPI32.DLL" _ 
                     Alias "BMAPISendMail" (ByVal session&, _ 
                     ByVal UIParam&, _ 
                     Message As MAPIMessage, _ 
                     Recipient() As MapiRecip, _ 
                     File() As MapiFile, _ 
                     ByVal flags&, _ 
                     ByVal Reserved&) As Long 
     
    Private Declare Function apiRegOpenKeyEx Lib "advapi32.dll" _ 
            Alias "RegOpenKeyExA" (ByVal hKey As Long, _ 
            ByVal lpSubKey As String, ByVal ulOptions As Long, _ 
            ByVal samDesired As Long, ByRef phkResult As Long) _ 
            As Long 
     
    Private Declare Function apiRegCloseKey Lib "advapi32.dll" _ 
            Alias "RegCloseKey" (ByVal hKey As Long) As Long 
     
    Private Declare Function apiRegQueryValueEx Lib "advapi32.dll" _ 
            Alias "RegQueryValueExA" (ByVal hKey As Long, _ 
            ByVal lpValueName As String, ByVal lpReserved As Long, _ 
            ByRef lpType As Long, lpData As Any, _ 
            ByRef lpcbData As Long) As Long 
     
    Private Declare Function apiRegQueryInfoKey Lib "advapi32.dll" _ 
            Alias "RegQueryInfoKeyA" (ByVal hKey As Long, _ 
            ByVal lpClass As String, ByRef lpcbClass As Long, _ 
            ByVal lpReserved As Long, ByRef lpcSubKeys As Long, _ 
            ByRef lpcbMaxSubKeyLen As Long, _ 
            ByRef lpcbMaxClassLen As Long, _ 
            ByRef lpcValues As Long, _ 
            ByRef lpcbMaxValueNameLen As Long, _ 
            ByRef lpcbMaxValueLen As Long, _ 
            ByRef lpcbSecurityDescriptor As Long, _ 
            ByRef lpftLastWriteTime As FILETIME) As Long 
     
    Private zlSessionID As Long, zlParentHwnd As Long, zlShowDialogs As Long 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' envoi du mail (avec les parametres normaux d'un mail: sujet, destinataire, dest. caché...) 
    '----------------------------------------------------------------------------------------------------------' 
    Public Function SendMail(sSubject As String, sTo As String, sCC As String, sCCO As String, sAttach As String, _ 
                      sMessage As String, Optional sImmediateSend As Boolean = True, _ 
                      Optional zsusername As String="Outlook", Optional zspassword As String="") As Long 
     
     
        Dim MAPI_Message As MAPIMessage 
        Dim i As Integer 
        Dim cTo As Integer 
        Dim cCC As Integer 
        Dim cCCO As Integer 
        Dim cAttach As Integer 
        Dim Resultat As Long 
     
     
        cTo = CountWords(sTo, ";") 
        cCC = CountWords(sCC, ";") 
        cCCO = CountWords(sCCO, ";") 
        cAttach = CountWords(sAttach, ";") 
     
        ReDim rto(0 To cTo) As String 
        ReDim rCC(0 To cCC) As String 
        ReDim rCCO(0 To cCCO) As String 
        ReDim rAttach(0 To cAttach) As String 
     
        ParseWords rto(), sTo, ";" 
        ParseWords rCC(), sCC, ";" 
        ParseWords rCCO(), sCCO, ";" 
        ParseWords rAttach(), sAttach, ";" 
     
        ReDim mapi_recip(0 To cTo + cCC + cCCO - 1) As MapiRecip 
     
        For i = 0 To cTo - 1 
            mapi_recip(i).Name = rto(i) 
            mapi_recip(i).RecipClass = MAPI_TO 
        Next i 
     
     
     
        For i = 0 To cCC - 1 
            mapi_recip(cTo + i).Name = rCC(i) 
            mapi_recip(cTo + i).RecipClass = MAPI_CC 
        Next i 
     
       For i = 0 To cCCO - 1 
          mapi_recip(cTo + cCC + i).Name = rCCO(i) 
          mapi_recip(cTo + cCC + i).RecipClass = MAPI_CCO 
       Next i 
     
       ReDim MAPI_file(0 To cAttach) As MapiFile 
     
       MAPI_Message.FileCount = cAttach 
     
       For i = 0 To cAttach - 1 
          MAPI_file(i).POSITION = -1 
          MAPI_file(i).PathName = rAttach(i) 
       Next i 
     
       MAPI_Message.Subject = sSubject 
       MAPI_Message.NoteText = sMessage 
       MAPI_Message.RecipCount = cTo + cCC + cCCO 
     
        If sImmediateSend = True Then 
            Dialogue.flags = MAPI_LOGON_UI 
        Else 
            Dialogue.flags = MAPI_LOGON_UI + MAPI_DIALOG 
        End If 
     
      Select Case GetDefaultMailSoftware() 'Fonctions API disponibles ici 
     
      Case "Outlook Express" 
            SendMail = MAPISendMailOE(0&, 0&, _ 
                                    MAPI_Message, _ 
                                    mapi_recip(), _ 
                                    MAPI_file(), _ 
                                    Dialogue.flags, 0) 
     
      Case "Microsoft Outlook", "Outlook" 
     
            Logon zsusername, zspassword 
     
            SendMail = MAPISendMail(0&, 0&, _ 
                                    MAPI_Message, _ 
                                    mapi_recip(), _ 
                                    MAPI_file(), _ 
                                    Dialogue.flags, 0) 
            LogOff 
     
      Case Else 
          MsgBox "Votre client de messagerie n'est pas supporté" 
      End Select 
     
    End Function 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' je sais plus 
    '----------------------------------------------------------------------------------------------------------' 
    Private Sub Class_Initialize() 
     
        zlShowDialogs = MAPI_DIALOG 
        zlParentHwnd = GetActiveWindow 'Seed parent window handle 
    End Sub 
     
     
    '----------------------------------------------------------------------------------------------------------' 
    ' Connection au compte MAPI Outlook (pas Express) 
    '----------------------------------------------------------------------------------------------------------' 
    Public Function Logon(Optional zsusername As String, Optional zspassword As String) As String 
                                    ' renvoit 0 si ok 
        Dim lReturnValue As Long 
     
        If IsMissing(zsusername) Or zsusername = "" Then 
            zsusername = "Outlook" 
            zspassword = "" 
        End If 
     
     
        Class_Initialize 
        'On Error Resume Next 
     
        If zlSessionID Then 
            'End existing session 
            LogOff 
            zlSessionID = 0 
        End If 
     
        zlSessionID = 0 
        lReturnValue = MAPILogon(zlParentHwnd, zsusername, zspassword, MAPI_LOGON_UI, 0&, zlSessionID) 
        Logon = ErrorDescription(lReturnValue) 
     
    End Function 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' Deconnection du compte 
    '----------------------------------------------------------------------------------------------------------' 
    Public Function LogOff() As Long 'retourne 0 si ok 
        If zlSessionID Then 
            LogOff = MAPILogoff(zlSessionID, zlParentHwnd, 0&, 0&) 
            zlSessionID = 0 
        End If 
    End Function 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' Compte les mots dans sSource par rapport à sDelim (c marqué dessus, comme le porsalu) 
    '----------------------------------------------------------------------------------------------------------' 
    Public Function CountWords(ByVal sSource As String, ByVal sDelim As String) As Integer 
     
    Dim iDelimPos As Integer 
    Dim iCount As Integer 
     
     If sSource = "" Then 
        CountWords = 0 
     Else 
        iDelimPos = InStr(1, sSource, sDelim) 
     
        Do Until iDelimPos = 0 
            iCount = iCount + 1 
            iDelimPos = InStr(iDelimPos + 1, sSource, sDelim) 
        Loop 
            CountWords = iCount + _ 
                         IIf(Right(sSource, 1) = sDelim, 0, 1) 
     End If 
    End Function 
    '----------------------------------------------------------------------------------------------------------' 
    ' Découpe la chaine nSource en un certain nombre de paramètres 
    '----------------------------------------------------------------------------------------------------------' 
    Public Function GetWords(sSource As String, ByVal sDelim As String) As String 
     
        Dim iDelimPos As Integer 
     
        iDelimPos = InStr(1, sSource, sDelim) 
        If (iDelimPos = 0) Then 
            GetWords = Trim$(sSource) 
            sSource = "" 
        Else 
            GetWords = Trim$(Left$(sSource, iDelimPos - 1)) 
            sSource = Mid$(sSource, iDelimPos + 1) 
        End If 
    End Function 
     
    Public Sub ParseWords(mArray() As String, ByVal sTokens As String, ByVal sDelim As String) 
        Dim i As Integer 
        For i = LBound(mArray) To UBound(mArray) 
            mArray(i) = GetWords(sTokens, sDelim) 
        Next i 
    End Sub 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' Extraire le compte de messagerie par défaut 
    '----------------------------------------------------------------------------------------------------------' 
    Public Function GetDefaultMailAccount() As String 
     
        Dim IAM_Path As String 
     
        IAM_Path = fReturnRegKeyValue(HKEY_CURRENT_USER, "Software\Microsoft\Internet Account Manager\", "Default Mail Account") 
     
        GetDefaultMailAccount = fReturnRegKeyValue(HKEY_CURRENT_USER, "Software\Microsoft\Internet Account Manager\Accounts\" & _ 
                    IAM_Path, "SMTP Email Address") 
     
    End Function 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' Extraire le nom du logiciel de messagerie par défaut 
    '----------------------------------------------------------------------------------------------------------' 
     
    Public Function GetDefaultMailSoftware() As String 
     
        GetDefaultMailSoftware = fReturnRegKeyValue(HKEY_LOCAL_MACHINE, "Software\Clients\Mail\", "") 
     
    End Function 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' Retourne une clé de registre (string) 
    '----------------------------------------------------------------------------------------------------------' 
     
    Public Function fReturnRegKeyValue(ByVal lngKeyToGet As Long, ByVal strKeyName As String, _ 
                                ByVal strValueName As String) As String 
     
    On Error GoTo fReturnRegKeyValue_Err 
     
        Dim lnghKey As Long 
        Dim strClassName As String 
        Dim lngClassLen As Long 
        Dim lngReserved As Long 
        Dim lngSubKeys As Long 
        Dim lngMaxSubKeyLen As Long 
        Dim lngMaxClassLen As Long 
        Dim lngValues As Long 
        Dim lngMaxValueNameLen As Long 
        Dim lngMaxValueLen As Long 
        Dim lngSecurity As Long 
        Dim ftLastWrite As FILETIME 
        Dim lngType As Long 
        Dim lngData As Long 
        Dim lngTmp As Long 
        Dim strRet As String 
        Dim varRet As Variant 
        Dim lngRet As Long 
     
        'Open the key first 
        lngTmp = apiRegOpenKeyEx(lngKeyToGet, _ 
                    strKeyName, 0&, KEY_READ, lnghKey) 
     
        'Are we ok? 
        If Not (lngTmp = ERROR_SUCCESS) Then Err.RaiselngTmp vbObjectError 
     
        lngReserved = 0& 
        strClassName = String$(MAXLEN, 0): lngClassLen = MAXLEN 
     
        'Get boundary values 
        lngTmp = apiRegQueryInfoKey(lnghKey, strClassName, _ 
            lngClassLen, lngReserved, lngSubKeys, lngMaxSubKeyLen, _ 
            lngMaxClassLen, lngValues, lngMaxValueNameLen, _ 
            lngMaxValueLen, lngSecurity, ftLastWrite) 
     
        'How we doin? 
        If Not (lngTmp = ERROR_SUCCESS) Then Err.RaisengTmp vbObjectError 
     
        'Now grab the value for the key 
        strRet = String$(MAXLEN - 1, 0) 
        lngTmp = apiRegQueryValueEx(lnghKey, strValueName, _ 
                    lngReserved, lngType, ByVal strRet, lngData) 
        Select Case lngType 
          Case REG_SZ 
            lngTmp = apiRegQueryValueEx(lnghKey, strValueName, _ 
                    lngReserved, lngType, ByVal strRet, lngData) 
            varRet = Left(strRet, lngData - 1) 
          Case REG_DWORD 
            lngTmp = apiRegQueryValueEx(lnghKey, strValueName, _ 
                    lngReserved, lngType, lngRet, lngData) 
            varRet = lngRet 
          Case REG_BINARY 
            lngTmp = apiRegQueryValueEx(lnghKey, strValueName, _ 
                    lngReserved, lngType, ByVal strRet, lngData) 
            varRet = Left(strRet, lngData) 
          Case REG_EXPAND_SZ 
            lngTmp = apiRegQueryValueEx(lnghKey, strValueName, _ 
                    lngReserved, lngType, ByVal strRet, lngData) 
            varRet = Left(strRet, lngData) 
     
        End Select 
     
        'All quiet on the western front? 
        If Not (lngTmp = ERROR_SUCCESS) Then Err.RaiselngTmp vbObjectError 
     
    fReturnRegKeyValue_Exit: 
        fReturnRegKeyValue = varRet 
        lngTmp = apiRegCloseKey(lnghKey) 
        Exit Function 
    fReturnRegKeyValue_Err: 
        varRet = "Error: Key or Value Not Found." 
        Resume fReturnRegKeyValue_Exit 
    End Function 
     
    '----------------------------------------------------------------------------------------------------------' 
    ' Transforme un numéro d'erreur en description d'erreur 
    '----------------------------------------------------------------------------------------------------------' 
     
    Function ErrorDescription(ByVal lErrorNumber As Long) As String 
        Const FORMAT_MESSAGE_FROM_HMODULE = &H800, FORMAT_MESSAGE_FROM_SYSTEM = &H1000 
        Const NERR_BASE = 2100, MAX_NERR = NERR_BASE + 899 
        Const LOAD_LIBRARY_AS_DATAFILE = &H2 
     
        Dim sMsg As String 
        Dim sRtrnCode As String 
        Dim lFlags As Long 
        Dim hModule As Long 
        Dim lRet As Long 
     
        hModule = 0 
        sRtrnCode = Space$(256) 
        lFlags = FORMAT_MESSAGE_FROM_SYSTEM 
     
        'If lRet is in the network range, load the message source 
        If (lErrorNumber >= NERR_BASE And lErrorNumber <= MAX_NERR) Then 
            hModule = LoadLibraryEx("netmsg.dll", 0&, LOAD_LIBRARY_AS_DATAFILE) 
            If (hModule <> 0) Then 
                lFlags = lFlags Or FORMAT_MESSAGE_FROM_HMODULE 
            End If 
        End If 
     
        'Call FormatMessage to allow for message text to be acquired 
        'from the system or the supplied module handle. 
        lRet = FormatMessage(lFlags, hModule, lErrorNumber, 0&, sRtrnCode, 256&, 0&) 
     
        If (hModule <> 0) Then 
            'Unloaded message source 
            FreeLibrary hModule 
        End If 
     
        ErrorDescription = "ERROR: " & lErrorNumber & " - " & sRtrnCode 
     
        'Clean message 
        lRet = InStr(1, ErrorDescription, vbNullChar) 
        If lRet Then 
            ErrorDescription = Left$(ErrorDescription, lRet - 1) 
        End If 
        lRet = InStr(1, ErrorDescription, vbNewLine) 
        If lRet Then 
            ErrorDescription = Left$(ErrorDescription, lRet - 1) 
        End If 
    End Function

  5. #5
    Membre Expert Avatar de LaChips
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    1 109
    Détails du profil
    Informations personnelles :
    Âge : 39
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Mars 2006
    Messages : 1 109
    Par défaut
    est ce que tu as ajouté la référence System.Web avant d'importer System.Web.Mail?

    tu vas envoyer des mails à partir d'un serveur de mail de ton FAI ou un serveur privé?
    car tu vas surement tomber sur le problème du relay

  6. #6
    Nouveau membre du Club
    Inscrit en
    Septembre 2005
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Septembre 2005
    Messages : 6
    Par défaut
    Merci LaChips, je vais l'ajouter, et je te repondrai, thanks.
    Voilà l'erreur :
    Le type ou le nom d'espace de noms 'Mail' n'existe pas dans la classe ou l'espace de noms 'System.Web' (une référence d'assembly est-elle manquante*?)

  7. #7
    Nouveau membre du Club
    Inscrit en
    Septembre 2005
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Septembre 2005
    Messages : 6
    Par défaut
    tjour la meme erreur, j cherche encor

  8. #8
    Membre actif Avatar de netomin
    Profil pro
    Inscrit en
    Décembre 2005
    Messages
    81
    Détails du profil
    Informations personnelles :
    Âge : 45
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Décembre 2005
    Messages : 81
    Par défaut
    Oui justement c'est ça que LaChips t'a dit. Tu doit ajouter a tes reférences du projet la référence System.Web pour que Mail soit reconnu.
    8)

    a+

Discussions similaires

  1. Problème d'envoie de mail par SMTP
    Par yass dans le forum VB 6 et antérieur
    Réponses: 13
    Dernier message: 12/09/2008, 16h45
  2. [SQL]Envoie de mail par une procedure
    Par yoyopi dans le forum DB2
    Réponses: 19
    Dernier message: 22/02/2008, 16h30
  3. Access 97 : Envoi de mail par SMTP sans Outlook
    Par mr_foxy dans le forum Access
    Réponses: 2
    Dernier message: 16/03/2006, 14h45
  4. [Mail] Envoi de mail par SMTP ?
    Par Borami dans le forum Langage
    Réponses: 1
    Dernier message: 03/01/2006, 12h26
  5. [Mail] newsletter, envoi de mail par lot
    Par jexl dans le forum Langage
    Réponses: 9
    Dernier message: 08/09/2005, 16h44

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo