Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. chillywinter

    Save string to file using SaveDialog

    I created a string separated by commas. I want to save it using the savedialog but this code doesn't work: CSV_string := '1,2,3' ; if SaveDialog1.Execute then CSV_string.savetofile(SaveDialog1.FileName + '.csv'); I've discovered that .savetofile doesn't work with strings, so how do I...
  2. chillywinter

    How to use Typecasting

    I want to reset all my check box's to unticked. I can do it with the following code but is there a short hand way to code this using a FOR statement: procedure TForm1.Button1Click(Sender: TObject); begin checkbox1.checked := false; checkbox2.checked := false; checkbox3.checked := false...

Part and Inventory Search

Back
Top