in reply to combine two scripts in to one
the first script is
@files =<C:\\orant\\FORMS60\\forms\\Fapidk\\source\\msvc\\changecolor\ +\Debug\\forms\\*.fmb>; foreach $file (@files) { print $file "\n"; system "changecolor.exe form=$file"; }
the above script gets all the fmb and changes the properties of some of the items in some of the fmb files and saves the updated file to a different directory the secod script goes through the updated file and compiles the form .
can any one help me on combining these two scripts into one. thanks for your help.@files1 =<C:\\orant\\FORMS60\\forms_up\\*.fmb>; done and thanks for all of ur help. foreach $file (@files1) { print $file . "\n"; system "IFCMP60 USERID=rmetts/rmetts\@dlegtst1 module=$file module_ac +cess=file module_type=form" # print "c:\\orant\\bin\\IFCMP60 USERID=rmetts/rmetts\@dlegtst1 modul +e=$file module_access=file module_type=form" }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: combine two scripts into one
by marto (Cardinal) on May 14, 2007 at 15:30 UTC | |
by subha (Initiate) on May 14, 2007 at 17:17 UTC | |
by marto (Cardinal) on May 14, 2007 at 21:16 UTC | |
|
Re: combine two scripts into one
by swampyankee (Parson) on May 14, 2007 at 19:09 UTC |