S Squibbly Oct 20, 2004 #1 can anyone tell me of a website where i can learn what the meaning and references of vba coding plz. Thanks in advance
can anyone tell me of a website where i can learn what the meaning and references of vba coding plz. Thanks in advance
A Allen Browne Oct 21, 2004 #2 Quick introduction to references: http://members.iinet.net.au/~allenbrowne/ser-38.html To programmatically list the references used by an application: Function ShowRef() Dim ref As Reference For Each ref In Application.References Debug.Print ref.Name, ref.FullPath Next End Function
Quick introduction to references: http://members.iinet.net.au/~allenbrowne/ser-38.html To programmatically list the references used by an application: Function ShowRef() Dim ref As Reference For Each ref In Application.References Debug.Print ref.Name, ref.FullPath Next End Function