I am working on integrating some libraries. This is a test shot to see if all is working ok. So far when I compile I receive the error message 'Error compiling program. Error description:Unknown member:multiply Word:multiply
Attached are the two library files in a zip file.
Any help is appreciated.
Attached are the two library files in a zip file.
Any help is appreciated.
B4X:
Sub Globals
Private Button1 As Button
Dim MyFile As String
Dim TextReader1 As TextReader
Private txtInput As EditText
Private txtOutput As EditText
Dim TestInput As Long
Dim TestOutput As Long
Dim TestCall As TextReader
End Sub
Sub Button1_Click
TestInput=txtInput.text
TestOutput=TestCall.multiply(TestInput)
txtOutput.Text=TestOutput
End Sub