Text Files in Delphi - Writing to a text file

  Рет қаралды 49,207

Mr Long Education - IT & CAT

Mr Long Education - IT & CAT

Күн бұрын

Пікірлер
@werty2
@werty2 4 жыл бұрын
A moment of silence for all those kids who haven't found this channel. You literally saved IT for me from Grade 10 - 12. You are an absolute legend Mr Long.
@sticc3978
@sticc3978 3 жыл бұрын
I just found it 1 year before the big exams
@mirvids5036
@mirvids5036 5 жыл бұрын
I do like the simple way you explain what you're doing. Very easy to follow and it makes sense.
@zaytoontoon2477
@zaytoontoon2477 3 жыл бұрын
thanks sir. i have a prac today at 14:00. youre a life saver
@MrLongITandCAT
@MrLongITandCAT 3 жыл бұрын
All the best for your prac!
@eitan71
@eitan71 5 жыл бұрын
waiting for your next Delphi video :) Thank you for sharing !
@gregorycandiotes4293
@gregorycandiotes4293 Жыл бұрын
The legend the goat MR LONG!!!
@oliviermpukuta2726
@oliviermpukuta2726 2 жыл бұрын
great job Mr. Long .
@Arnold_jr
@Arnold_jr 4 жыл бұрын
Mr long sir thank you for your work ,am currently doing grade 11 and your videos help me a lot ,I wonder whose that one person that didn't like the video cause it's perfect , they can share if the have a better explanation.
@mnqobishoba5407
@mnqobishoba5407 4 жыл бұрын
Very help channel much appreciated
@picklejuiceo
@picklejuiceo 4 жыл бұрын
Where the IT Disciples att????
@willemnorval2212
@willemnorval2212 4 жыл бұрын
Right here
@cloets9276
@cloets9276 4 жыл бұрын
Yee
@AyabongaDuma
@AyabongaDuma 6 ай бұрын
Thank you soo much sir🌟🌟
@l0stguy
@l0stguy 3 жыл бұрын
Hello mr long I have a practical where I should write into a textfile only writing 1 letter form an editbox per line , how would I be able to do this ?
@MrLongITandCAT
@MrLongITandCAT 3 жыл бұрын
Lets say the editbox is called edtData then something like this: sLine := edtData.Text ; AssignFile( myFile, 'TextFileName.txt' ) ; //text file details Rewrite( myfile ) ; //here is the important code for i := 1 to length( sLine ) do writeln( sLine[ i ] ) ; //take each character and write it individally before moving to next line CloseFile( myfile ) ;
@l0stguy
@l0stguy 3 жыл бұрын
@@MrLongITandCAT Thanks lot's !! Would I be able to use an array to put data back into editbox line for line ?
@MrLongITandCAT
@MrLongITandCAT 3 жыл бұрын
@@l0stguy For multiple lines it would be better to use a memo control or a rich edit control. If you go to our videos tab, you will find a video explaining how they work if you haven't used them before.
@Double.M.101
@Double.M.101 Ай бұрын
@@MrLongITandCAT Hi Mr long I want user's to insert their names into the edit box and it must save to the text file , how would I be able to do so ?
@MrLongITandCAT
@MrLongITandCAT 27 күн бұрын
@@Double.M.101 Must it save the name INTO the text file or as the name of the textfile.
@rubenduplessis7459
@rubenduplessis7459 4 жыл бұрын
THANK YOU THIS SAVED ME !!!!
@phutiwilson4604
@phutiwilson4604 3 жыл бұрын
Hi, does anyone know how to delete a line in a text file?
@rakhirathore4954
@rakhirathore4954 4 жыл бұрын
Thank You ! I am trying to read the text file data to a combo box. its showing out-of-bound exception.. Kindly assist
@simplelulu.
@simplelulu. Жыл бұрын
You are the G ❤
@dashcamwhat1512
@dashcamwhat1512 2 жыл бұрын
How can you make a textfile appear instead of using richedit or memo to display the information from the textfile?
@MrLongITandCAT
@MrLongITandCAT 2 жыл бұрын
Do you want to open the Text file?
@nubivagant2000
@nubivagant2000 2 жыл бұрын
@@MrLongITandCAT no
@sunethrio5206
@sunethrio5206 4 жыл бұрын
thanks u tutorial, but u can make information retrival with algorithm vector space model example
@succduc
@succduc 4 жыл бұрын
Thanks alot, you helped me🔥👌🏼
@theREMASTEREDone
@theREMASTEREDone 5 жыл бұрын
I have a problem did exactly what you did but its not saving the text
@theREMASTEREDone
@theREMASTEREDone 5 жыл бұрын
Nope...gotta figure this out cuz i got a project that needs to be in Tuesday
@puliskyvash
@puliskyvash Жыл бұрын
I have a problem did exactly what you did but its not saving the text🤒
@MrLongITandCAT
@MrLongITandCAT Жыл бұрын
Can you paste your code here:
@thapeloserutha7182
@thapeloserutha7182 3 жыл бұрын
Thank you sir.
@darkflash9729
@darkflash9729 4 жыл бұрын
Thanks helped me
@Thamri_Saddam_Hussein
@Thamri_Saddam_Hussein 2 жыл бұрын
thank u
@AnaAna-gu3jk
@AnaAna-gu3jk 3 жыл бұрын
Sorry but how do you write to a textfile using a richedit???
@MrLongITandCAT
@MrLongITandCAT 3 жыл бұрын
richedit1.lines.savetofile( 'filename.txt' ) ;
@MrLongITandCAT
@MrLongITandCAT 3 жыл бұрын
or if you need to do it via code: AssignFile( myfile , 'filename.txt'); Rewrite( myfile ); for i := 0 to RichEdit1.Lines.Count -1 do begin Write( myfile , RichEdit1.Lines.Strings[i]); end;
@darkflash9729
@darkflash9729 4 жыл бұрын
Thanks
@Wilsson_
@Wilsson_ 2 жыл бұрын
😔I'm about to give up
@MrLongITandCAT
@MrLongITandCAT 2 жыл бұрын
What are you struggling with?
@theREMASTEREDone
@theREMASTEREDone 5 жыл бұрын
Also trying to save the text from a rich edit
@plaaswerker1288
@plaaswerker1288 3 жыл бұрын
poggers
Text Files in Delphi - Formatting into columns
10:00
Mr Long Education - IT & CAT
Рет қаралды 17 М.
Text Files in Delphi - Reading from a text file
18:01
Mr Long Education - IT & CAT
Рет қаралды 68 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 60 МЛН
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 544 М.
String Handling in Delphi (part 1) String Functions
14:16
Mr Long Education - IT & CAT
Рет қаралды 38 М.
Java File Input/Output - It's Way Easier Than You Think
8:18
Coding with John
Рет қаралды 501 М.
Text Files in Delphi - Reading from a text file example
14:55
Mr Long Education - IT & CAT
Рет қаралды 23 М.
Date and Time Part 1 - Date and Time in Delphi
14:28
Mr Long Education - IT & CAT
Рет қаралды 17 М.
Python Tutorial: File Objects - Reading and Writing to Files
24:33
Corey Schafer
Рет қаралды 1,8 МЛН
Databases in Delphi - Connecting to a database using code
19:32
Mr Long Education - IT & CAT
Рет қаралды 28 М.
Text File and String Handling example Part 1
22:46
Mr Long Education - IT & CAT
Рет қаралды 10 М.
C# Data Access: Text Files
24:34
IAmTimCorey
Рет қаралды 269 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН