76

(6 replies, posted in General)

Thank's exact what I wanted

77

(6 replies, posted in General)

Hi to all, I like to create an agenda giving the date choosing from the Calendar and it should  show in a tablegrid the time something like in the picture., so I can write the reason of the meeting. I have searched in the forum for calendars and found two, but the script is very difficult to understand.
Thank you in advance

https://i.ibb.co/W6tjvZV/time.png

78

(7 replies, posted in General)

Thanks to all

79

(7 replies, posted in General)

Dear sparrow yes i want to transfer the information from the one databsse to a new one which contains more records. My question is how to transfere them so everybody who use my software can continue with the new version of my software .  How can we tramsfer the related and especially the cslculated fields??

80

(7 replies, posted in General)

Hi all,
in case I want to update my software in a new version which has also new forms and  new records in the database (with also some relationships between the tables and calculatefields) is it possible to do it? I have asked it in the past but couldn't get it through. I really want to move all the information from the database to the new (updated) but the calculated fields and the new relationships makes it very difficult . is there an example for a little help ? Thakn you

81

(35 replies, posted in General)

I think I stay with MVDB. As long the forum is alive then there is no worry.  DataExpress is a great software, but if it had a help file in english it would be much better. A minus the it has no executable file and no database file.

82

(35 replies, posted in General)

Is there any help in english ?  Does it create also sn exe file like mvdb?

83

(20 replies, posted in General)

A stupid question. If my computer have the regional settings in the German language and in my software that I develop I use the translate function with the following from English to Greek :TRANSLATE ('Confirm','Επιβεβαιωση') will this work or do I have other results on my screen. I cannot test it because my windows are in English.

84

(20 replies, posted in General)

If the translate Yes and No works why is it not working in my case in Greek language??
Translate('Yes','Ναι');
Translate('No','Όχι');
Can I fix this problem using Resource Hacker, if yes how?

85

(20 replies, posted in General)

Hi all. I am confused. Translate works fine but trying to translate Yes and No it fails. Any idea? Also can I translate the 'Wrong username/password' in another language  ?

86

(20 replies, posted in General)

begin

    // how to translate interface
    Form1.mniFile.Caption := 'File';
    Form1.mniClose.Caption := 'Close';
    Form1.mniOptions.Caption := 'Options';
    Form1.mniSettings.Caption := 'Settings';
    Form1.mniReport.Caption := 'Report designer';
    Form1.mniExportData.Caption := 'Export data';
    Form1.mniImportData.Caption := 'Import data';
    Form1.mniAbout.Caption := 'About';

    frmOptionsdbCore.Caption := 'Options';
    frmOptionsdbCore.TabDatabaseLoc.Caption := 'Database location';
    frmOptionsdbCore.rbAppFolder.Caption := 'Save the database file in the folder with the application.';
    frmOptionsdbCore.rbDBFilename.Caption := 'Specify the filename of the database.';
    frmOptionsdbCore.lbPath.Caption := 'You can also use a network folder (e.d. \\PCNAME\Folder\sqlite.db)';
    frmOptionsdbCore.bCancel.Caption := 'Cancel';
    frmOptionsdbCore.TabSettings.Caption := 'Settings';
    frmOptionsdbCore.GroupBoxSettings.Caption := 'Configuration file (settings.ini)';
    frmOptionsdbCore.rbSettingsIniApp.Caption := 'Save the configuration file in the folder with application.';
    frmOptionsdbCore.rbSettingsIniAppData.Caption := 'Save the configuration file in the folder:'+#13+'%appdata%\My Visual Database Configurations\%projectname%';

    frmdbCoreImport.Caption := 'Import';
    frmdbCoreImport.gbFileAndSettings.Caption := '1. File and settings';
    frmdbCoreImport.lbFile.Caption := 'CSV file name';
    frmdbCoreImport.lbColumnsSeparator.Caption := 'Columns separator';
    frmdbCoreImport.cbSeparator.Items[0] := ', (comma)';
    frmdbCoreImport.cbSeparator.Items[1] := '; (semicolon) ';
    frmdbCoreImport.cbSeparator.Items[2] := '\t (tab)';
    frmdbCoreImport.cbSeparator.Items[3] := 'Custom';
    frmdbCoreImport.cbSeparator.ItemIndex := 0;
    frmdbCoreImport.lbEncoding.Caption := 'Encoding';
    frmdbCoreImport.chbColumnNamesRow.Caption := 'Column name as first row';
    frmdbCoreImport.lbDateFormat.Caption := 'Date format';
    frmdbCoreImport.cbDateFormat.Items[0] := 'SQL format';
    frmdbCoreImport.cbDateFormat.Items[1] := 'Regional format ';
    frmdbCoreImport.lbTimeFormat.Caption := 'Time format';
    frmdbCoreImport.cbTimeFormat.Items[0] := 'SQL format';
    frmdbCoreImport.cbTimeFormat.Items[1] := 'Regional format ';
    frmdbCoreImport.gbData.Caption := '2. Data';
    frmdbCoreImport.lbImportTable.Caption := 'The table for import';
    frmdbCoreImport.lbFieldsAndColumns.Caption := 'Specify field name for every column';
    frmdbCoreImport.lbSqliteWarning.Caption := 'Backup your database before importing.'+#13+'The database may be damaged if you turn off the computer during import.';
    frmdbCoreImport.bImport.Caption := 'Import';


    frmdbCoreExport.Caption := 'Export';
    TdbStringGridEx(frmdbCoreExport.gridTables).Columns[0].Header.Caption := 'Tables';
    TdbStringGridEx(frmdbCoreExport.gridFields).Columns[1].Header.Caption := 'Fields';
    frmdbCoreExport.lbSettings.Caption := 'Settings';
    frmdbCoreExport.chbColumnNamesRow.Caption := 'Column name as first row';
    frmdbCoreExport.lbColumnsSeparator.Caption := 'Columns separator';
    frmdbCoreExport.cbSeparator.Items[0] := ', (comma)';
    frmdbCoreExport.cbSeparator.Items[1] := '; (semicolon) ';
    frmdbCoreExport.cbSeparator.Items[2] := '\t (tab)';
    frmdbCoreExport.cbSeparator.Items[3] := 'Custom';
    frmdbCoreExport.cbSeparator.ItemIndex := 0;
    frmdbCoreExport.lbEndOfLine.Caption := 'End of line';
    frmdbCoreExport.chbEnclosing.Caption := 'Double quotes enclose';
    frmdbCoreExport.lbSQLFilter.Caption := 'SQL filter (WHERE conditions)';
    frmdbCoreExport.bExport.Caption := 'Export to CSV';
    frmdbCoreImportProgress.Caption := 'Importing...';
    frmdbCoreImportProgress.bMore.Caption := 'More details';
    frmdbCoreImportProgress.bCancel.Caption := 'Cancel';


    // how to translate messages and captions
    Translate('Open_report_designer', 'Open report designer');
    Translate('Your_computer_does_not_have_Excel', 'Your computer does not have Excel');
    Translate('Your_computer_does_not_have_LibreOffice', 'Your computer does not have LibreOffice');
    Translate('Your_computer_does_not_have_Excel_or_LibreOffice', 'Your computer does not have Excel or LibreOffice');
    Translate('Entry_to_edit_is_no_selected', 'Entry to edit is no selected');
    Translate('Unable to determine the record ID', 'Unable_to_determine_the_record_ID');
    Translate('Please_select_record_in_grid', 'Please select record in grid');
    Translate('Report_file_not_found', 'Report file not found');
    Translate('Entry_to_be_deleted_is_not_selected', 'Entry to be deleted is not selected');
    Translate('Are_you_sure_you_want_to_delete_the_record', 'Are you sure you want to delete the record');
    Translate('The_database_file_is_not_found', 'The database file is not found');
    Translate('Not_a_number: string', 'Not a number');
    Translate('Are_you_sure_you_want_to_delete_the_image_from_the_database', 'Are you sure you want to delete the image from the database');
    Translate('There_is_no_file_to_save', 'There is no file to save');
    Translate('Do_you_really_want_to_delete_the_file_from_the_database', 'Do you really want to delete the file from the database');
    Translate('Restart_the_program_to_apply_the_settings', 'Restart the program to apply the settings');
    Translate('This_Field_is_required', 'This Field is required');
    Translate('Not_permitted_to_use_ComboBox_for_saving_record', 'Not permitted to use ComboBox for saving record');
    Translate('Saving_or_opening_file_from_database', 'Saving or opening file from database');
    Translate('Select_file_stored_in_database', 'Select file stored in database');
    Translate('Export_image_from_database', 'Export image from database');
    Translate('Open_image_to_save_the_database', 'Open image to save the database');
    Translate('Delete_Image', 'Delete Image');
    Translate('Calculated_field', 'Calculated field');
    Translate('Counter_field', 'Counter field');
    Translate('Open_file', 'Open file');
    Translate('Save_file', 'Save file');
    Translate('Delete_file', 'Delete file');
    Translate('Open_folder_with_file', 'Open folder with file');
    Translate('Clear', 'Clear');
    Translate('Open', 'Open');
    Translate('Component', 'Component');
    Translate('No_data_to_add', 'No data to add');
    Translate('File_not_found', 'File not found');
    Translate('Confirm', 'Confirm');
    Translate('Error', 'Error');
    Translate('Info', 'Info');
    Translate('Set_marker', 'Set marker');
    Translate('Set_marker_at_address', 'Set marker at address');
    Translate('Delete_marker', 'Delete marker');
    Translate('Address', 'Address');
    Translate('Export', 'Export');
    Translate('Import', 'Import');
    Translate('Records_exported', 'Records exported');
    Translate('Records_imported', 'Records imported');
    Translate('Export_is_not_configured_correctly', 'Export is not configured correctly.');
    Translate('Import_is_not_configured_correctly', 'Import is not configured correctly.');
    Translate('Yes', 'Ja');
    Translate('No', 'Nein');
    Translate('None', 'None');
    Translate('Skip', 'Skip');
    Translate('Close', 'Close');
    Translate('Cancel', 'Cancel');
end.

http://myvisualdatabase.com/forum/viewt … mp;login=1

Thank you Derek. Such a great solution.!!!

Hi Derek. Can you please explain how did you insert the icon in the buttons??

89

(9 replies, posted in General)

It wotlrks fine.
I found a topic from the past asking Dmitry the same and he gave me a answere in the following topic http://myvisualdatabase.com/forum/viewtopic.php?id=588 but when I insert it in my example for a reason it dosent work right. Can someone give me a solution . Unfortunately I have a black out and can not send you example. Please try it with my example test.zip. thank you.

90

(9 replies, posted in General)

Thank you derek

91

(9 replies, posted in General)

I have lost all my notes and I need your help.
I like to avoid the same record when pressing the save Button.
Avoid when the barcode and the Artist and the album and the date and the format exist, else it should save it.
thank you in advance

92

(3 replies, posted in General)

Thank you all for your help.

Hi I am trying to search through google the text from EditBox using a Button.
I try the command     OpenUrl('www.google.com') + From1.Edit1.Text;  but opens only google search machine

94

(4 replies, posted in General)

Hi all,
Is there a way if i multiselect and copy some rows from an excell file and paste them in a tablegrid ? I have asked it before a long time ago but get no answere.

95

(4 replies, posted in General)

Maby this one will help you..
http://myvisualdatabase.com/help_en/Databaseschema.html

96

(12 replies, posted in General)

Mathias...A Big THANK YOU for your time helping me. I will do it step by step...

97

(15 replies, posted in General)

Thank you all so much!!!

98

(15 replies, posted in General)

k245 wrote:

As I wrote in a comment in the script, the WinControl_GetTabOrder() and WinControl_SetTabOrder() procedures need to be improved: they need to be written in ALL visual components that have the taborder property. I hope you can do this part of the work yourself.


What do you mean " they need to be written in ALL visual components that have the taborder property." ???

Thank you for your help

99

(12 replies, posted in General)

mathmathou wrote:

Hello v_pozidis,

I had a look at your database but had no time to work on it this week. Fortunately, the week-end is coming and I'l have more time to setup an example for you.

Cheers


Math


Thank you for your time, an example would also be great

100

(15 replies, posted in General)

k245 thank you for helping me. it works about 50%. What I wonna say is that it works for some buttons and then it works again random thebtab order
I have insert your script and fixed again all the tab orders and failed, and all this is because selecting style all the forms do not have the autoscroll function even if we select it from the tool bar or insert  it l as a script.