screenshot (Linux)

The program compares two directory to the identity of the files and the difference can be noted flag and copy the missing files.
The work is not completed and tested superficially.
Pb IDEComboBoxGadget(#Cmb, 10, 462, 80, 28)
AddGadgetItem(#Cmb, -1, "разные пути")
AddGadgetItem(#Cmb, -1, "разные путь размер")
AddGadgetItem(#Cmb, -1, "разные путь дата")
AddGadgetItem(#Cmb, -1, "разные путь размер дата")
AddGadgetItem(#Cmb, -1, "одинаковые пути")
AddGadgetItem(#Cmb, -1, "одинаковые путь размер")
AddGadgetItem(#Cmb, -1, "одинаковые путь дата")
AddGadgetItem(#Cmb, -1, "одинаковые путь размер дата")
SetGadgetState(#Cmb, 0)
PB IDE default font (Courier) is very old and not not display all characters.About this, i have a question, do you know why PB IDE can't read Russian characters, then notepad and Firefox yes ?
1. You have downloaded the old version. It is not convenient for me to update the link upload.ee. Many people ask for an alternative download link, as there are problems with yandex. But the link to yandex contains the most recent updates. By the link "upload.ee" I have to edit the link on all forums, but I don't need to change anything on yandex.
I have not see the difference between the old versionAdded source code with language support.
Added
Synchronization_Uni.pb
Code: Select all
Case 2 ; путь дата
Files() = tmp$ + Chr(10) + FormatDate("%dd/%mm/%yyyy%hh:%ii:%ss", GetFileDate(tmp$, #PB_Date_Modified))
Case 3 ; путь размер дата
Files() = tmp$ + Chr(10) + Str(FileSize(tmp$)) + Chr(10) +FormatDate("%dd/%mm/%yyyy%hh:%ii:%ss", GetFileDate(tmp$, #PB_Date_Modified))
Thank you a lot, Marc56us !Marc56us wrote: Thu Jul 08, 2021 4:56 pmPB IDE default font (Courier) is very old and not not display all characters.About this, i have a question, do you know why PB IDE can't read Russian characters, then notepad and Firefox yes ?
Use Courier New or Consolas (the best for coding IMHO) or any other.
Also set editor to Utf-8
![]()
I wondered if I need to convert all the files, slowing the speed of the function.