External Variable Declaration

  • Thread starter Thread starter ehntd
  • Start date Start date
E

ehntd

I had seen that, but the problem is that I do not want to insert
module or a procedure, I just want to insert three lines of code (o
execute them externally... it at all possible). The problem is that
don´t know how to replace the lines that already exist in the progra
with the lines that exist in the txt file.

What I really want is something like the C insert command...
 
do you mean s'thing like:

Option Explicit

Public globals(4) As Integer

Sub ReadGlobs()
'Fills the array globals with
'the data contained in a txt file.

Dim i%

Open "c:\globals.dat" For Input As #1
While Not EOF(1) And i <= UBound(globals)
Input #1, globals(i)
i = i + 1
Wend
Close #1

End Sub





keepITcool

< email : keepitcool chello nl (with @ and .) >
< homepage: http://members.chello.nl/keepitcool >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top