Search results

  1. T

    Reference a user defined type with a variable.

    Here is the code Public Function BlankSTlRecord(STlData As SEF3BlkQltData) As SEF3BlkQltData Dim intIndex As Integer Dim FldName As String For intIndex = LBound(STLQltDataStructure) To UBound(STLQltDataStructure) FldName = "STlData." & STLQltDataStructure(intIndex).FieldName Select...
  2. T

    Reference a user defined type with a variable.

    How would I go about doing this, I am trying to develop some dynamic forms/tables but without being able to do this it just won't work.
  3. T

    Reference a user defined type with a variable.

    I am writing some code where I want to reference a user defined type via a fieldname which is held in a variable. Does anyone know how to do this i.e. Type TestType desc as string code as string End Type Dim FldName as String Dim AUDT as TestType FldName = "desc" [AUDT.FldName] =...
Back
Top Bottom