Re: add from another program
I see one way to do this.
Create dynamic control in program and read information about this control from file. Then run needed program, it write in file information about new control.
If you run dynamic programm, it read from file and create needed control.
Re: add from another program
ok. how do i do that?
--Ant
--------------------------------------------------
check out my newest freeware
E-mail me at: [email protected]
for the address
Re: add from another program
In static programm write
Dim f as Integer
f = FreeFile
Open "test.txt" for Append as f
print #f, "CommandTest"
Close f
In dinamic programm write
Dim f as Integer
Dim strTest as string
f = FreeFile
Open "test.txt" for input as f
input #f, strTest
Close f
Test strTest variable and add any command button in button array in form into dinamic programm