im new in all this programing stuff and theres a few things i dont know and ive been looking for the answer and cant find it.
*Is there a way to make a form that can be resizable without it losing the “form”, or just using algorithm?
*Once the program is finished. How do i “export” the database(postgresql) so the user can access to it. Like in a installer or that kind of things!
Ill be thankful!
To make the form resizable, you just set the Forms FormBorderStyle Property to Sizable. If you mean without losing the form, as in restrict it being resized too small, then you set the forms MinimumSize property.
Your other question, to deploy a postgressql database, here are the basic steps, you can google around for this info:
a) Include all files under c:\program files\postgresql… in the project;
b) Use NSIS utilities to install the PostgreSQL service in a custom manner.
I do this on a non-standard port so that if the user already has PG, it does not clobber the existing install.