hello
is there an option to change the default browser TWebBrowser
1 2021-10-07 08:35:27
Topic: TWebBrowser deafulat browser (0 replies, posted in Script)
2 2021-10-05 10:22:24
Topic: can we browse url ? (1 replies, posted in Script)
can we browse url inside a form in mvd
ex : i have an url to html page and i want to browse it inside the mvd
3 2021-03-12 09:27:39
Re: Database Help !! (2 replies, posted in General)
give us more details so we can help
5 2021-03-09 07:39:50
Re: It seems that UTF-8 doesn't full work in Script editor ? (2 replies, posted in General)
you forgot the
'
check again
('select * ..............' )
6 2021-03-07 07:13:46
Re: Please help with error msg (4 replies, posted in General)
Please check the included variables of your button that send to the database. it will be fixed or link the text field with the database
7 2021-03-04 12:56:57
Re: Combobox (4 replies, posted in General)
procedure cmbRelationship_Onchange (Sender: TObject; Action: string);
begin
form1.edit1.text := form1.cmbRelationship.text
end;
8 2021-02-28 12:40:52
Topic: public variable (2 replies, posted in General)
how i can set a public variable
for example x := application.User.Username;
and i request the x at any time i want
9 2021-02-28 08:42:22
Topic: on write edit field suggestion (0 replies, posted in SQL queries)
I want a method to release an auto suggestion when i write in it
10 2021-02-28 07:58:01
Re: Search result between two dates (4 replies, posted in SQL queries)
Hi,
Attached is an example of searching for records between 2 dates.
Also see the screenshot in the attachment (the filter for form1.datetimepicker1 is set to >=, the filter for form1.datetimepicker2 is set to <=)..
Derek.
for Derek as solution
print "thanks" ++
return i appreciate ;
12 2021-02-27 21:06:32
Re: Search result between two dates (4 replies, posted in SQL queries)
ex please
13 2021-02-25 13:46:04
Topic: Search result between two dates (4 replies, posted in SQL queries)
Search result between to dates
i mean i need a technique to search results between 2 dates
example all queries between 01/01/2021 tilm 01/02/2021
14 2021-02-22 20:01:21
Re: print picture from filelink (5 replies, posted in General)
Hi Agusecc,
I would usually suggest using the 'linkfile' option to keep the size of your database manageable, but looking at the images in your example, they appear to be very small so I don't think this would be an issue.
In that case, if you save your images as 'storefile' rather than 'linkfile', it makes your task a lot easier. This is because 'storefile' images can be placed directly onto the table grid and placed directly into reports; no script is required.
The only downside is that you need to make the row height in your tablegrid larger so the images are viewable (see first option in the attachment)..
An alternative to that would be to display each image separately when a specific row is selected in the tablegrid (see second option in the attachment); this requires a small script.
Derek.
can you apply it on the image uploaded via HTML form using mysql
15 2021-02-16 21:16:39
Re: (case when xyz = 1 then 'A' else 'B' end) ??? (3 replies, posted in General)
second example
16 2021-02-16 21:05:33
Re: (case when xyz = 1 then 'A' else 'B' end) ??? (3 replies, posted in General)
here is a very easy way
17 2021-02-15 07:59:33
Re: mysql fetch problemù (1 replies, posted in SQL queries)
easy explain :
the image stored from the HTML form and PHP in the database
can not be viewed through MVD DBIMAGE
maybe because of the type of encryption because i encrypted it as base64?
18 2021-02-14 12:08:27
Topic: mysql fetch problemù (1 replies, posted in SQL queries)
here is the problem :
i have a PHP Html MySQL web form
the form used to upload images as a blob
everything working correctly
but when i load the image in MVD it does not show anything
i don't know wish encryption should i save it to be loaded from the mvd
19 2021-02-14 11:37:55
Re: problem uploading image via werbform (1 replies, posted in General)
image stored as bin
20 2021-02-10 14:57:34
Re: auto load tabelgrid data from mysql (4 replies, posted in General)
it works
is there any way to be executed automaticlmy
21 2021-02-10 10:25:10
Topic: problem uploading image via werbform (1 replies, posted in General)
i have a web form
i connected the mvd via MySQL and create a table user with a field avatar
the mvd create two fields field1 and dield1_filename
how i use the form html to upload the same data via PHP
22 2021-02-09 08:02:23
Topic: auto load tabelgrid data from mysql (4 replies, posted in General)
i have programmed MVD with MySQL connection and web interface
i want to know how can the table grid autoload from the database when someone adds a new entry to the web interface