Fatal error exception code c0000005 foxpro

C0000005 error and how to troubleshoot them This article introduces a C0000005 error and offers troubleshooting suggestions. Original product version: В Visual FoxPro Original KB number: В 2722492 Symptoms You are running Visual FoxPro interactive development environment or a custom VFP executable. The application closes and reports this error: C0000005 Fatal exception Cause A […]

Содержание

  1. C0000005 error and how to troubleshoot them
  2. Symptoms
  3. Cause
  4. Resolution
  5. Fatal error: Exception code=C0000005 and VFP9
  6. Fatal error exception code c0000005 foxpro
  7. Answered by:
  8. Question
  9. Answers

C0000005 error and how to troubleshoot them

This article introduces a C0000005 error and offers troubleshooting suggestions.

Original product version: В Visual FoxPro
Original KB number: В 2722492

Symptoms

You are running Visual FoxPro interactive development environment or a custom VFP executable. The application closes and reports this error:

C0000005 Fatal exception

Cause

A C0000005 error is memory error. Specifically, a C0000005 error is an access violation error caused by a buffer overrun.

Resolution

Many scenarios may cause Visual FoxPro to report a C0000005 error. The most efficient method of determining the root cause is to get a memory dump on the Visual FoxPro process when the error occurs and then examine the stack for the faulting module. For example, if a printer driver module is on the top of the stack, one should try updating the printer driver or trying a different driver. If a third party OCX appears as the faulting module, then you should check with the developer of that control for an update on compatibility with your version of Visual FoxPro.

Since Visual FoxPro is a 32-bit application, you must use a 32-bit debugger to obtain a memory dump.

To obtain the latest version of debug diag, see Debug Diagnostics Tool v1.2 is now available

These are some generic instructions for obtaining a memory dump for a Visual FoxPro process.

Install it on the machine(s) experiencing the crashes. Double-click DebugDiag.msi and follow the setup wizard. Install DebugDiag to a hard drive with at least 200 megs free.

To configure DebugDiag:

  1. Open DebugDiag. The ‘Select Rule Type’ dialog should open. Select CRASH and then click next.
  2. On the ‘Select Target Type’ dialog, select ‘A specific process’ and then click ‘Next’.
  3. Type the name of your .EXE into the ‘Selected Process’ textbox or select it from the list. If typing it in, be careful to spell the .EXE name correctly. Do NOT check the ‘This process instance only’ box — we want the rule in effect for all instances, until we capture a dump. Click ‘Next’ when done.
  4. On the ‘Advanced Configuration’ dialog, set the ‘Maximum Userdump Limit’ to 25, then click the ‘Exceptions’ button.
  5. Click ‘Add Exception’
  6. Select C0000005 in the list, then set the ‘Action Type’ to ‘Full Userdump’ and the ‘Action Limit’ to 25
  7. Click ‘OK’, then ‘Save and Close’ and finally click ‘Next’
  8. On the next screen, please leave the rule name and path to store the dumps as-is, then click ‘Next’.
  9. On the ‘Rule Complete’ screen, select ‘Activate the rule now’ and click FINISH. Now when a crash occurs in the application DebugDiag should automatically create dump files. The Userdump Count will also be incremented inside the DebugDiag IDE each time a dump for this rule is created. NOTE: It is not necessary to keep the DebugDiag window open; the dump monitor actually runs as a service and will capture the dump even if DebugDiag is closed.

Once the crash collection is complete, you can disable the rule we made earlier by doing this:

  1. Open DebugDiag.
  2. In the RULES tab, highlight our rule and then right-click and select ‘DISABLE RULE’

Источник

Fatal error: Exception code=C0000005 and VFP9

I have an application that works fine (was developed in VFP9). However, once in a while, when I install my application in a new customer/computer, I have the message:

Fatal error: Exception code=C0000005

Right at the beginning of the application (it doesn’t even show the foxpro screen or anything else, just the message and then the program aborts). I checked again virus, chkdsk, etc. and nothing works.

Sometimes it occurs in XP, sometimes W7. Some of those machines are brand new. The same disk that I use to install my app in one machine that works fine, is being used in another machine that occasionally doesn’t work.

Thanks in advance.

This has nothing to do with the computer. It might be a printer driver, ban index, incompatible code page or system language regional setting.

Try to put breakpoints and find out where exactly it is doing so.

Completely reindexing the files might help. Deleting corrupted foxuser.dbf and foxuser.fpt might also help. Back them up first.

ASKER CERTIFIED SOLUTION

This behavior occurs on computers where are some components (DLLs) which do not match your VFP version. Look e.g. into folder C:Program Files (x86)Common Filesmicrosoft sharedVFP or even in C:WindowsSystem32 etc.

It should not happen if you place all necessary DLLs into the app folder. The list of necessary files is here: http://fox.wikis.com/wc.dll?Wiki

If you provide your foxuser.dbf with the setup, because it contains some settings, it could easily cause the C5 errors, that’s true. Either provide no foxuser.dbf and let the exe create one, or even include a config.fpw into compilation, which prevents creation of a foxuser.dbf via the config.fpw line RESOURCE=OFF

Especially when installing to program files, no write access is given and no foxuser.dbf can be created. That would not cause a C5 error, though.

What runtime files do you include in your setup?
As you mentioned this happening on brand new computers, you may rely on something installed with other software, which you would perhaps simply need to add to your setup.

Thanks for your answers:

To CaptainCyril : your sugestion can not be used («. reindexing the files might help. Deleting corrupted foxuser.dbf and foxuser.fpt. «). My app doesn’t work with DBF tables, only with SQL (Express 2008) tables and I already install my app without Foxuser.* files.

To Gary2Seven: «. check the error log, vfp9err.log. «, regretfully, only shows the error, plus date, hour and nothing else. Don’t even the name of the program that made the first call. Not big help on this file. In regards to TRY and CATCH, I am trying to use that, but so far I can not «catch» that elusive error.

To pcelba: «. place all necessary DLLs into the app folder. «, Already try that and it didn’t work.

Still to try: replace printer driver , and find out if my app is expecting some «hidden» DLL from Foxpro ( GDIPLUS. etc.). I would say that out of 30 installations, one of them has de C5 error, the rest of computers works fine (keep in mind that it is same software without changes). I «googled» C5 error and there are many possible causes (perhaps hundreds), I can not try all of the possible solutions. The only possible solution is keep trying with TRY and CATCH. I was thinking that perhaps there is a more efficient way to solve this problem.

Can you put breakpoints or milestones?

For example: Connecting to database, Writing log, deleting temp files, .
This way you can know what the software is doing to find the source of the problem. So instead of hundreds of problems you can narrow it down to 2 or 3.

In my last C5 error, I managed to know that it was an EditBox with Chinese characters on an English-US OS language that caused the application to crash.

Again: What runtime fiels DO you include in your setup?
If you don’t include the C runtime you depend on whatever is already on the system.
If you don’t include the gdiplus.dll you depend on what is already on the system.
And that can crash.

You are explicitly allowed and it is explicitly recommended you install not only the core VFP runtime vfp9r.dll, but also all the related DLLs.

Pavel has pointed you to a runtime installer suite of which you can pick the appropriate one having the right SP revision. Just see what Version() says, the last number is what is meant as the Revision in the link pavel gave you.

As you don’t install foxuser.dbf, it’s recommendable you suppress it’s generation, too. Write a textfile with RESOURCE=OFF as it’s only line, name it config.fpw, include it to the project in text or other files and right click on it to untick the exclude context menu item. If that is unticked the file is not excluded from compilation into the final EXE. If you then build you have an exe that won’t try to create a foxuser.dbf file and if that is by chance the reason you get your c5 error in some cases, that would resolve it.

In the normal case the OS restricts writing the foxuser.dbf right besides the EXE, if you install into program files, but it is instead written into a user directory. If that is also suppressed by group policies eg, then that could cause a c5. That would also explain, why it doesn’t happen always and only at some clients.

PS: Yes, there are many reasons for a C5, but very few for a C5 right at the start, even before any of your code lines run. Put a messagebox as your fist line and see if that executes. If the C5 error is before, the only reasons are runtime mismatch or a problem in foxuser.dbf usage or creation. There is nothing else done, before your code starts, than loading the runtime(s) and creating/using foxuser.dbf.

Thank you again for answers

I will try your suggestions. It will take some time before I have the answer, I can not reproduce the problem in my computers, and access to my customers’ computers is hard (they are in another countries, the only way is remote desktop), As soon as I have something I will let you know.

Every discussion about C000005 error in FoxPro is worth to read as this unhandled exception can have thousands of possible reasons. and this knows every Visual FoxPro developer.

All what was written in our posts is true and could help others to understand the foggy C000005 reasons. Unfortunately, grijalbo stopped responding and did not post the final resolution.

But are you sure just this final resolution would tell others what should they fix in their own applications to avoid C0000005 error? Not at all but others can try what we have recommended during the three days in the discussion.

So we have condensed our decades accumulated knowledge into three days and you now simply say «delete everything».

OTOH, it could also seem we are just points collectors. So in such case select the post hppps:a#41696557 as the answer please but don’t delete this question.

I second pcelba.

Keep the question. Don’t give us points if that satisfies you eenookami. Your words should be directed to Microsoft for their vague handling of C000005 errors.

Dear all Fox Users
my app appear to those error c5

i try to trap step by step, error appear because one of my table missing field in my grid.

in my programming error appear when the routing program «thisform.grid1.refresh»

i am no need reinstall my VFP9, DLL or anything

We cannot help as we don’t know your code, your VFP version, your conditions. Just read all the posts here and try to implement all hints.

MSDN Archive never more offers VFP Runtime download so here is the working link for VFP runtime downloads: http://www.foxpert.com/download/runtime.html

Just to add once more: C5 is just a headline. It categorizes this as an error the VFP runtime is not able to handle itself, no VFP error that has a specific error number, no specific reason for it. So don’t think when you find someone stating he found the reason, the same solution applies to you. You get a good hint in vfp9err.log stating the line which last executed. That can be a hint about a corrupt file like dbf or frx, but the error rarely is that line itself, it just has the bad luck of acting on something broken. Could be using a method of an object still in memory, though it should have released 100 lines of code back in some other class that ran before.

C5 error even is a C++ concept, not a VFP one, it’s access violation accessing invalid memory buffer, for any reason, eg a pointer in a dbf pointing to a non-existing offset of an FPT file. A memory address an object instance once was existing — anything.

You can’t suppress this or catch it in a try..catch. Some reasons are the VFP runtime not expecting certain corruption in files, no pointers to non-existing FPT file portions, for example. It’s just a made up example anyway, but all you can do is verify what’s been acted with the line of code, so this is just a starting point for an investigation of the involved PRG or SCX or VCX, involved open tables and reports and much more code and files up to the point of everything that ran previously and led to the situation. Even simpler errors the ones having a native VFP error number and a distinct simple explanation often need more than fixing that single line of code.

If you never debugged code, a C5 is a good reason to start. Once you know where it happens reproducible set a breakpoint for example in some click leading there and go through what happens step by step. And don’t wait for the C5 to happen, the seed of the error is typically planted earlier, it might even already exist when you start into single-step debugging. It can be a buffered record that is just committed when a dbf is closed because another one is opened, and then you should not only suspect the newly opened dbf. So this really needs experience of debugging in general, which you never get, if this is the first hard error challenging your bug fixing.

Know your FoxPro, use coverage logging to see much more than just the last few lines of code executing up to the C5 error incident. Have a health check of all files involved, maybe even the whole dbf, your project and also foxuser.dbf resource files. Even the intelliisense foxcode.dbf once caused a reproducible error. And now please, don’t check your foxcode.dbf, just because I mentioned it last.

You examine such things with detective skills, switch components, even the whole computer, to see if anything on that client and driver or OS issue catches you.

Источник

Fatal error exception code c0000005 foxpro

This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.

Answered by:

Question

I have modified an old FoxPro application in VFP SP2 and the final executable(.exe) works fine in my development system. Even in debug mode the application is fine. But when i try running the same build along with the supporting DLLs (got this info after googling) in another system it throws out these errors and the program terminates. However these errors are intermittent.

These are the DLLs i used:

VFP9Rerr.log

Answers

C00000005 is not a VFP error but a Windows OS error and it can be issued for many reasons.

People have there own pet reasons as to why it happens.

Normally, it is due to an error in the program creating a condition that the OS cannot recover from.

I have found that the specific Release of objects by issuing the command

Release obj1, obj2, etc.

certainly helps to reduce these errors. So if you have issued the command CreateObject() then you certainly need to specifically release those objects.

Also, if you have invoked external procedures contained in DLLs and APPs, you need to do the specified Close routines in order that the DLL/APP can release its own objects.

If you do a search on the web site and of the web in general for C00000005, you will get a lot more suggestions as to the cause.

Источник

  • Remove From My Forums
  • Question

  • I have modified an old FoxPro application in VFP SP2 and the final executable(.exe) works fine in my development system. Even in debug mode the application is fine. But when i try running the same build along with the supporting DLLs (got this info after
    googling) in another system it throws out these errors and the program terminates. However these errors are intermittent.

    Error

    Fatal error: Exception code=C0000005 @ 09/12/14 03:31:07 PM. Error log file: D:toolVFP9Rerr.log Called from - load line 0 { load.fxp} Called from - report line 0 { report.fxp} Called from - master line 0 { d:toolTool.exe}

    These are the DLLs i used:

    VFP9RENU.DLL vfp9r.dll GdiPlus.dll

    Why is this happening in other systems ?

    Further checking the Events Viewer, i found this:

    Faulting application name: Tool.exe, version: 8.0.2.0, time stamp: 0x47139f24 
    Faulting module name: VFP9R.DLL, version: 9.0.0.5815, time stamp: 0x49a31c32 
    Exception code: 0xc0000005 
    offset: 0x0031ad76 
    Faulting process id: 0x17d4 
    Faulting application start time: 0x01cfd0cec9e7d5ad 
    Faulting application path: D:toolTool.exe 
    Faulting module path: D:toolVFP9R.DLL 
    Report Id: 633e87a9-3cc2-11e4-8b21-54eb6ccd700b
    

    VFP9Rerr.log

    Fatal error: Exception code=C0000005 @ 09/15/14 03:28:53 PM. Error log file: D:toolVFP9Rerr.log
      Called from — load line 0 { loadschedule.fxp}
      Called from — event line 0 { eventscomprpt.fxp}
      Called from — main line 0 { d:toolToolt.exe}

Answers

  • C00000005 is not a VFP error but a Windows OS error and it can be issued for many reasons.

    People have there own pet reasons as to why it happens.

    Normally, it is due to an error in the program creating a condition that the OS cannot recover from.

    I have found that the specific Release of objects by issuing the command

    Release obj1, obj2, etc.

    certainly helps to reduce these errors. So if you have issued the command CreateObject() then you certainly need to specifically release those objects.

    Also, if you have invoked external procedures contained in DLLs and APPs, you need to do the specified Close routines in order that the DLL/APP can release its own objects.

    If you do a search on the web site and of the web in general for C00000005, you will get a lot more suggestions as to the cause.


    The English Bob

    • Marked as answer by

      Wednesday, September 24, 2014 9:58 AM

  • There is a known bug in VFP 9 SP2 involving forms with grids called from menu items. Go to this page: http://fox.wikis.com/wc.dll?Wiki~VFP9SP2BugList~Wiki and search for «grid» and see whether it applies here.

    Tamar

    • Marked as answer by
      Carl Cai
      Wednesday, September 24, 2014 9:58 AM

  • One more possible cause:

    Does your code use  RESOURCE  file?

    You have to check SYS(2005)  and SET(«RESOURCE») to answer it.

    If the resource file is used the you should delete all its records. If this does not help or if the resource file is not used then the answer from English Bob could help and then you may continue to Tamar’s hint.

    If nothing helps then compile the app with debug info which could provide better picture about the problematic line of code. BUT it is hard to identify the real problem in this kind of errors and you have to play with your code …

    • Marked as answer by
      Carl Cai
      Wednesday, September 24, 2014 9:58 AM

INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Thanks. We have received your request and will respond promptly.

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!

  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It’s Free!

*Tek-Tips’s functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

How to debug C0000005 error?

How to debug C0000005 error?

(OP)

5 Feb 11 00:00

Hi experts,

In the click() method of a button, I essentially have:

with this.parent
  if vartype(.ox)=[O]
    try
        do form editor.scx with .ox
    catch to oerr
             …………..

    endtry
  endif
endwith

This code works well 15 to 20 times before Windows reports the fatal error C0000005 with «Microsoft visual foxpro has stopped running.» If the program is cancelled and re-started, the program again works fine for another 15 to 20 times. The only information I can get is that «do form editor.scx with .ox» is causing the error. The error always occurs on exiting the editor form. The editor form is modal without anything in the unload or destroy events. «ox» is being saved and used in an editor property at initialization. «Try..Catch..Endtry» is never executed, so I can’t get any futher information.

Very fustrating, ideas?

Thank you for your consideration.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Join Tek-Tips® Today!

Join your peers on the Internet’s largest technical computer professional community.
It’s easy to join and it’s free.

Here’s Why Members Love Tek-Tips Forums:

  • Tek-Tips ForumsTalk To Other Members
  • Notification Of Responses To Questions
  • Favorite Forums One Click Access
  • Keyword Search Of All Posts, And More…

Register now while it’s still free!

Already a member? Close this window and log in.

Join Us             Close

18 / 18 / 5

Регистрация: 12.06.2013

Сообщений: 328

1

Выдает ошибку при запуске

15.12.2017, 13:29. Показов 3453. Ответов 3


Выдает ошибку при запуске формы ссылаясь то на объект формы; Fatal error: Excepyion code=C0000005
Called form — form1.pageframe1.page1.oletreeview(я так понимаю это переменная, понимаю что она в Public числится).init.line 48
{d:проектformsmain.sct}
Called form — проектstart line 62 {d:проектпроектstart.prg}
Вылетает такая ошибка не часто, через раз, то есть то нету.

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



0



31 / 30 / 12

Регистрация: 11.06.2016

Сообщений: 240

Записей в блоге: 11

13.02.2018, 12:22

2

В погоне за красотой пожертвовал функциональностью. Перетащил OLE-объект на фокспрошную форму. Теперь наслаждайся. Это не вопрос к FoxPro, это вопрос внешнего объекта.



1



185 / 179 / 28

Регистрация: 26.05.2011

Сообщений: 854

14.03.2018, 20:22

3

найди mscomctl.ocx в систем32 и положи рядом со своим экзешником, просто тупо скопируй оттуда в свой проект, если оле ты взял из него, то ошибка исчезнет



1



1 / 0 / 1

Регистрация: 23.06.2019

Сообщений: 14

28.06.2019, 22:12

4

Пост уже просрочен, но может кому еще понадобится.

Нужно прописать OLE объект с помощью regsvr32.exe
то есть запускаем cmd и пишем : regsvr32.exe mscomctl.ocx
Естественно под правами админа.
В некоторых компах возникает гимор , который устраняется только с переустановкой windows
Но хочешь TreeView придется помучиться.



0




Форум программистов Vingrad

Поиск:

Ответ в темуСоздание новой темы
Создание опроса
> Помогите с запуском *.exe VFP7 

:(

   

Опции темы

Dimchik
Дата 27.9.2005, 08:58 (ссылка)
| (нет голосов)
Загрузка ... Загрузка …




Быстрая цитата

Цитата

Новичок

Профиль
Группа: Участник
Сообщений: 16
Регистрация: 16.11.2004

Репутация: нет
Всего: нет

smile
на компьютере установлен VFP7. Когда пытаюсь запустить exe-шник проскакивает окно запуска VFP7 а потом выходит сообщение об ошибке » Fatal error: Exception code=C0000005 @ 09/27/05 12:54:16 PM. Error log file: с:PRGVFP7Rerr.log»
на данный момент выхожу из положения так(в ярлыке строка объект) : «»C:Program FilesMicrosoft Visual FoxPro 7vfp7.exe» с:PRGproj1.exe»
тогда программа запускается и работает, но ведь это неправильно

Поскажите пожалуйста как победить эту проблемку, а то в директорию где exe-шник приходится переписывать все prg, scx, sct, frx, frt

Заранее благодарен

PM MAIL   Вверх
bas
Дата 27.9.2005, 17:14 (ссылка)
| (нет голосов)
Загрузка ... Загрузка …




Быстрая цитата

Цитата

Опытный
**

Профиль
Группа: Участник
Сообщений: 446
Регистрация: 14.8.2002
Где: Молдова, Кишинев

Репутация: нет
Всего: 2

В autoexec.bat пропиши или сделай доступным каталог где находиться vfp7.exe

PM MAIL   Вверх
Cashey
Дата 28.9.2005, 01:20 (ссылка)
| (нет голосов)
Загрузка ... Загрузка …




Быстрая цитата

Цитата

Бессмертный
****

Профиль
Группа: Завсегдатай
Сообщений: 3441
Регистрация: 13.11.2002
Где: в столице

Репутация: 13
Всего: 60

Цитата(Dimchik @ 27.9.2005, 08:58)
Поскажите пожалуйста как победить эту проблемку, а то в директорию где exe-шник приходится переписывать все prg, scx, sct, frx, frt

так все и делают, чем плох вариант? Иначе надо прописывать в главном модуле все SET PATH. Это если открыт доступ к этому модулю, иначе надо рефоксировать экзешник

———————

библия учит любить ближнего, а камасутра обучает как именно

PM Jabber   Вверх
Dimchik
Дата 5.10.2005, 08:45 (ссылка)
| (нет голосов)
Загрузка ... Загрузка …




Быстрая цитата

Цитата

Новичок

Профиль
Группа: Участник
Сообщений: 16
Регистрация: 16.11.2004

Репутация: нет
Всего: нет

bas
попробовал но программа мигнула и сразу закрылась, даже никакой ошибки не выдала

Добавлено @ 08:53

Цитата(Cashey @ 28.9.2005, 01:20)
Иначе надо прописывать в главном модуле все SET PATH. Это если открыт доступ к этому модулю, иначе надо рефоксировать экзешник

а можно поподробнее, т.к. сама программа и базы находятся на серваке, а exe -шник лучше запускать с локальной машины и т.к. он один не запускается приходится запускать его на сервере, а то все файлы проекта копировать на локальные весьма затруднительно(их больше 600)

PM MAIL   Вверх
Cashey
Дата 18.10.2005, 19:39 (ссылка)
| (нет голосов)
Загрузка ... Загрузка …




Быстрая цитата

Цитата

Бессмертный
****

Профиль
Группа: Завсегдатай
Сообщений: 3441
Регистрация: 13.11.2002
Где: в столице

Репутация: 13
Всего: 60

пример:

Код

SET PATH TO \SERVERProgramma; \SERVERProgrammaForms; \SERVERProgrammaData; C:LocalProg
DO glavniy_modul

На локальной машине должны быть установлены библиотеки для runtime
но на самом деле это не правильно, базы должны лежать на серваке, а программа локально на каждом из использующих ее компов. А иначе только один сможет ею пользоватся. Это при таком примере. А если весь проект включен в .exe, то и запускать его можно только от туда

———————

библия учит любить ближнего, а камасутра обучает как именно

PM Jabber   Вверх



















Ответ в темуСоздание новой темы
Создание опроса
Правила форума «Foxpro/Clipper/Dbase»
MoLeX

Запрещается!

1. Публиковать ссылки для чисто рекламных целей.

2. Оффтопить, флеймить, говорить не культурно.

Пожалуйста, адекватно задавайте свой вопрос. Тема должна создаваться с названием характеризующем Вашу проблему.

Задавайте вопросы правильно — как спросите, так вам и ответят.

Разрешено!

Давать ссылки на статьи, обзоры, если это не нарушает первый пункт правил.

Задавая вопрос, давайте нужную информацию касающуюся Вашей проблемы. Этим вы ускорите полезные ответы.

P.S. Размещение рекламы будет строго наказываться!


Если Вам понравилась атмосфера форума, заходите к нам чаще! С уважением, MoLeX

 

0 Пользователей читают эту тему (0 Гостей и 0 Скрытых Пользователей)
0 Пользователей:
« Предыдущая тема | Foxpro/Clipper/Dbase | Следующая тема »

Понравилась статья? Поделить с друзьями:

Читайте также:

  • Fatal error espasynctcp h no such file or directory
  • Fatal error err09 unsupported function
  • Fatal error cvt1100
  • Fatal error could not query file size for bfs archive
  • Fatal error could not init steam

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии