View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Soquete Soquete is offline
external usenet poster
 
Posts: 2
Default Run-time error '7'

I have gotten a Run-time error '7':
Out of memory

in the follwong code:
Public m2() As Double
Public m1() As Double
Public Sub jk()
j = 41000
k = 817
ReDim m1(j, k)
ReDim m2(j, k)
End Sub