Recent content by zinfra

  1. zinfra

    Solved Exporting images from MSysResources

    with a function: Public Function GetPicture(Num_pic As Integer) ' get picture from MSysResources table GetPicture = DLookup("[Name]", "[MSysResources]", "[id] = " & Num_pic & "") End Function on a form code: Me.ImgBox3.picture = GetPicture(22) ' the ID number of the image (wastebasket.png)
  2. zinfra

    Solved Exporting images from MSysResources

    Simpy refer to img name on MSysResources table 1.) Insert img on the table MSysResources -> for ex. ExcelFile32.png Data: Attach the image Extension: png id : autonumber Name: ExcelFile32 Type: img 2.) in the code refer to the image found with Dloockup() ex code: Private Sub Btn1_Click() '...
Back
Top Bottom