-
Content Count
81 -
Joined
-
Last visited
Everything posted by skyzoframe[hun]
-
What kind of short cut, or multiple keyboard press do you prefer for new users?
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
Also, select some range and press "Ctrl+/" , it gives "//" to each selected line. Press again, and will remove it. -
What kind of short cut, or multiple keyboard press do you prefer for new users?
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
I found these.: https://www.tweaking4all.com/software-development/software-delphi/delphi-ide-code-editor-keyboard-shortcuts/ https://leanpub.com/codefasterindelphi -
New blog post: Leveraging ChatGPT to generate a Delphi class along with CRUD code from a table schema
skyzoframe[hun] replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
creativity the key, AI can not handle that... -
What kind of short cut, or multiple keyboard press do you prefer for new users?
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
ctrl+shift+c+left mouse press -
What kind of short cut, or multiple keyboard press do you prefer for new users?
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
I mean in delphi. for example.. ctrl + shift + c , on procedure or function yougot there, what you wrote there. anyway alt+f4 are the best all the time :) -
I have no clue.
-
Try to handle everything over stored procedures in database side. In code call the procedure. https://www.postgresql.org/docs/current/sql-createprocedure.html
-
Yes it is working... https://dbfiddle.uk/OrzyibpI
-
var Q : TFDQuery; . . . Q.SQL.Text := ('select * from TEST$TEST_;'); Q.SQL.Text := ('select * from TEST$$TEST;'); Hmm... strange, because it is working for me. Also in command line. https://dbfiddle.uk/eDOCApeX
-
hi, check here one solution, how to use Listview in fmx.
-
The Delphi Certified Developer // To prepare for the exam
skyzoframe[hun] posted a topic in Tips / Blogs / Tutorials / Videos
Hi everyone, I need the certification, because of my family. They saw me all the time reading and working in front of my computer. My deadline is one semester. I want to ask for some advice before I buy anything. How should I prepare? What can I expect? What is your experience? Sincerely Zoltán-Attila Köllő -
The Delphi Certified Developer // To prepare for the exam
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
Good to know. -
The Delphi Certified Developer // To prepare for the exam
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
yes, this is the reason, from one point of view. -
The Delphi Certified Developer // To prepare for the exam
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
After a while, I read these kinds of books. From 2016. - Expert Delphi By Paweł Głowacki - Delphi High Performance By Primož Gabrijelčič - Mastering Delphi Programming: A Complete Reference Guide By Primož Gabrijelčič - Delphi Cookbook - Third Edition By Daniele Spinetti, Daniele Teti - Delphi Programming Projects By William Duarte - Delphi GUI Programming with FireMonkey By Andrea Magni -- by Dalija Prasnikar Delphi Memory Management for Classic and ARC Compilers Delphi Event-based and Asynchronous Programming Now reading.: Delphi Thread Safety Patterns Because I am far from intelligence. I have to read. ˇˇ Are there any good books to read? What did I miss? -
The Delphi Certified Developer // To prepare for the exam
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
How many questions do we have about the basic certification? If the test time is about 1h and there are 120 questions available, every question has 1/2min to focus on it. So the exam will be lightning-chess or something. -
The Delphi Certified Developer // To prepare for the exam
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
how long is it valid for? a year? -
The Delphi Certified Developer // To prepare for the exam
skyzoframe[hun] replied to skyzoframe[hun]'s topic in Tips / Blogs / Tutorials / Videos
The first one, do you have it already 🙂 // Delphi Certified Developer -
https://download.tmssoftware.com/Download/Manuals/TMS TAdvRichEditor.pdf Or you can store pictures on a local drive, and only the picture name has to be in the database. Or use a custom table for blob fields and call only when you have to show the picture.
-
I don't understand: why do you need so many big files, or blobs, in your database? by the way.: They are the same drawings in different file formats. If I need to save something in database, I'll use a *.emf file. I only have one question: Can you reduce the file size somehow?
-
How do I delete a row in a database with FireDAC?
skyzoframe[hun] replied to JohnLM's topic in Databases
There are any other ways to handle unique identities? -
How do I delete a row in a database with FireDAC?
skyzoframe[hun] replied to JohnLM's topic in Databases
How do you solve the limit of integer range? What are you think about not "basically way"? -
Delphi sqlite datatype IMAGE ??? does this really exists?
skyzoframe[hun] replied to Al T's topic in Databases
CREATE DOMAIN IMAGE AS BLOB SUB_TYPE 0 SEGMENT SIZE 2048; After that, you can call your domain. You don't need to definite everything when creating your database table. I really like to use domains. 'CREATE TABLE IF NOT EXISTS ENTRY( '+ 'Title VARCHAR2(60) NOT NULL, '+ 'UserN VARCHAR2(40), '+ 'Passw CHAR(64) NOT NULL, '+ 'URLpa VARCHAR2(100), '+ 'NickN VARCHAR2(20), '+ 'CustN VARCHAR2(20), '+ 'Notes VARCHAR2(400), '+ 'DateC DATE, '+ 'Icon IMAGE)'); -
Check duplicates in TADOQuery
skyzoframe[hun] replied to karl Jonson's topic in Algorithms, Data Structures and Class Design
select codes, count(*) as duplicate from data1 group by codes having count(*)<>1 order by duplicate desc https://dbfiddle.uk/nYtX1oTz -
Does it mean you want to create at runtime everything? Without using Live bindings? If you want to separately manage Types, Front-End, Back-End. Check the zip file at the bottom.
- 6 replies
-
- delphi
- firemonkey
-
(and 1 more)
Tagged with:
-
if ContainsText(LInput, ' ') then LInput := StringReplace(LInput,' ','',[rfReplaceAll]); Maybe you have to remove the SPACE character, before you put everything into array.