good day...
im creating a check writing program my poblem is in the conversion of amount in number to words... eg
$5, 235.25
i want my program to automatically generate...
five thousand two hundred thirty five 25/100
is this possible ?
im using delphi6... is mySql really faster compare to BDE?
im currently developing a POS and when all workstation are up quering or searching really slows down even all the tables are indexed... i wonder if mySQL can make a difference...
im currently using BDE as my database engine and planning to migrate to mysql if possible... my question is....
can mySQL be integrated with delphi ?
if you install mysql does it create a component automatically in delphi IDE ?
you can use the filter & filtered property of the table...
on the OnChange Event of the TEdit add the following:
begin
with table1 do
begin
filter := 'i_name = '+quotedstr(edit1.Text+'*');
filtered := true;
end;
///this is applicable even your table is unindexed
//...
my apologies... from now on i will do what your asking... thanks... if you know the answer to my questions please feel free to suggest... thanks for the reminders...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.