Link to home
Start Free TrialLog in
Avatar of instant_new
instant_new

asked on

Newbie Delphi File Question

in VB there are two ways to write a file (more but Im conserned in two)
Open FILE For Append as #1 >> Dont overwrite file
Open FIle For Output as #1 >> Overwrite file
how to write each in delphi?

also, there are Print and Write
I use Write for alot, when I input the info, its in arrays

Open FILE For Append as #1
'LOOP COMMAND
Write #1, bla(x), blo(x)
'LOOP COMMAND
CLOSE #1

anyway, how to do that in delphi?

and just a very quick question
what is
Form1.Hide
Form1.Show
SOLUTION
Avatar of LRHGuy
LRHGuy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of LRHGuy
LRHGuy

form1.hide    // Hides the form referenced by form1
form1.show  // Shows the form