Welcome back to Micom SE Studio1 Import Filter tutorial series. In the previous tutorial, I've shown you how to create class module that responsible for setting file processing. Click this link Micom SE Studio1 Import Filter - Creating Class Module For Setting File Process In this series, I will show you how to use the SEStudio1Import.vb class module that I created in the previous tutorial. Now open the SEStudio1FilterBase.bv class, copy the codes below and replace the content of this class module. Imports OMXRioData Public Class SEStudio1FilterBase Inherits OMXRioFilter.FilterBase Private RELAY_PARAMETERS_BLOCK As String = "CUSTOM.RELAY_PARAMETERS" Private AUTHOR_PARAMETER As String = "CUSTOM.AUTHOR.IMPORT_FILTER_AUTHOR" Public Overrides Sub SetParameter(isImport As Boolean , paramName As String , paramValue As String ) 'Do nothing End Sub Public Overrides Function ExecuteExport() As Boolean R...