I would like to know how could I get a solution to solve a matrix from VB using a Excel command.
For exemple, I try to solve a determinant:
1 2
3 4 = -2
Dim obj As Excel.Application
Set obj = CreateObject("Excel.Application")
Solution = obj.Application.MDeterm(1,2;3,4)
But VB...