Ошибка exception ereaderror in module

Сегодня неожиданно перестал запускаться TheBat. База зашифрована паролем. При запуске появляется окно ввода пароля, но после ввода вылетает окно Application Error с сообщением Exception EReadError in module TheBat.exe at 000C6BAE. Invalid property value.
Вот что лежит в логе:

Цитата
Date: 18 Jun 2014 23:56:17
OS: Windows 8.1  X64 (AMD or Intel) build 9200
PhysMemFreeTotal: 4095/4095 MB
VirtMemFreeTotal: 1904/2047 MB
MAPI #0: Windows Live Hotmail [Hotmail]; Path: C:Program Files (x86)Internet Explorerhmmapi.dll (valid)
MAPI #1: The Bat! [The Bat!]; Path: C:Program Files (x86)The Bat!TBMapi32.dll (valid)
MAPI #2:  [Windows Mail]; Path: (not valid)
Default Profile:
Address: 004C6BAE
ClassName: EReadError
Message: Invalid property value
IsOSException: 0
Modules:
00400000 20140424064721 C:Program Files (x86)The Bat!TheBat.exe
Stack:
004C6BAE [00400000]
004C6BA9 [00400000]
004C6BB5 [00400000]
004C9B3E [00400000]
012BD4BE [00400000]
012BAC09 [00400000]
012BAE5A [00400000]
012BB049 [00400000]
012BB0D4 [00400000]
012BB105 [00400000]
012BBE95 [00400000]
01358444 [00400000]
006AA2A1 [00400000]
006AA911 [00400000]
013B5E07 [00400000]
013D959C [00400000]

Методом тыка нашел 2 файла в папке The Bat! Pwd, при удалении любого из которых бат начинает запускаться, но показывает пустые папки без писем.
GROUPS.EFG
USERDEPT.ENI

Нашел бэкап базы 3-месячной давности, попытался из него подложить эти файлы. На файл USERDEPT.ENI выдает сообщение что не может его прочитать, а со старым GROUPS.EFG так же показывает лишь пустые папки.
Видимо повреждены эти 2 файла, что можно сделать в моей ситуации чтобы восстановить письма?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
unit Unit1;
 
interface
 
uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Menus, Vcl.ExtCtrls, Vcl.StdCtrls, unit3,
  System.IniFiles, RegExpr, lib, clntinfo, clientadd,
//══════════════════════════════════════════════════════════════════════════════
  FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf,
  FireDAC.Phys.Intf, FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Stan.Async,
  FireDAC.Phys, FireDAC.Stan.Param, FireDAC.DatS, FireDAC.DApt.Intf,
  FireDAC.DApt, Data.DB, Vcl.Grids, Vcl.DBGrids, FireDAC.Comp.Client,
  FireDAC.Comp.DataSet, FireDAC.Phys.IB, FireDAC.Phys.IBDef, FireDAC.VCLUI.Wait,
  FireDAC.Comp.UI, Vcl.CheckLst;
 
type
  TForm1 = class(TForm)
    mm1: TMainMenu;
    mniFile1: TMenuItem;
    mniEdit1: TMenuItem;
    mniAbout1: TMenuItem;
    mniOptions1: TMenuItem;
    mniSettings1: TMenuItem;
    mniDesign1: TMenuItem;
    pnl1: TPanel;
    pnl2: TPanel;
    pnl3: TPanel;
    pnl4: TPanel;
    cbb_search: TComboBox;
    edt_search: TEdit;
    btn_search: TButton;
    dbgrd_tweety: TDBGrid;
    mniRestart1: TMenuItem;
    qry_tweety: TFDQuery;
    ds_tweety: TDataSource;
    mniModule1: TMenuItem;
    dbgrd_client: TDBGrid;
    dbgrd_now: TDBGrid;
    mniColumnVisible1: TMenuItem;
    pnl5: TPanel;
    btn2: TButton;
    chklst1: TCheckListBox;
    mniLogOff1: TMenuItem;
    pnl6: TPanel;
    pnl7: TPanel;
    btn_client_srch: TButton;
    edt_client_srch: TEdit;
    spl1: TSplitter;
    spl2: TSplitter;
    qry_client: TFDQuery;
    ds_client: TDataSource;
    chklst2: TCheckListBox;
    pm_twt: TPopupMenu;
    pm_clnt: TPopupMenu;
    pm_now: TPopupMenu;
    mniN1: TMenuItem;
    mniN2: TMenuItem;
    mniN3: TMenuItem;
  public
    procedure mniSettings1Click(Sender: TObject);
    procedure wmGetMinMaxInfo(var Msg : TMessage); message wm_GetMinMaxInfo;
    procedure FormResize(Sender: TObject);
    procedure edt_searchKeyUp(Sender: TObject; var Key: Word;
      Shift: TShiftState);
    procedure btn_searchClick(Sender: TObject);
    procedure FormShow(Sender: TObject);
    procedure mniRestart1Click(Sender: TObject);
    procedure mniModule1Click(Sender: TObject);
    procedure FormCreate(Sender: TObject);
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
    procedure mniColumnVisible1Click(Sender: TObject);
    procedure btn2Click(Sender: TObject);
    procedure edt_searchKeyPress(Sender: TObject; var Key: Char);
    procedure mniLogOff1Click(Sender: TObject);
    procedure edt_client_srchKeyUp(Sender: TObject; var Key: Word;
      Shift: TShiftState);
    procedure btn_client_srchClick(Sender: TObject);
    procedure mniN3Click(Sender: TObject);
    procedure mniN2Click(Sender: TObject);
  private
    { Private declarations }
  end;
 
var
  Form1: TForm1;
  onstart:boolean = False;//Определение для оншов, если программа только запущенна
  settings_,main_set,sale_set:TIniFile;
  RegExp: TRegExpr;
  usrname:string;
  login_:TDBLogin;
  Connection:TConSettings;
 
 
implementation
 
{$R *.dfm}
 
uses Unit2, TestModule, Password;
 
procedure TForm1.wmGetMinMaxInfo(var Msg : TMessage);//минимальный размер формы
begin
  PMinMaxInfo(Msg.lParam)^.ptMinTrackSize.X := 1000;
  PMinMaxInfo(Msg.lParam)^.ptMinTrackSize.Y := 600;
end;
 
procedure TForm1.btn2Click(Sender: TObject);
begin
  settingsave;
  pnl5.Left:=-3000;
end;
 
///Поиск
procedure TForm1.btn_client_srchClick(Sender: TObject);
begin
  qry_client.SQL.Clear;
  qry_client.SQL.Add('SELECT * FROM Client WHERE clientdata LIKE ''%'+AnsiLowerCase(edt_client_srch.Text)+'%''');
  try
    DataModule3.fdtrnsctn.StartTransaction;
    qry_client.Active:=true;
    DataModule3.fdtrnsctn.Commit;
  except
    on E:Exception do
      begin
        if Active then DataModule3.fdtrnsctn.Rollback;
        showmessage(PChar(E.Message));
      end;
  end;
  ColWidthSet;
end;
 
procedure TForm1.btn_searchClick(Sender: TObject);
begin
  qry_tweety.SQL.Text:='';
  if edt_search.Text<>'' then  //Если строка не пустая
    begin
 
      if cbb_search.ItemIndex=0 then              //Штрих код 'Code'
        begin
          with qry_tweety do
              SQL.Add('SELECT * FROM Tweety WHERE Code LIKE '+s39(edt_search.Text));
        end
          else
            if cbb_search.ItemIndex=1 then        //Название 'Name'
              begin
                with qry_tweety do
                    SQL.Add('SELECT * FROM Tweety WHERE Name LIKE ''%'+edt_search.Text+'%''');
              end
                else
                  if cbb_search.ItemIndex=2 then  //Артикул 'Art'
                    begin
                      with qry_tweety do
                          SQL.Add('SELECT * FROM Tweety WHERE Art LIKE ''%'+edt_search.Text+'%''');
                    end;
    end
      else
        begin
          with qry_tweety do
            begin
              SQL.Clear;
              SQL.Add('SELECT * FROM Tweety');
              Active:=True;
            end;
        end;
 
  try
    DataModule3.fdtrnsctn.StartTransaction;
    qry_tweety.Active:=true;
    DataModule3.fdtrnsctn.Commit;
  except
    on E:Exception do
      begin
        if Active then DataModule3.fdtrnsctn.Rollback;
        showmessage(PChar(E.Message));
      end;
  end;
 
  ColWidthSet;
 
end;
 
procedure TForm1.edt_client_srchKeyUp(Sender: TObject; var Key: Word;
  Shift: TShiftState);
begin
  btn_client_srch.Click;
end;
 
procedure TForm1.edt_searchKeyPress(Sender: TObject; var Key: Char);
begin
  if key=#13 then key:=#0;
end;
 
procedure TForm1.edt_searchKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState);
begin
  if (cbb_search.ItemIndex=1) or (cbb_search.ItemIndex=2) then btn_search.Click;
  if Key=VK_RETURN then btn_search.Click;
end;
 
procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
begin
  if onstart then settingsave;
 
  main_set.WriteInteger('FormDesign','height',clientheight);
  main_set.WriteInteger('FormDesign','width',clientwidth);
//  main_set.WriteInteger('FormDesign','sp1',spl1.Top);
//  main_set.WriteInteger('FormDesign','sp2',spl2.Left);
  main_set.WriteInteger('FormDesign','left',Left);
  main_set.WriteInteger('FormDesign','top',top);
  main_set.WriteFloat('FormDesign','tstflt',0.1);
  main_set.WriteInteger('FormDesign','halign',pnl2.Width);
  main_set.WriteInteger('FormDesign','valing',pnl6.Height);
end;
 
procedure TForm1.FormCreate(Sender: TObject);
begin
//  showmessage(getcurrentdir);
  settings_:=TIniFile.Create(GetCurrentDir+'settingscolumns.ini');
//  set_conn :=TIniFile.Create(GetCurrentDir+'settingsconnection.ini');
  connection:=loadConSettings;
  //Connection
  with DataModule3 do
    begin
      con_tweety.Params.Text:=
            'Database='+Connection.dbflepath+#10#13+
            'Port='+inttostr(Connection.port)+#10#13+
            'Server='+Connection.ip+#10#13+
            'Password='+Connection.autint.login+#10#13+
            'User_Name='+Connection.autint.pass+#10#13+
            'OSAuthent=No'+#10#13+
            'Protocol=TCPIP'+#10#13+
            'CharacterSet=WIN1251'+#10#13+
            'DriverID=FB';
    end;
  main_set :=TIniFile.Create(GetCurrentDir+'settingsmain.ini');
  pnl5.Left:=-3000
end;
 
procedure TForm1.FormResize(Sender: TObject);
begin
//  pnl1.Width:=Round(ClientWidth/2);
//  pnl2.Width:=pnl1.Width;
end;
 
procedure TForm1.FormShow(Sender: TObject);
begin
  if not f then logout;
  clientheight:=main_set.ReadInteger('FormDesign','height',662);
  clientwidth:=main_set.ReadInteger('FormDesign','width',1036);
  left:=main_set.ReadInteger('FormDesign','left',Round(screen.Width/2-width/2));
  top:=main_set.ReadInteger('FormDesign','top',Round(screen.Height/2-height/2));
  pnl2.Width:=main_set.ReadInteger('FormDesign','halign',round(Width/2));
  pnl6.Height:=main_set.ReadInteger('FormDesign','valing',round((pnl2.Height-pnl4.Height)/2));
//  showmessage(ptn('09 353  142    3 4'))
end;
 
procedure TForm1.mniColumnVisible1Click(Sender: TObject);
begin
  pnl5.Left:=Round(clientwidth/2-pnl5.Width/2);
  pnl5.top:=Round(clientheight/2-pnl5.Height/2);
end;
 
procedure TForm1.mniLogOff1Click(Sender: TObject);
begin
  logout;
end;
 
procedure TForm1.mniModule1Click(Sender: TObject);
begin
  testmoduleform.Show;
end;
 
procedure TForm1.mniN2Click(Sender: TObject);
begin
  AddClient.Show;
end;
 
procedure TForm1.mniN3Click(Sender: TObject);
begin
  ClientInfo.Show;
  clntinfo.id :=qry_client.FieldByName('id').AsInteger;
  clientinfo.edt1.Text:=qry_client.FieldByName('name').AsString;
  clientinfo.medt1.Text:=qry_client.FieldByName('number').AsString;
  clientinfo.mmo1.Text:=qry_client.FieldByName('description').AsString;
end;
 
procedure TForm1.mniRestart1Click(Sender: TObject);
begin
//  ShellExecute(0,'open',PWideChar(Application.ExeName),'c:','',SW_SHOWNORMAL);
//  Halt;
end;
 
procedure TForm1.mniSettings1Click(Sender: TObject);
begin
  Settings.Show;
end;
 
end.

Сегодня неожиданно перестал запускаться TheBat. База зашифрована паролем. При запуске появляется окно ввода пароля, но после ввода вылетает окно Application Error с сообщением Exception EReadError in module TheBat.exe at 000C6BAE. Invalid property value.
Вот что лежит в логе:

Цитата
Date: 18 Jun 2014 23:56:17
OS: Windows 8.1  X64 (AMD or Intel) build 9200
PhysMemFreeTotal: 4095/4095 MB
VirtMemFreeTotal: 1904/2047 MB
MAPI #0: Windows Live Hotmail [Hotmail]; Path: C:Program Files (x86)Internet Explorerhmmapi.dll (valid)
MAPI #1: The Bat! [The Bat!]; Path: C:Program Files (x86)The Bat!TBMapi32.dll (valid)
MAPI #2:  [Windows Mail]; Path: (not valid)
Default Profile:
Address: 004C6BAE
ClassName: EReadError
Message: Invalid property value
IsOSException: 0
Modules:
00400000 20140424064721 C:Program Files (x86)The Bat!TheBat.exe
Stack:
004C6BAE [00400000]
004C6BA9 [00400000]
004C6BB5 [00400000]
004C9B3E [00400000]
012BD4BE [00400000]
012BAC09 [00400000]
012BAE5A [00400000]
012BB049 [00400000]
012BB0D4 [00400000]
012BB105 [00400000]
012BBE95 [00400000]
01358444 [00400000]
006AA2A1 [00400000]
006AA911 [00400000]
013B5E07 [00400000]
013D959C [00400000]

Методом тыка нашел 2 файла в папке The Bat! Pwd, при удалении любого из которых бат начинает запускаться, но показывает пустые папки без писем.
GROUPS.EFG
USERDEPT.ENI

Нашел бэкап базы 3-месячной давности, попытался из него подложить эти файлы. На файл USERDEPT.ENI выдает сообщение что не может его прочитать, а со старым GROUPS.EFG так же показывает лишь пустые папки.
Видимо повреждены эти 2 файла, что можно сделать в моей ситуации чтобы восстановить письма?

Автор Сообщение

Заголовок сообщения: Exception EReadError in module TrackChecker.exe at 0009F290.

СообщениеДобавлено: Чт июл 06, 2017 4:19 pm 

Не в сети

Зарегистрирован: Чт июл 06, 2017 4:15 pm
Сообщения: 2
Has thanked: 0 time
Been thanked: 0 time

Stream read error.

Вот такая ошибка начала возникать при запуске программы с неделю назад, после обновления каких-то сервисов в программе. Программа из-за нее не запускается. Переустановка ошибку не решает.
Куда копать, как решить проблему?
Спасибо.

Вернуться к началу

Профиль  

arheep

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Сб июл 29, 2017 7:19 am 

Не в сети

Зарегистрирован: Вс окт 12, 2014 10:03 am
Сообщения: 3
Has thanked: 0 time
Been thanked: 0 time

У меня такая же ситуация, после обновления сервисов, программа не запускается и выдаёт такую же ошибку. Пробовал переустанавливать разные версии, ничего не помогло. Программа заработала только в портабельном режиме, при переключении в нормальный режим, снова не запускается.

Вернуться к началу

Профиль  

garfeeld

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Пт сен 08, 2017 11:38 pm 

Не в сети

Зарегистрирован: Чт июл 06, 2017 4:15 pm
Сообщения: 2
Has thanked: 0 time
Been thanked: 0 time

Помогло полное удаление со всеми хвостами из реестра и appdata, удалял через Revo uninstaller

Вернуться к началу

Профиль  

123456789asd

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Пн сен 11, 2017 8:56 pm 

Не в сети

Зарегистрирован: Пн сен 11, 2017 8:50 pm
Сообщения: 1
Has thanked: 0 time
Been thanked: 0 time

В папке с программой нужно удалить файл services.dat.new, программа запустится. После ещё одна попытка обновления services.dat прошла без проблем.

Вернуться к началу

Профиль  

W.A.S.P.

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Сб ноя 11, 2017 1:35 am 

Не в сети

Зарегистрирован: Сб ноя 11, 2017 12:43 am
Сообщения: 2
Has thanked: 0 time
Been thanked: 0 time

Аналогично, тольбко код ошибки 0x7c812fd3.
Танцы с бубном, вернее с services.dat, не помогают:-(

Вернуться к началу

Профиль  

Andrew_SM

Заголовок сообщения: Обновился и программа не запускается

СообщениеДобавлено: Пт окт 05, 2018 11:57 pm 

Не в сети

Зарегистрирован: Пт окт 05, 2018 11:53 pm
Сообщения: 1
Has thanked: 0 time
Been thanked: 0 time

Добрый день,

Подскажите, пожалуйста. Только что обновился и теперь получаю ошибку. Пробовал переставить ПО, результат тот же как восстановить её?

У вас нет необходимых прав для просмотра вложений в этом сообщении.

Вернуться к началу

Профиль  

M111sha

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Сб окт 06, 2018 9:07 am 

Не в сети

Зарегистрирован: Вс фев 19, 2017 11:29 pm
Сообщения: 2
Has thanked: 0 time
Been thanked: 1 time

Проблема такая-же, код ошибки немного другой. Сперва нажимаем контр+альт+делет и убиваем процесс, потом включаем отображение скрытых файлов и папок, идем в папку C:Usersимя пользователяAppDataRoamingTrackChecker, там удаляем services.dat.new

Запускаем программу и она опять найдет новые сервисы, со 2 го раза все заработало

Вернуться к началу

Профиль  

MetalFan

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Сб окт 06, 2018 7:07 pm 

Зарегистрирован: Пт сен 14, 2012 9:50 am
Сообщения: 8813
Откуда: Moscow
Has thanked: 350 times
Been thanked: 960 times

M111sha, Спасибо за решение!

к сожалению на хостинге были проблемы, и выкачивались кривое обновление сервисов. теперь все должно быть хорошо

_________________
wbw, MetalFan

Вернуться к началу

Профиль  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
unit Unit1;   interface   uses   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,   Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.Menus, Vcl.ExtCtrls, Vcl.StdCtrls, unit3,   System.IniFiles, RegExpr, lib, clntinfo, clientadd, //══════════════════════════════════════════════════════════════════════════════   FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error, FireDAC.UI.Intf,   FireDAC.Phys.Intf, FireDAC.Stan.Def, FireDAC.Stan.Pool, FireDAC.Stan.Async,   FireDAC.Phys, FireDAC.Stan.Param, FireDAC.DatS, FireDAC.DApt.Intf,   FireDAC.DApt, Data.DB, Vcl.Grids, Vcl.DBGrids, FireDAC.Comp.Client,   FireDAC.Comp.DataSet, FireDAC.Phys.IB, FireDAC.Phys.IBDef, FireDAC.VCLUI.Wait,   FireDAC.Comp.UI, Vcl.CheckLst;   type   TForm1 = class(TForm)     mm1: TMainMenu;     mniFile1: TMenuItem;     mniEdit1: TMenuItem;     mniAbout1: TMenuItem;     mniOptions1: TMenuItem;     mniSettings1: TMenuItem;     mniDesign1: TMenuItem;     pnl1: TPanel;     pnl2: TPanel;     pnl3: TPanel;     pnl4: TPanel;     cbb_search: TComboBox;     edt_search: TEdit;     btn_search: TButton;     dbgrd_tweety: TDBGrid;     mniRestart1: TMenuItem;     qry_tweety: TFDQuery;     ds_tweety: TDataSource;     mniModule1: TMenuItem;     dbgrd_client: TDBGrid;     dbgrd_now: TDBGrid;     mniColumnVisible1: TMenuItem;     pnl5: TPanel;     btn2: TButton;     chklst1: TCheckListBox;     mniLogOff1: TMenuItem;     pnl6: TPanel;     pnl7: TPanel;     btn_client_srch: TButton;     edt_client_srch: TEdit;     spl1: TSplitter;     spl2: TSplitter;     qry_client: TFDQuery;     ds_client: TDataSource;     chklst2: TCheckListBox;     pm_twt: TPopupMenu;     pm_clnt: TPopupMenu;     pm_now: TPopupMenu;     mniN1: TMenuItem;     mniN2: TMenuItem;     mniN3: TMenuItem;   public     procedure mniSettings1Click(Sender: TObject);     procedure wmGetMinMaxInfo(var Msg : TMessage); message wm_GetMinMaxInfo;     procedure FormResize(Sender: TObject);     procedure edt_searchKeyUp(Sender: TObject; var Key: Word;       Shift: TShiftState);     procedure btn_searchClick(Sender: TObject);     procedure FormShow(Sender: TObject);     procedure mniRestart1Click(Sender: TObject);     procedure mniModule1Click(Sender: TObject);     procedure FormCreate(Sender: TObject);     procedure FormClose(Sender: TObject; var Action: TCloseAction);     procedure mniColumnVisible1Click(Sender: TObject);     procedure btn2Click(Sender: TObject);     procedure edt_searchKeyPress(Sender: TObject; var Key: Char);     procedure mniLogOff1Click(Sender: TObject);     procedure edt_client_srchKeyUp(Sender: TObject; var Key: Word;       Shift: TShiftState);     procedure btn_client_srchClick(Sender: TObject);     procedure mniN3Click(Sender: TObject);     procedure mniN2Click(Sender: TObject);   private     { Private declarations }   end;   var   Form1: TForm1;   onstart:boolean = False;//Определение для оншов, если программа только запущенна   settings_,main_set,sale_set:TIniFile;   RegExp: TRegExpr;   usrname:string;   login_:TDBLogin;   Connection:TConSettings;     implementation   {$R *.dfm}   uses Unit2, TestModule, Password;   procedure TForm1.wmGetMinMaxInfo(var Msg : TMessage);//минимальный размер формы begin   PMinMaxInfo(Msg.lParam)^.ptMinTrackSize.X := 1000;   PMinMaxInfo(Msg.lParam)^.ptMinTrackSize.Y := 600; end;   procedure TForm1.btn2Click(Sender: TObject); begin   settingsave;   pnl5.Left:=-3000; end;   ///Поиск procedure TForm1.btn_client_srchClick(Sender: TObject); begin   qry_client.SQL.Clear;   qry_client.SQL.Add('SELECT * FROM Client WHERE clientdata LIKE ''%'+AnsiLowerCase(edt_client_srch.Text)+'%''');   try     DataModule3.fdtrnsctn.StartTransaction;     qry_client.Active:=true;     DataModule3.fdtrnsctn.Commit;   except     on E:Exception do       begin         if Active then DataModule3.fdtrnsctn.Rollback;         showmessage(PChar(E.Message));       end;   end;   ColWidthSet; end;   procedure TForm1.btn_searchClick(Sender: TObject); begin   qry_tweety.SQL.Text:='';   if edt_search.Text<>'' then  //Если строка не пустая     begin         if cbb_search.ItemIndex=0 then              //Штрих код 'Code'         begin           with qry_tweety do               SQL.Add('SELECT * FROM Tweety WHERE Code LIKE '+s39(edt_search.Text));         end           else             if cbb_search.ItemIndex=1 then        //Название 'Name'               begin                 with qry_tweety do                     SQL.Add('SELECT * FROM Tweety WHERE Name LIKE ''%'+edt_search.Text+'%''');               end                 else                   if cbb_search.ItemIndex=2 then  //Артикул 'Art'                     begin                       with qry_tweety do                           SQL.Add('SELECT * FROM Tweety WHERE Art LIKE ''%'+edt_search.Text+'%''');                     end;     end       else         begin           with qry_tweety do             begin               SQL.Clear;               SQL.Add('SELECT * FROM Tweety');               Active:=True;             end;         end;     try     DataModule3.fdtrnsctn.StartTransaction;     qry_tweety.Active:=true;     DataModule3.fdtrnsctn.Commit;   except     on E:Exception do       begin         if Active then DataModule3.fdtrnsctn.Rollback;         showmessage(PChar(E.Message));       end;   end;     ColWidthSet;   end;   procedure TForm1.edt_client_srchKeyUp(Sender: TObject; var Key: Word;   Shift: TShiftState); begin   btn_client_srch.Click; end;   procedure TForm1.edt_searchKeyPress(Sender: TObject; var Key: Char); begin   if key=#13 then key:=#0; end;   procedure TForm1.edt_searchKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState); begin   if (cbb_search.ItemIndex=1) or (cbb_search.ItemIndex=2) then btn_search.Click;   if Key=VK_RETURN then btn_search.Click; end;   procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction); begin   if onstart then settingsave;     main_set.WriteInteger('FormDesign','height',clientheight);   main_set.WriteInteger('FormDesign','width',clientwidth); //  main_set.WriteInteger('FormDesign','sp1',spl1.Top); //  main_set.WriteInteger('FormDesign','sp2',spl2.Left);   main_set.WriteInteger('FormDesign','left',Left);   main_set.WriteInteger('FormDesign','top',top);   main_set.WriteFloat('FormDesign','tstflt',0.1);   main_set.WriteInteger('FormDesign','halign',pnl2.Width);   main_set.WriteInteger('FormDesign','valing',pnl6.Height); end;   procedure TForm1.FormCreate(Sender: TObject); begin //  showmessage(getcurrentdir);   settings_:=TIniFile.Create(GetCurrentDir+'settingscolumns.ini'); //  set_conn :=TIniFile.Create(GetCurrentDir+'settingsconnection.ini');   connection:=loadConSettings;   //Connection   with DataModule3 do     begin       con_tweety.Params.Text:=             'Database='+Connection.dbflepath+#10#13+             'Port='+inttostr(Connection.port)+#10#13+             'Server='+Connection.ip+#10#13+             'Password='+Connection.autint.login+#10#13+             'User_Name='+Connection.autint.pass+#10#13+             'OSAuthent=No'+#10#13+             'Protocol=TCPIP'+#10#13+             'CharacterSet=WIN1251'+#10#13+             'DriverID=FB';     end;   main_set :=TIniFile.Create(GetCurrentDir+'settingsmain.ini');   pnl5.Left:=-3000 end;   procedure TForm1.FormResize(Sender: TObject); begin //  pnl1.Width:=Round(ClientWidth/2); //  pnl2.Width:=pnl1.Width; end;   procedure TForm1.FormShow(Sender: TObject); begin   if not f then logout;   clientheight:=main_set.ReadInteger('FormDesign','height',662);   clientwidth:=main_set.ReadInteger('FormDesign','width',1036);   left:=main_set.ReadInteger('FormDesign','left',Round(screen.Width/2-width/2));   top:=main_set.ReadInteger('FormDesign','top',Round(screen.Height/2-height/2));   pnl2.Width:=main_set.ReadInteger('FormDesign','halign',round(Width/2));   pnl6.Height:=main_set.ReadInteger('FormDesign','valing',round((pnl2.Height-pnl4.Height)/2)); //  showmessage(ptn('09 353  142    3 4')) end;   procedure TForm1.mniColumnVisible1Click(Sender: TObject); begin   pnl5.Left:=Round(clientwidth/2-pnl5.Width/2);   pnl5.top:=Round(clientheight/2-pnl5.Height/2); end;   procedure TForm1.mniLogOff1Click(Sender: TObject); begin   logout; end;   procedure TForm1.mniModule1Click(Sender: TObject); begin   testmoduleform.Show; end;   procedure TForm1.mniN2Click(Sender: TObject); begin   AddClient.Show; end;   procedure TForm1.mniN3Click(Sender: TObject); begin   ClientInfo.Show;   clntinfo.id :=qry_client.FieldByName('id').AsInteger;   clientinfo.edt1.Text:=qry_client.FieldByName('name').AsString;   clientinfo.medt1.Text:=qry_client.FieldByName('number').AsString;   clientinfo.mmo1.Text:=qry_client.FieldByName('description').AsString; end;   procedure TForm1.mniRestart1Click(Sender: TObject); begin //  ShellExecute(0,'open',PWideChar(Application.ExeName),'c:','',SW_SHOWNORMAL); //  Halt; end;   procedure TForm1.mniSettings1Click(Sender: TObject); begin   Settings.Show; end;   end.
#1 : 03/02-15 13:45
Dawn Rosy
Dawn Rosy

Posts: 5

I got error in Win 8.1 x64, it show

«Exception EReadError in module ARen.exe at 00057F74. Error reading treeAddFolderTree.lndent: Access violation at address 00408B3B in module ‘ARen.exe’. Read of address 00000008»

any idea for this problem?

thanks

#2 : 12/02-15 09:10
A
A

Posts: 4

Reply to #1:
hi, I have the same error. On the other pc the software works well, on my pc it suddenly stopped working (and i usually used it a lot). What can i do to fix it?

Thank you in advance!

#3 : 12/02-15 20:47
Kim Jensen
Kim Jensen

Administrator
Posts: 813

Reply to #1:
That is odd. Are you still able to start the program?

I will recommend removing your settings so the program will start up fresh. Your data is located here: c:UsersYOUR USERNAMEappdataRoamingHulubuluAdvanced Renamer 3

You can also try to download the portable version of Advanced Renamer and unzip and run it from a new location.

#4 : 13/02-15 00:19
A
A

Posts: 4

Reply to #3:

Until three months ago it worked well, but now it doesn’t open at all.
I tried this evening the portable version but it still doesn’t work. Also old versions don’t work.

This is the screenshot of the error.
https://www.dropbox.com/s/4zljj6kv4slyh5i/screen .PNG?dl=0

I hope to find the problem, because the software is really perfect for me! Thank you very much!

#5 : 13/02-15 07:24
Dawn Rosy
Dawn Rosy

Posts: 5

Reply to #3:

Deleting apps setting is not help. The problem will gone if i move or rename the folder of executable file located, but it only for once, the second time i run the program, the error will come again. My temporary solution is directly run the program from winRAR or 7z, so it will be run from temp folder.


13/02-15 07:24 — edited 13/02-15 07:26

#6 : 17/02-15 21:40
Kim Jensen
Kim Jensen

Administrator
Posts: 813

Reply to #5:
I really don’t understand this problem. I am not able to reproduce it at all. Are you running the latest version? Have you downloaded it from this website? What triggers the problem? If you open the program from a new location, close it without clicking any buttons in the program, and open it again, does the problem happen again? Are you running any kind of antivirus programs?

#7 : 19/02-15 14:54
Dawn Rosy
Dawn Rosy

Posts: 5

Reply to #6:

Yes, i download the latest version from this website, and i use Avira for my laptop.
I notice the problem after re-install the OS and install update.
If I open the program from a new location, close it without clicking any buttons, it only work for once, second time i run the program, the problem is come again.
Is it possible that the problem is caused by the new installed OS?

thanks

#8 : 19/02-15 18:21
Brian Seydlitz
Brian Seydlitz

Posts: 1

Reply to #7:

Yes. My software just started with the same error yesterday, although it had been a while since I have used it. This is by far the best renamer I’ve found and would like to keep using it. I’m also running W8.1 x64. I had used it successfully for about 6 months.

Your help is appreciated!

Bseyd

#9 : 20/02-15 08:05
Kim Jensen
Kim Jensen

Administrator
Posts: 813

Reply to #7:
It is very odd behavior. I am currently running Windows 7, since I am not a fan of Windows8. I have not been able to reproduce the problem on Windows 7, but I will try to get a machine running Windows 8.1 x64 and try to reproduce the problem.
Is it possible to run software in some sort of compatibility mode in Windows 8.1?

#10 : 22/02-15 12:48
Desmond Chu
Desmond Chu

Posts: 5

Reply to #9:

Hi, I experienced the same problem with a new computer running windows 8.1 pro running AdvancedRenamer v3.65. Same error as the others:

«Exception EReadError in module ARen.exe at 00057F74. Error reading treeAddFolderTree.lndent: Access violation at address 00408B3B in module ‘ARen.exe’. Read of address 00000008»

Tried running compadibility mode for windows 7 & XP SP3, plus ‘Run as Administrator» results in the same error.

It is working on another computer which running v3.64 for the last 5 months with no problems and continues to work. I suspected it may have been a windows update as not all updates are installed on the new computer. I uninstalled the following updates:

— KB2934520
Optionals
— KB3000850
— KB3013769
— KB3013816

Uninstalled & reinstalled AdvancedRenamer v3.65 and appear to have fixed the error.
Not sure which update is the cause. I suspect it is KB2934520 Microsoft.NET Framework 4.5.2 update.

Hope that helps to diagnose the problem.


22/02-15 12:48 — edited 22/02-15 12:51

#11 : 22/02-15 14:32
Kim Jensen
Kim Jensen

Administrator
Posts: 813

Reply to #10:
If this bug eventually affects all Windows 8.1 users, I will consider it pretty serious and something that needs to be fixed. I am right now installing all updates onto a computer running Windows 8.1 to try to reproduce the problem. FYI. it takes for ever to install all those updates! After spending 45 minutes installing 24 updates, it is now installing some more updates. Windows Updates says it is «Installing 12 of 5 updates…», and NO it is not a typo! I am not a fan of Windows today.


22/02-15 14:32 — edited 22/02-15 14:34

#12 : 22/02-15 16:04
Kim Jensen
Kim Jensen

Administrator
Posts: 813

Reply to #10:
I have installed all recommended and optional updates for this Windows 8.1 x64 based PC and have not been able to reproduce the problem. I even installed KB2934520 which did not give me any problems. The error message you get indicates that the aren.exe gets changed somehow, but I don’t know how. I would like to establish some common scenario in which the program get corrupted, but I don’t know why it happens. I cannot do anything about it without being able to reproduce the problem.

#13 : 22/02-15 23:47
Desmond Chu
Desmond Chu

Posts: 5

Reply to #12:

I take it back. I thought it worked last night when uninstalled the updates but the same error is coming up this morning.
The updates haven’t been re-installed.

I also installed the updates on the older computer and AdvancedRenamer still works.

*Edit

Correction to the above.
AdvancedRenamer is not working for a power user account (same error message) but it continues to work on the administrator user account which I originally ran the uninstall of the windows updates and reinstalled AdvancedRenamer from.


22/02-15 23:47 — edited 23/02-15 07:31

#14 : 02/03-15 21:58
Opjit Ghuman
Opjit Ghuman

Posts: 2

Reply to #13:
I have the same problem that started without my understanding of the system changes. I use 8.1 on a thinkpad. I re-installed the program and ran in compatibility mode. It is working for now.

I am logged in as administrator.

#15 : 04/03-15 23:57
Desmond Chu
Desmond Chu

Posts: 5

Reply to #14:

Thanks for the tip Opjit Ghuman.
I’ve tried it on my computer and it appears to work as well. Compadibility: Windows 7
I was pretty sure compatibility mode wasn’t working when I tired it previously but I guess I’m mistaken. Sorry if my info was misleading.


04/03-15 23:57 — edited 04/03-15 23:58

#16 : 05/03-15 08:34
Kim Jensen
Kim Jensen

Administrator
Posts: 813

Reply to #15:
I am still very curious to why some users experience this problem. I will keep trying to make it fail, but have not had any luck yet.

#17 : 06/03-15 13:54
Andrew
Andrew

Posts: 1

Reply to #15:

I’m also getting this bug on windows 8.1 x64.

I’ve had 8.1 installed for a long time and advanced renamer was working fine a few months ago. I then tried to use Advanced Renamer about a week ago and it gave this error. I then tried compatibility mode for Windows 7 and that fixed the error for that day.

Now I’ve just tried opening it up again and the error appears even with compatibility mode enabled. I’ve tried re extracting (portable) and different compatibility modes but now it won’t open at all. Very weird that compatibility mode fixed it for that one session last week and now it’s not working any more.

#18 : 15/03-15 10:36
Jean Youssef
Jean Youssef

Posts: 2

i had the same problem before (few months back), but i don’t know somehow i fixed it. but now i have it always and i cannot execute my software, i tried re installing the software, i tried uninstalling windows updates, also i tried the portable version but there was no success.

by the way, i am using windows 8.1 x64

#19 : 17/03-15 08:44
Kim Jensen
Kim Jensen

Administrator
Posts: 813

Reply to #18:
When you guys say you are running Windows 8.1 x64, is that the home or the professional edition? Also are you using the native English language or a translation?

#20 : 18/03-15 07:50
Jean Youssef
Jean Youssef

Posts: 2

Reply to #19:
it is Windows 8.1 Single Language,
before the software was working great, suddenly it is giving this error.
usually i noticed it comes when u try to rename folders and then u delete them, so when the program starts it will not find the designated folders, so i used to changed few things and the program works again, but now it is not working, always i have the same error, whatever i do.

thank you for your support, i hope we can find a final solution soon.

Jean

#21 : 18/03-15 18:33
Opjit Ghuman
Opjit Ghuman

Posts: 2

Reply to #14:

Update: Ran fine for a few days and now the same error and had to uninstall. Using Windows 8.1 Pro x64.

Error log:

Faulting application name: ARen.exe, version: 3.65.0.0, time stamp: 0x547b2ae8
Faulting module name: KERNELBASE.dll, version: 6.3.9600.17278, time stamp: 0x53eeb460
Exception code: 0x0eedfade

Clearly something about permissions or ability to read or write a file that has occurred as a result of some windows update or a virus update. I use Avast Free.

It’s a nice program so will check to see when it is operational. By the way, I also used Magic File Renamer (latest version) and that will not even launch with error in the same kernelbase.dll. No action on that for some time now.

#22 : 19/03-15 12:52
James
James

Posts: 1

I’m getting the same error. It may have to do with the Version of .net installed.

Running Windows 8.1

#24 : 23/03-15 22:42
Kim Jensen
Kim Jensen

Administrator
Posts: 813

Installing updates were faster than expected. Installed all available updates for Windows 8.1 and still no problems. Have tried two different Windows 8.1 installations both with no problems. I have no idea what configuration on your computers that are making this problem.

#25 : 24/03-15 13:37
Desmond Chu
Desmond Chu

Posts: 5

Reply to #24:
Thank you for persisting to resolve this issue.

Like others, i’m experiencing the same thing. The error comes and goes when run in capability mode (Windows 7).
Can’t see a pattern as to when it will work and when it doesn’t.

I’ve tried on other windows 8.1 pro x64 machines with the same hardware and OS. The ones that work directly after installing never seem to have had a problem. Others just seem to pop up that error when it wants to irregardless what you do.

Not sure what we’re missing.

#26 : 25/03-15 18:26
Robin
Robin

Posts: 1

Same error here (Windows 8.1 Professional [german])
Only thing changed since the last start without errors was the installation of kodi (with Microsoft Visual C++?)

#27 : 30/04-15 10:59
A
A

Posts: 4

Is there something new about that?
Thank you in advance

#28 : 04/05-15 14:04
Hugo Santos
Hugo Santos

Posts: 1

I have the same error.
I think It all start after install a software whit Microsoft Visual C++ pack.
Worked fine until…then.

Thank you for your support.

#29 : 09/05-15 10:18
Alex
Alex

Posts: 2

Hi everybody !

I’m encoutering the same error, and as it’s was said, AdvancedRenamer is the must have renamer software, and so, I’ve try a lot of things to solve the problem and get AdvancedReanmer working again !!

After 2 format, and a step by step installation, each windows update, each software, I’ve found the responsible in my case … Not any of my windows update still responsible, juste AutoDesk application … Each autodesk application add a link in Explorer and this link get Windows 8 crashing and crashing on the desktop, way of almost invisible, but on Windows log I can see problem with :
QtCore_Ad_SyncNs_4.dll and KERNELBASE.dll
When I’ve install each update and each software, I’ve reboot and launch AdvancedRenamer, and it stop working after AutoDesk installation, after AutoDesk uninstall AdvancedReanmer start again normally …

Hope it can help somebody of you, if you don’t have any of AutoDesk software, look at software who is modifying Explorer tree, as link or shortcut in the tree.

Best regards, and thanks again for your so good and unbeliviable software, AdvancedRenamer, changed my life ! :)

P-S : Sorry for my bad English …

#30 : 10/05-15 22:02
eurokim
eurokim

Posts: 1

Reply to #29:

I think the same as you

IT WORKED WELL before I installed autodesk 3ds max, autocad, revit and some 3d app etc

on my win8.1 pro x64


10/05-15 22:02 — edited 10/05-15 22:04

#31 : 12/05-15 19:02
A
A

Posts: 4

Reply to #30:
It’s incredible!
I uninstalled Autodesk 360 and now AdvancedRenamer works again!

Thank you very much!!!

#32 : 15/05-15 18:53
Alex
Alex

Posts: 2

Reply to #31:
You’re Welcome !

I’m happy it can help some of you !

#33 : 19/05-15 01:41
Desmond Chu
Desmond Chu

Posts: 5

Reply to #32:
Thank you so much!

Uninstalling Autodesk 360 also made advanced renamer work again for me!

#34 : 06/10-15 15:52
Henk Uitewaal
Henk Uitewaal

Posts: 3

Reply to #33:

Indeed Autodesk 360 was the cause with me as well (win 8.1 64b)! AR worked together with AD 360 before, so some update of AD 360 must be responsable for this.

#1 : 03/02-15 13:45
Dawn Rosy
Dawn Rosy

Posts: 5

I got error in Win 8.1 x64, it show

«Exception EReadError in module ARen.exe at 00057F74. Error reading treeAddFolderTree.lndent: Access violation at address 00408B3B in module ‘ARen.exe’. Read of address 00000008»

any idea for this problem?

thanks

#2 : 12/02-15 09:10
A
A

Posts: 4

Reply to #1:
hi, I have the same error. On the other pc the software works well, on my pc it suddenly stopped working (and i usually used it a lot). What can i do to fix it?

Thank you in advance!

#3 : 12/02-15 20:47
Kim Jensen
Kim Jensen

Administrator
Posts: 817

Reply to #1:
That is odd. Are you still able to start the program?

I will recommend removing your settings so the program will start up fresh. Your data is located here: c:UsersYOUR USERNAMEappdataRoamingHulubuluAdvanced Renamer 3

You can also try to download the portable version of Advanced Renamer and unzip and run it from a new location.

#4 : 13/02-15 00:19
A
A

Posts: 4

Reply to #3:

Until three months ago it worked well, but now it doesn’t open at all.
I tried this evening the portable version but it still doesn’t work. Also old versions don’t work.

This is the screenshot of the error.
https://www.dropbox.com/s/4zljj6kv4slyh5i/screen .PNG?dl=0

I hope to find the problem, because the software is really perfect for me! Thank you very much!

#5 : 13/02-15 07:24
Dawn Rosy
Dawn Rosy

Posts: 5

Reply to #3:

Deleting apps setting is not help. The problem will gone if i move or rename the folder of executable file located, but it only for once, the second time i run the program, the error will come again. My temporary solution is directly run the program from winRAR or 7z, so it will be run from temp folder.


13/02-15 07:24 — edited 13/02-15 07:26

#6 : 17/02-15 21:40
Kim Jensen
Kim Jensen

Administrator
Posts: 817

Reply to #5:
I really don’t understand this problem. I am not able to reproduce it at all. Are you running the latest version? Have you downloaded it from this website? What triggers the problem? If you open the program from a new location, close it without clicking any buttons in the program, and open it again, does the problem happen again? Are you running any kind of antivirus programs?

#7 : 19/02-15 14:54
Dawn Rosy
Dawn Rosy

Posts: 5

Reply to #6:

Yes, i download the latest version from this website, and i use Avira for my laptop.
I notice the problem after re-install the OS and install update.
If I open the program from a new location, close it without clicking any buttons, it only work for once, second time i run the program, the problem is come again.
Is it possible that the problem is caused by the new installed OS?

thanks

#8 : 19/02-15 18:21
Brian Seydlitz
Brian Seydlitz

Posts: 1

Reply to #7:

Yes. My software just started with the same error yesterday, although it had been a while since I have used it. This is by far the best renamer I’ve found and would like to keep using it. I’m also running W8.1 x64. I had used it successfully for about 6 months.

Your help is appreciated!

Bseyd

#9 : 20/02-15 08:05
Kim Jensen
Kim Jensen

Administrator
Posts: 817

Reply to #7:
It is very odd behavior. I am currently running Windows 7, since I am not a fan of Windows8. I have not been able to reproduce the problem on Windows 7, but I will try to get a machine running Windows 8.1 x64 and try to reproduce the problem.
Is it possible to run software in some sort of compatibility mode in Windows 8.1?

#10 : 22/02-15 12:48
Desmond Chu
Desmond Chu

Posts: 5

Reply to #9:

Hi, I experienced the same problem with a new computer running windows 8.1 pro running AdvancedRenamer v3.65. Same error as the others:

«Exception EReadError in module ARen.exe at 00057F74. Error reading treeAddFolderTree.lndent: Access violation at address 00408B3B in module ‘ARen.exe’. Read of address 00000008»

Tried running compadibility mode for windows 7 & XP SP3, plus ‘Run as Administrator» results in the same error.

It is working on another computer which running v3.64 for the last 5 months with no problems and continues to work. I suspected it may have been a windows update as not all updates are installed on the new computer. I uninstalled the following updates:

— KB2934520
Optionals
— KB3000850
— KB3013769
— KB3013816

Uninstalled & reinstalled AdvancedRenamer v3.65 and appear to have fixed the error.
Not sure which update is the cause. I suspect it is KB2934520 Microsoft.NET Framework 4.5.2 update.

Hope that helps to diagnose the problem.


22/02-15 12:48 — edited 22/02-15 12:51

#11 : 22/02-15 14:32
Kim Jensen
Kim Jensen

Administrator
Posts: 817

Reply to #10:
If this bug eventually affects all Windows 8.1 users, I will consider it pretty serious and something that needs to be fixed. I am right now installing all updates onto a computer running Windows 8.1 to try to reproduce the problem. FYI. it takes for ever to install all those updates! After spending 45 minutes installing 24 updates, it is now installing some more updates. Windows Updates says it is «Installing 12 of 5 updates…», and NO it is not a typo! I am not a fan of Windows today.


22/02-15 14:32 — edited 22/02-15 14:34

#12 : 22/02-15 16:04
Kim Jensen
Kim Jensen

Administrator
Posts: 817

Reply to #10:
I have installed all recommended and optional updates for this Windows 8.1 x64 based PC and have not been able to reproduce the problem. I even installed KB2934520 which did not give me any problems. The error message you get indicates that the aren.exe gets changed somehow, but I don’t know how. I would like to establish some common scenario in which the program get corrupted, but I don’t know why it happens. I cannot do anything about it without being able to reproduce the problem.

#13 : 22/02-15 23:47
Desmond Chu
Desmond Chu

Posts: 5

Reply to #12:

I take it back. I thought it worked last night when uninstalled the updates but the same error is coming up this morning.
The updates haven’t been re-installed.

I also installed the updates on the older computer and AdvancedRenamer still works.

*Edit

Correction to the above.
AdvancedRenamer is not working for a power user account (same error message) but it continues to work on the administrator user account which I originally ran the uninstall of the windows updates and reinstalled AdvancedRenamer from.


22/02-15 23:47 — edited 23/02-15 07:31

#14 : 02/03-15 21:58
Opjit Ghuman
Opjit Ghuman

Posts: 2

Reply to #13:
I have the same problem that started without my understanding of the system changes. I use 8.1 on a thinkpad. I re-installed the program and ran in compatibility mode. It is working for now.

I am logged in as administrator.

#15 : 04/03-15 23:57
Desmond Chu
Desmond Chu

Posts: 5

Reply to #14:

Thanks for the tip Opjit Ghuman.
I’ve tried it on my computer and it appears to work as well. Compadibility: Windows 7
I was pretty sure compatibility mode wasn’t working when I tired it previously but I guess I’m mistaken. Sorry if my info was misleading.


04/03-15 23:57 — edited 04/03-15 23:58

#16 : 05/03-15 08:34
Kim Jensen
Kim Jensen

Administrator
Posts: 817

Reply to #15:
I am still very curious to why some users experience this problem. I will keep trying to make it fail, but have not had any luck yet.

#17 : 06/03-15 13:54
Andrew
Andrew

Posts: 1

Reply to #15:

I’m also getting this bug on windows 8.1 x64.

I’ve had 8.1 installed for a long time and advanced renamer was working fine a few months ago. I then tried to use Advanced Renamer about a week ago and it gave this error. I then tried compatibility mode for Windows 7 and that fixed the error for that day.

Now I’ve just tried opening it up again and the error appears even with compatibility mode enabled. I’ve tried re extracting (portable) and different compatibility modes but now it won’t open at all. Very weird that compatibility mode fixed it for that one session last week and now it’s not working any more.

#18 : 15/03-15 10:36
Jean Youssef
Jean Youssef

Posts: 2

i had the same problem before (few months back), but i don’t know somehow i fixed it. but now i have it always and i cannot execute my software, i tried re installing the software, i tried uninstalling windows updates, also i tried the portable version but there was no success.

by the way, i am using windows 8.1 x64

#19 : 17/03-15 08:44
Kim Jensen
Kim Jensen

Administrator
Posts: 817

Reply to #18:
When you guys say you are running Windows 8.1 x64, is that the home or the professional edition? Also are you using the native English language or a translation?

#20 : 18/03-15 07:50
Jean Youssef
Jean Youssef

Posts: 2

Reply to #19:
it is Windows 8.1 Single Language,
before the software was working great, suddenly it is giving this error.
usually i noticed it comes when u try to rename folders and then u delete them, so when the program starts it will not find the designated folders, so i used to changed few things and the program works again, but now it is not working, always i have the same error, whatever i do.

thank you for your support, i hope we can find a final solution soon.

Jean

#21 : 18/03-15 18:33
Opjit Ghuman
Opjit Ghuman

Posts: 2

Reply to #14:

Update: Ran fine for a few days and now the same error and had to uninstall. Using Windows 8.1 Pro x64.

Error log:

Faulting application name: ARen.exe, version: 3.65.0.0, time stamp: 0x547b2ae8
Faulting module name: KERNELBASE.dll, version: 6.3.9600.17278, time stamp: 0x53eeb460
Exception code: 0x0eedfade

Clearly something about permissions or ability to read or write a file that has occurred as a result of some windows update or a virus update. I use Avast Free.

It’s a nice program so will check to see when it is operational. By the way, I also used Magic File Renamer (latest version) and that will not even launch with error in the same kernelbase.dll. No action on that for some time now.

#22 : 19/03-15 12:52
James
James

Posts: 1

I’m getting the same error. It may have to do with the Version of .net installed.

Running Windows 8.1

#24 : 23/03-15 22:42
Kim Jensen
Kim Jensen

Administrator
Posts: 817

Installing updates were faster than expected. Installed all available updates for Windows 8.1 and still no problems. Have tried two different Windows 8.1 installations both with no problems. I have no idea what configuration on your computers that are making this problem.

#25 : 24/03-15 13:37
Desmond Chu
Desmond Chu

Posts: 5

Reply to #24:
Thank you for persisting to resolve this issue.

Like others, i’m experiencing the same thing. The error comes and goes when run in capability mode (Windows 7).
Can’t see a pattern as to when it will work and when it doesn’t.

I’ve tried on other windows 8.1 pro x64 machines with the same hardware and OS. The ones that work directly after installing never seem to have had a problem. Others just seem to pop up that error when it wants to irregardless what you do.

Not sure what we’re missing.

#26 : 25/03-15 18:26
Robin
Robin

Posts: 1

Same error here (Windows 8.1 Professional [german])
Only thing changed since the last start without errors was the installation of kodi (with Microsoft Visual C++?)

#27 : 30/04-15 10:59
A
A

Posts: 4

Is there something new about that?
Thank you in advance

#28 : 04/05-15 14:04
Hugo Santos
Hugo Santos

Posts: 1

I have the same error.
I think It all start after install a software whit Microsoft Visual C++ pack.
Worked fine until…then.

Thank you for your support.

#29 : 09/05-15 10:18
Alex
Alex

Posts: 2

Hi everybody !

I’m encoutering the same error, and as it’s was said, AdvancedRenamer is the must have renamer software, and so, I’ve try a lot of things to solve the problem and get AdvancedReanmer working again !!

After 2 format, and a step by step installation, each windows update, each software, I’ve found the responsible in my case … Not any of my windows update still responsible, juste AutoDesk application … Each autodesk application add a link in Explorer and this link get Windows 8 crashing and crashing on the desktop, way of almost invisible, but on Windows log I can see problem with :
QtCore_Ad_SyncNs_4.dll and KERNELBASE.dll
When I’ve install each update and each software, I’ve reboot and launch AdvancedRenamer, and it stop working after AutoDesk installation, after AutoDesk uninstall AdvancedReanmer start again normally …

Hope it can help somebody of you, if you don’t have any of AutoDesk software, look at software who is modifying Explorer tree, as link or shortcut in the tree.

Best regards, and thanks again for your so good and unbeliviable software, AdvancedRenamer, changed my life ! :)

P-S : Sorry for my bad English …

#30 : 10/05-15 22:02
eurokim
eurokim

Posts: 1

Reply to #29:

I think the same as you

IT WORKED WELL before I installed autodesk 3ds max, autocad, revit and some 3d app etc

on my win8.1 pro x64


10/05-15 22:02 — edited 10/05-15 22:04

#31 : 12/05-15 19:02
A
A

Posts: 4

Reply to #30:
It’s incredible!
I uninstalled Autodesk 360 and now AdvancedRenamer works again!

Thank you very much!!!

#32 : 15/05-15 18:53
Alex
Alex

Posts: 2

Reply to #31:
You’re Welcome !

I’m happy it can help some of you !

#33 : 19/05-15 01:41
Desmond Chu
Desmond Chu

Posts: 5

Reply to #32:
Thank you so much!

Uninstalling Autodesk 360 also made advanced renamer work again for me!

#34 : 06/10-15 15:52
Henk Uitewaal
Henk Uitewaal

Posts: 3

Reply to #33:

Indeed Autodesk 360 was the cause with me as well (win 8.1 64b)! AR worked together with AD 360 before, so some update of AD 360 must be responsable for this.

Автор Сообщение

Заголовок сообщения: Exception EReadError in module TrackChecker.exe at 0009F290.

СообщениеДобавлено: Чт июл 06, 2017 4:19 pm 

Не в сети



Зарегистрирован: Чт июл 06, 2017 4:15 pm
Сообщения: 2
Has thanked: 0 time
Been thanked: 0 time

Stream read error.

Вот такая ошибка начала возникать при запуске программы с неделю назад, после обновления каких-то сервисов в программе. Программа из-за нее не запускается. Переустановка ошибку не решает.
Куда копать, как решить проблему?
Спасибо.

Вернуться к началу

Профиль  

arheep

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Сб июл 29, 2017 7:19 am 

Не в сети



Зарегистрирован: Вс окт 12, 2014 10:03 am
Сообщения: 3
Has thanked: 0 time
Been thanked: 0 time

У меня такая же ситуация, после обновления сервисов, программа не запускается и выдаёт такую же ошибку. Пробовал переустанавливать разные версии, ничего не помогло. Программа заработала только в портабельном режиме, при переключении в нормальный режим, снова не запускается.

Вернуться к началу

Профиль  

garfeeld

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Пт сен 08, 2017 11:38 pm 

Не в сети



Зарегистрирован: Чт июл 06, 2017 4:15 pm
Сообщения: 2
Has thanked: 0 time
Been thanked: 0 time

Помогло полное удаление со всеми хвостами из реестра и appdata, удалял через Revo uninstaller

Вернуться к началу

Профиль  

123456789asd

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Пн сен 11, 2017 8:56 pm 

Не в сети



Зарегистрирован: Пн сен 11, 2017 8:50 pm
Сообщения: 1
Has thanked: 0 time
Been thanked: 0 time

В папке с программой нужно удалить файл services.dat.new, программа запустится. После ещё одна попытка обновления services.dat прошла без проблем.

Вернуться к началу

Профиль  

W.A.S.P.

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Сб ноя 11, 2017 1:35 am 

Не в сети



Зарегистрирован: Сб ноя 11, 2017 12:43 am
Сообщения: 2
Has thanked: 0 time
Been thanked: 0 time

Аналогично, тольбко код ошибки 0x7c812fd3.
Танцы с бубном, вернее с services.dat, не помогают:-(

Вернуться к началу

Профиль  

Andrew_SM

Заголовок сообщения: Обновился и программа не запускается

СообщениеДобавлено: Пт окт 05, 2018 11:57 pm 

Не в сети



Зарегистрирован: Пт окт 05, 2018 11:53 pm
Сообщения: 1
Has thanked: 0 time
Been thanked: 0 time

Добрый день,

Подскажите, пожалуйста. Только что обновился и теперь получаю ошибку. Пробовал переставить ПО, результат тот же как восстановить её?

У вас нет необходимых прав для просмотра вложений в этом сообщении.

Вернуться к началу

Профиль  

M111sha

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Сб окт 06, 2018 9:07 am 

Не в сети



Зарегистрирован: Вс фев 19, 2017 11:29 pm
Сообщения: 2
Has thanked: 0 time
Been thanked: 1 time

Проблема такая-же, код ошибки немного другой. Сперва нажимаем контр+альт+делет и убиваем процесс, потом включаем отображение скрытых файлов и папок, идем в папку C:Usersимя пользователяAppDataRoamingTrackChecker, там удаляем services.dat.new

Запускаем программу и она опять найдет новые сервисы, со 2 го раза все заработало

Вернуться к началу

Профиль  

MetalFan

Заголовок сообщения: Re: Exception EReadError in module TrackChecker.exe at 0009F

СообщениеДобавлено: Сб окт 06, 2018 7:07 pm 



Зарегистрирован: Пт сен 14, 2012 9:50 am
Сообщения: 8941
Откуда: Moscow
Has thanked: 357 times
Been thanked: 967 times

M111sha, Спасибо за решение!

к сожалению на хостинге были проблемы, и выкачивались кривое обновление сервисов. теперь все должно быть хорошо

_________________
wbw, MetalFan

Вернуться к началу

Профиль  

  • Ошибка exception access violation win 10
  • Ошибка exception 0х1333 generation failed
  • Ошибка exception 0xc0000005 access violation
  • Ошибка exception 0x1333 generation failed
  • Ошибка excel файл поврежден поэтому его нельзя открыть