Changeset 52 for trunk/Forms
- Timestamp:
- Jul 25, 2016, 5:37:39 PM (8 years ago)
- Location:
- trunk/Forms
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormImportSources.lfm
r51 r52 27 27 end 28 28 item 29 Caption = 'Categories' 30 Width = 200 31 end 32 item 29 33 Caption = 'Count' 30 34 Width = 70 31 35 end 32 36 item 33 Caption = ' Categories'34 Width = 20037 Caption = 'Date' 38 Width = 100 35 39 end> 36 40 MultiSelect = True -
trunk/Forms/UFormImportSources.lrt
r51 r52 2 2 TFORMIMPORTSOURCES.LISTVIEW1.COLUMNS[0].CAPTION=Name 3 3 TFORMIMPORTSOURCES.LISTVIEW1.COLUMNS[1].CAPTION=URL 4 TFORMIMPORTSOURCES.LISTVIEW1.COLUMNS[2].CAPTION=Count 5 TFORMIMPORTSOURCES.LISTVIEW1.COLUMNS[3].CAPTION=Categories 4 TFORMIMPORTSOURCES.LISTVIEW1.COLUMNS[2].CAPTION=Categories 5 TFORMIMPORTSOURCES.LISTVIEW1.COLUMNS[3].CAPTION=Count 6 TFORMIMPORTSOURCES.LISTVIEW1.COLUMNS[4].CAPTION=Date 6 7 TFORMIMPORTSOURCES.TOOLBAR1.CAPTION=ToolBar1 7 8 TFORMIMPORTSOURCES.AADD.CAPTION=Add -
trunk/Forms/UFormImportSources.pas
r51 r52 64 64 SRemoveImportSourceQuery = 'Do you really want to remove selected import sources?'; 65 65 SImportSourceAlreadyExists = 'Import source %s already exists!'; 66 SProcessSelectedSource = 'Process selected import source'; 66 67 67 68 … … 75 76 Item.Data := ImportSources[Item.Index]; 76 77 Item.SubItems.Add(URL); 78 Item.SubItems.Add(Categories.GetString); 77 79 Item.SubItems.Add(IntToStr(ItemCount)); 78 Item.SubItems.Add(Categories.GetString); 80 if LastImportTime <> 0 then 81 Item.SubItems.Add(DateToStr(LastImportTime)) 82 else Item.SubItems.Add(''); 79 83 Item.Checked := Enabled; 80 84 end; … … 158 162 begin 159 163 if Assigned(ListView1.Selected) then begin 160 JobProgressView1.AddJob( 'Process selected import source', ProcessImportJob);164 JobProgressView1.AddJob(SProcessSelectedSource, ProcessImportJob); 161 165 JobProgressView1.Start; 162 166 ShowMessage(Format(SAddedCount, [TImportSource(ListView1.Selected.Data).ItemCount]));
Note:
See TracChangeset
for help on using the changeset viewer.