اذهب الي المحتوي
أوفيسنا

الردود الموصى بها

قام بنشر

السلام عليكم ورحمة الله وبركاته

اريد المساعده في ربط الماسح الضوئي مع الاكسس ....بجيث يستطيع حفظ الصورة في مجلد منفصل عن البيانات في الاكسس .ويكون لاكثر من صورة ...

كع الشكر الجزيل للجميع

  • Like 1
  • 3 years later...
قام بنشر

وعليكم السلام ورحمة الله وبركاته

 

ضع هذا الكود في وحدة نمطية :

 


Public Sub GetImaage()
    Dim filelocation As String
    Dim diagfile As FileDialog
    Set diagfile = Application.FileDialog(msoFileDialogSaveAs)
    
    diagfile.title = "حفظ ملف الصورة كـ ...."
    diagfile.InitialFileName = "*.bmp"
    
    If diagfile.Show Then
        filelocation = diagfile.SelectedItems(1)
        
        Dim scandiag As Object
        Dim image As Object
        
        Set scandiag = CreateObject("wia.commondialog")
        Set image = CreateObject("wia.imagefile")
        
        Set image = scandiag.showAcquireimage()
        image.savefile filelocation
        
     End If


End Sub

وهذا الكود في الزر داخل النموذج :

Call GetImaage

بالتوفيق

  • Like 1
  • 3 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information