Меню

Dev c ошибка 216

1 / 1 / 0

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

Сообщений: 8

1

24.01.2018, 19:44. Показов 4934. Ответов 3


———————————
Failed to execute «C:Users╒╬╟▀╚═Desktop┴хч√ь*ээ√щ1.exe»:
Error 216: ▌Єр тхЁёш* «%1» эх ёютьхёЄшьр ё тхЁёшхщ Windows, ЁрсюЄр■∙хщ эр ¤Єюь ъ
юья№■ЄхЁх. ╧ЁютхЁ№Єх ётхфхэш* ю ёшёЄхьх, р чрЄхь юсЁрЄшЄхё№ ъ шчфрЄхы■ яЁюуЁрььэ
юую юсхёяхўхэш*.

Для продолжения нажмите любую клавишу . . .

Когда я компилирую, и всё верно, мне выдаёт такую ошибку в консоли. Гуглил, не помогло

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



0



139 / 67 / 46

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

Сообщений: 308

24.01.2018, 20:03

2

Loshahg, Предоставте код программы.



0



Модератор

Эксперт С++

12623 / 10122 / 6096

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

Сообщений: 27,154

24.01.2018, 20:45

3

Лучший ответ Сообщение было отмечено Loshahg как решение

Решение

Если поменять кодировку, то там написано

Failed to execute «C:UsersХОЗЯИНDesktopБезымянный1.exe»:
Error 216: Эта версия «%1» не совместима с версией Windows, работающей на этом к
омпьютере. Проверьте сведения о системе, а затем обратитесь к издателю программн
ого обеспечения



1



1 / 1 / 0

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

Сообщений: 8

26.01.2018, 14:34

 [ТС]

4

Reavolt, Это не зависит от кода, такая ошибка при любом правильном коде выскакивает. У меня версия 5.11.



1



New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.

Already on GitHub?
Sign in
to your account


Closed

yanghaku opened this issue

Oct 20, 2020

· 8 comments


Closed

Runtime Error 216 at 00108F9A

#32

yanghaku opened this issue

Oct 20, 2020

· 8 comments

Comments

@yanghaku

when I try Dev-cpp v6.0, I changed the appearance «windows 10» to «windows classic» and closed the window, this error occurred .

@Tony-LYX

yes,and I remember the error information is «can’t write to the file codetheme.ini»

@FMXExpress

closecrash
Well the good news is I can duplicate the crash.

@pmcgee69

I suspect any change to Windows Classic will do this. I’ve tried 4.

@pmcgee69

There seems to be an issue around one or two unicode strings leaking … length depending on the style.

eg WinClassic to Material Pattens to Glossy … Material Pattens to Glossy to Win10 … Glossy to Win10 to WinClassic …

wc 2 mp 2 gl.pdf
mp 2 gl 2 w10.pdf
gl 2 w10 2 wc.pdf

Edit: this is/was a separate issue around the Environment Options window leaking on close.

@pmcgee69

(I don’t know if this is the place to put this …)
The issue is around the «Windows Classic» option not playing well with the other styles. The repository calls TStyleManager.TrySetStyle() in main, EnviroFrm, and LangFrm. In the last two, calling only if Style /= 0 (Win Classic)
In main, it calls regardless of Style.

MadExcept identifies a null pointer ref if WC loads as the starting style. And the 216 error occurs on exit when changing to WC.

One approach might be to put the same (Style > 0) check in main, and advise the program needs a restart to adopt it.
Or … does it need to be an available option at all? It seems unnecessary to keep it.

mad 1

@pmcgee69

Possible alternative : this demo ( Vcl Styles Utils System Menu (Demo App) ) comes from the vcl-styles-utils author, and is already in the dev-cpp repo at: C:Users…..DocumentsGitHubDev-Cpp-masterSourceVCLvcl-styles-utilsDemos

It includes ‘Windows’ in the list of styles … and works without issue in the demo app.

VCL styles demo

@FMXExpress

I left the «Windows» Style in for people who didn’t want a style. The «Windows» style doesn’t use the style engine at all which is why in the Style select dialog the «Windows» style doesn’t draw the preview styles.

I think maybe this issue is an RTL bug related to a TCheckBox somehow. That VCL Styles Utils demo doesn’t have a TCheckBox in it right? In your error it also lists TCheckListBox.

@pmcgee69

I kinda ripped the code apart trying to figure out the Checkbox thing … but in the end, maybe it has to do with trying to unregister a ‘Windows’ style hook(?), which I’m guessing is illegal (?)

I have made an experimental change to my fork. By adding the sys-menu styles option, and using FormClose to change the form to invisible, and from ‘Windows’ style to another before shutting down, it eliminates the 216 error.

The same FormClose cheat doesn’t work when using the existing EnviroFrm to change styles.
I haven’t changed any icons / images in my version (yet).

——> pmcgee69@bd195df

EnviroFrm uses CheckLst, but I believe I have compiled it with that form fully removed and still got the 216.
SynHighlighterManager says is has a design-time-only checklst … but I also removed all highlighting and still got 216.

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.

Already on GitHub?
Sign in
to your account


Closed

yanghaku opened this issue

Oct 20, 2020

· 8 comments


Closed

Runtime Error 216 at 00108F9A

#32

yanghaku opened this issue

Oct 20, 2020

· 8 comments

Comments

@yanghaku

when I try Dev-cpp v6.0, I changed the appearance «windows 10» to «windows classic» and closed the window, this error occurred .

@Tony-LYX

yes,and I remember the error information is «can’t write to the file codetheme.ini»

@FMXExpress

closecrash
Well the good news is I can duplicate the crash.

@pmcgee69

I suspect any change to Windows Classic will do this. I’ve tried 4.

@pmcgee69

There seems to be an issue around one or two unicode strings leaking … length depending on the style.

eg WinClassic to Material Pattens to Glossy … Material Pattens to Glossy to Win10 … Glossy to Win10 to WinClassic …

wc 2 mp 2 gl.pdf
mp 2 gl 2 w10.pdf
gl 2 w10 2 wc.pdf

Edit: this is/was a separate issue around the Environment Options window leaking on close.

@pmcgee69

(I don’t know if this is the place to put this …)
The issue is around the «Windows Classic» option not playing well with the other styles. The repository calls TStyleManager.TrySetStyle() in main, EnviroFrm, and LangFrm. In the last two, calling only if Style /= 0 (Win Classic)
In main, it calls regardless of Style.

MadExcept identifies a null pointer ref if WC loads as the starting style. And the 216 error occurs on exit when changing to WC.

One approach might be to put the same (Style > 0) check in main, and advise the program needs a restart to adopt it.
Or … does it need to be an available option at all? It seems unnecessary to keep it.

mad 1

@pmcgee69

Possible alternative : this demo ( Vcl Styles Utils System Menu (Demo App) ) comes from the vcl-styles-utils author, and is already in the dev-cpp repo at: C:Users…..DocumentsGitHubDev-Cpp-masterSourceVCLvcl-styles-utilsDemos

It includes ‘Windows’ in the list of styles … and works without issue in the demo app.

VCL styles demo

@FMXExpress

I left the «Windows» Style in for people who didn’t want a style. The «Windows» style doesn’t use the style engine at all which is why in the Style select dialog the «Windows» style doesn’t draw the preview styles.

I think maybe this issue is an RTL bug related to a TCheckBox somehow. That VCL Styles Utils demo doesn’t have a TCheckBox in it right? In your error it also lists TCheckListBox.

@pmcgee69

I kinda ripped the code apart trying to figure out the Checkbox thing … but in the end, maybe it has to do with trying to unregister a ‘Windows’ style hook(?), which I’m guessing is illegal (?)

I have made an experimental change to my fork. By adding the sys-menu styles option, and using FormClose to change the form to invisible, and from ‘Windows’ style to another before shutting down, it eliminates the 216 error.

The same FormClose cheat doesn’t work when using the existing EnviroFrm to change styles.
I haven’t changed any icons / images in my version (yet).

——> pmcgee69@bd195df

EnviroFrm uses CheckLst, but I believe I have compiled it with that form fully removed and still got the 216.
SynHighlighterManager says is has a design-time-only checklst … but I also removed all highlighting and still got 216.

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.

Already on GitHub?
Sign in
to your account


Closed

yanghaku opened this issue

Oct 20, 2020

· 8 comments


Closed

Runtime Error 216 at 00108F9A

#32

yanghaku opened this issue

Oct 20, 2020

· 8 comments

Comments

@yanghaku

when I try Dev-cpp v6.0, I changed the appearance «windows 10» to «windows classic» and closed the window, this error occurred .

@Tony-LYX

yes,and I remember the error information is «can’t write to the file codetheme.ini»

@FMXExpress

closecrash
Well the good news is I can duplicate the crash.

@pmcgee69

I suspect any change to Windows Classic will do this. I’ve tried 4.

@pmcgee69

There seems to be an issue around one or two unicode strings leaking … length depending on the style.

eg WinClassic to Material Pattens to Glossy … Material Pattens to Glossy to Win10 … Glossy to Win10 to WinClassic …

wc 2 mp 2 gl.pdf
mp 2 gl 2 w10.pdf
gl 2 w10 2 wc.pdf

Edit: this is/was a separate issue around the Environment Options window leaking on close.

@pmcgee69

(I don’t know if this is the place to put this …)
The issue is around the «Windows Classic» option not playing well with the other styles. The repository calls TStyleManager.TrySetStyle() in main, EnviroFrm, and LangFrm. In the last two, calling only if Style /= 0 (Win Classic)
In main, it calls regardless of Style.

MadExcept identifies a null pointer ref if WC loads as the starting style. And the 216 error occurs on exit when changing to WC.

One approach might be to put the same (Style > 0) check in main, and advise the program needs a restart to adopt it.
Or … does it need to be an available option at all? It seems unnecessary to keep it.

mad 1

@pmcgee69

Possible alternative : this demo ( Vcl Styles Utils System Menu (Demo App) ) comes from the vcl-styles-utils author, and is already in the dev-cpp repo at: C:Users…..DocumentsGitHubDev-Cpp-masterSourceVCLvcl-styles-utilsDemos

It includes ‘Windows’ in the list of styles … and works without issue in the demo app.

VCL styles demo

@FMXExpress

I left the «Windows» Style in for people who didn’t want a style. The «Windows» style doesn’t use the style engine at all which is why in the Style select dialog the «Windows» style doesn’t draw the preview styles.

I think maybe this issue is an RTL bug related to a TCheckBox somehow. That VCL Styles Utils demo doesn’t have a TCheckBox in it right? In your error it also lists TCheckListBox.

@pmcgee69

I kinda ripped the code apart trying to figure out the Checkbox thing … but in the end, maybe it has to do with trying to unregister a ‘Windows’ style hook(?), which I’m guessing is illegal (?)

I have made an experimental change to my fork. By adding the sys-menu styles option, and using FormClose to change the form to invisible, and from ‘Windows’ style to another before shutting down, it eliminates the 216 error.

The same FormClose cheat doesn’t work when using the existing EnviroFrm to change styles.
I haven’t changed any icons / images in my version (yet).

——> pmcgee69@bd195df

EnviroFrm uses CheckLst, but I believe I have compiled it with that form fully removed and still got the 216.
SynHighlighterManager says is has a design-time-only checklst … but I also removed all highlighting and still got 216.

Compatibility : Windows 7, 8, Vista, XP
Download Size : 6MB
Requirements : 300 MHz Processor, 256 MB Ram, 22 MB HDD

Limitations: This download is a free evaluation version. To unlock all features and tools, a purchase is required.

Dev C Error 216 Error Codes are caused in one way or another by misconfigured system files in your windows operating system.

If you have Dev C Error 216 errors then we strongly recommend that you Download (Dev C Error 216) Repair Tool .

This article contains information that shows you how to fix Dev C Error 216 both (manually) and (automatically) , In addition, this article will help you troubleshoot some common error messages related to Dev C Error 216 error code that you may receive.

Note: This article was updated on 2023-01-06 and previously published under WIKI_Q210794

Contents

What is Dev C Error 216 error?

The Dev C Error 216 error is the Hexadecimal format of the error caused. This is common error code format used by windows and other windows compatible software and driver vendors.

This code is used by the vendor to identify the error caused. This Dev C Error 216 error code has a numeric error number and a technical description. In some cases the error may have more parameters in Dev C Error 216 format .This additional hexadecimal code are the address of the memory locations where the instruction(s) was loaded at the time of the error.

What causes Dev C Error 216 error?

The Dev C Error 216 error may be caused by windows system files damage. The corrupted system files entries can be a real threat to the well being of your computer.

There can be many events which may have resulted in the system files errors. An incomplete installation, an incomplete uninstall, improper deletion of applications or hardware. It can also be caused if your computer is recovered from a virus or adware/spyware attack or by an improper shutdown of the computer. All the above actives may result in the deletion or corruption of the entries in the windows system files. This corrupted system file will lead to the missing and wrongly linked information and files needed for the proper working of the application.

How to easily fix Dev C Error 216 error?

There are two (2) ways to fix Dev C Error 216 Error:

Advanced Computer User Solution (manual update):

1) Start your computer and log on as an administrator.

2) Click the Start button then select All Programs, Accessories, System Tools, and then click System Restore.

3) In the new window, select «Restore my computer to an earlier time» option and then click Next.

4) Select the most recent system restore point from the «On this list, click a restore point» list, and then click Next.

5) Click Next on the confirmation window.

6) Restarts the computer when the restoration is finished.

Novice Computer User Solution (completely automated):

2) Install program and click Scan button.

3) Click the Fix Errors button when scan is completed.

4) Restart your computer.

How does it work?

This tool will scan and diagnose, then repairs, your PC with patent pending technology that fix your windows operating system registry structure.
basic features: (repairs system freezing and rebooting issues , start-up customization , browser helper object management , program removal management , live updates , windows structure repair.)

Источник

Error 216:This version of %1 is not compatible with the version of Windows you’re running. #83

Comments

GumpChaos commented Nov 16, 2020

From https://github.com/Embarcadero/Dev-Cpp/releases, and download Embarcadero_Dev-Cpp_6.2_TDM-GCC_9.2_Setup.zip.
Then I installed it successfully on my Windows-10 Education, 32-bit Operating system, x64-based processor.
Then I test it with a very simple Cpp code to calculate the area of a rectangle.
the compilation is also successful. However ,when I press F10 to run it, the systems says:
«failed to execute C:***6.rectangle.exe»:
Error 216:This version of %1 is not compatible with the version of Windows you’re running. Check your computer’s system information and then contact the software publisher.

Do you have any idea about this issue?

Thank you very much!

The text was updated successfully, but these errors were encountered:

FMXExpress commented Nov 16, 2020

Post the c++ code or project you used to generate the error?

FMXExpress commented Nov 16, 2020

Re-reading it. It sounds like you compiled a 64bit EXE and tried to run it on 32bit Windows. Change to the 32bit compile.

GumpChaos commented Nov 17, 2020

Here is the code I used:

#include
using namespace std;

It is very simple.
I will follow your suggestion to set it to 32-bit compilation. Could you please tell me how to set the 32-bit compilation? This is my first time to use DevC++.
Thank you very much!

FMXExpress commented Nov 17, 2020

There is a drop down box at the top that says TDM-GCC 9.2.0 64-Bit Release. Change it to TDM-GCC 9.2.0 32-Bit Release.

bushrakhalid802 commented Sep 8, 2021

There is a drop down box at the top that says TDM-GCC 9.2.0 64-Bit Release. Change it to TDM-GCC 9.2.0 32-Bit Release.

this didn’t work for me.is there any other way?

Footer

© 2023 GitHub, Inc.

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

Runtime Error 216 at 00108F9A #32

Comments

yanghaku commented Oct 20, 2020

when I try Dev-cpp v6.0, I changed the appearance «windows 10» to «windows classic» and closed the window, this error occurred .

The text was updated successfully, but these errors were encountered:

Tony-LYX commented Oct 21, 2020

yes,and I remember the error information is «can’t write to the file codetheme.ini»

FMXExpress commented Oct 24, 2020


Well the good news is I can duplicate the crash.

pmcgee69 commented Dec 3, 2020

I suspect any change to Windows Classic will do this. I’ve tried 4.

pmcgee69 commented Dec 3, 2020 •

There seems to be an issue around one or two unicode strings leaking . length depending on the style.

eg WinClassic to Material Pattens to Glossy . Material Pattens to Glossy to Win10 . Glossy to Win10 to WinClassic .

Edit: this is/was a separate issue around the Environment Options window leaking on close.

pmcgee69 commented Dec 5, 2020 •

(I don’t know if this is the place to put this . )
The issue is around the «Windows Classic» option not playing well with the other styles. The repository calls TStyleManager.TrySetStyle() in main, EnviroFrm, and LangFrm. In the last two, calling only if Style /= 0 (Win Classic)
In main, it calls regardless of Style.

MadExcept identifies a null pointer ref if WC loads as the starting style. And the 216 error occurs on exit when changing to WC.

One approach might be to put the same (Style > 0) check in main, and advise the program needs a restart to adopt it.
Or . does it need to be an available option at all? It seems unnecessary to keep it.

pmcgee69 commented Dec 5, 2020 •

Possible alternative : this demo ( Vcl Styles Utils System Menu (Demo App) ) comes from the vcl-styles-utils author, and is already in the dev-cpp repo at: C:Users. DocumentsGitHubDev-Cpp-masterSourceVCLvcl-styles-utilsDemos

It includes ‘Windows’ in the list of styles . and works without issue in the demo app.

FMXExpress commented Dec 5, 2020

I left the «Windows» Style in for people who didn’t want a style. The «Windows» style doesn’t use the style engine at all which is why in the Style select dialog the «Windows» style doesn’t draw the preview styles.

I think maybe this issue is an RTL bug related to a TCheckBox somehow. That VCL Styles Utils demo doesn’t have a TCheckBox in it right? In your error it also lists TCheckListBox.

pmcgee69 commented Dec 8, 2020 •

I kinda ripped the code apart trying to figure out the Checkbox thing . but in the end, maybe it has to do with trying to unregister a ‘Windows’ style hook(?), which I’m guessing is illegal (?)

I have made an experimental change to my fork. By adding the sys-menu styles option, and using FormClose to change the form to invisible, and from ‘Windows’ style to another before shutting down, it eliminates the 216 error.

The same FormClose cheat doesn’t work when using the existing EnviroFrm to change styles.
I haven’t changed any icons / images in my version (yet).

EnviroFrm uses CheckLst, but I believe I have compiled it with that form fully removed and still got the 216.
SynHighlighterManager says is has a design-time-only checklst . but I also removed all highlighting and still got 216.

Источник

Runtime Error 216 at 00108F9A #32

Comments

yanghaku commented Oct 20, 2020

when I try Dev-cpp v6.0, I changed the appearance «windows 10» to «windows classic» and closed the window, this error occurred .

The text was updated successfully, but these errors were encountered:

Tony-LYX commented Oct 21, 2020

yes,and I remember the error information is «can’t write to the file codetheme.ini»

FMXExpress commented Oct 24, 2020


Well the good news is I can duplicate the crash.

pmcgee69 commented Dec 3, 2020

I suspect any change to Windows Classic will do this. I’ve tried 4.

pmcgee69 commented Dec 3, 2020 •

There seems to be an issue around one or two unicode strings leaking . length depending on the style.

eg WinClassic to Material Pattens to Glossy . Material Pattens to Glossy to Win10 . Glossy to Win10 to WinClassic .

Edit: this is/was a separate issue around the Environment Options window leaking on close.

pmcgee69 commented Dec 5, 2020 •

(I don’t know if this is the place to put this . )
The issue is around the «Windows Classic» option not playing well with the other styles. The repository calls TStyleManager.TrySetStyle() in main, EnviroFrm, and LangFrm. In the last two, calling only if Style /= 0 (Win Classic)
In main, it calls regardless of Style.

MadExcept identifies a null pointer ref if WC loads as the starting style. And the 216 error occurs on exit when changing to WC.

One approach might be to put the same (Style > 0) check in main, and advise the program needs a restart to adopt it.
Or . does it need to be an available option at all? It seems unnecessary to keep it.

pmcgee69 commented Dec 5, 2020 •

Possible alternative : this demo ( Vcl Styles Utils System Menu (Demo App) ) comes from the vcl-styles-utils author, and is already in the dev-cpp repo at: C:Users. DocumentsGitHubDev-Cpp-masterSourceVCLvcl-styles-utilsDemos

It includes ‘Windows’ in the list of styles . and works without issue in the demo app.

FMXExpress commented Dec 5, 2020

I left the «Windows» Style in for people who didn’t want a style. The «Windows» style doesn’t use the style engine at all which is why in the Style select dialog the «Windows» style doesn’t draw the preview styles.

I think maybe this issue is an RTL bug related to a TCheckBox somehow. That VCL Styles Utils demo doesn’t have a TCheckBox in it right? In your error it also lists TCheckListBox.

pmcgee69 commented Dec 8, 2020 •

I kinda ripped the code apart trying to figure out the Checkbox thing . but in the end, maybe it has to do with trying to unregister a ‘Windows’ style hook(?), which I’m guessing is illegal (?)

I have made an experimental change to my fork. By adding the sys-menu styles option, and using FormClose to change the form to invisible, and from ‘Windows’ style to another before shutting down, it eliminates the 216 error.

The same FormClose cheat doesn’t work when using the existing EnviroFrm to change styles.
I haven’t changed any icons / images in my version (yet).

EnviroFrm uses CheckLst, but I believe I have compiled it with that form fully removed and still got the 216.
SynHighlighterManager says is has a design-time-only checklst . but I also removed all highlighting and still got 216.

Источник

Runtime Error 216 at 00108F9A about dev-cpp HOT 8 CLOSED

Comments (8)

yes,and I remember the error information is «can’t write to the file codetheme.ini»

FMXExpress commented on January 12, 2023


Well the good news is I can duplicate the crash.

pmcgee69 commented on January 12, 2023

I suspect any change to Windows Classic will do this. I’ve tried 4.

pmcgee69 commented on January 12, 2023

There seems to be an issue around one or two unicode strings leaking . length depending on the style.

eg WinClassic to Material Pattens to Glossy . Material Pattens to Glossy to Win10 . Glossy to Win10 to WinClassic .

Edit: this is/was a separate issue around the Environment Options window leaking on close.

pmcgee69 commented on January 12, 2023

(I don’t know if this is the place to put this . )
The issue is around the «Windows Classic» option not playing well with the other styles. The repository calls TStyleManager.TrySetStyle() in main, EnviroFrm, and LangFrm. In the last two, calling only if Style /= 0 (Win Classic)
In main, it calls regardless of Style.

MadExcept identifies a null pointer ref if WC loads as the starting style. And the 216 error occurs on exit when changing to WC.

One approach might be to put the same (Style > 0) check in main, and advise the program needs a restart to adopt it.
Or . does it need to be an available option at all? It seems unnecessary to keep it.

pmcgee69 commented on January 12, 2023

Possible alternative : this demo ( Vcl Styles Utils System Menu (Demo App) ) comes from the vcl-styles-utils author, and is already in the dev-cpp repo at: C:Users. DocumentsGitHubDev-Cpp-masterSourceVCLvcl-styles-utilsDemos

It includes ‘Windows’ in the list of styles . and works without issue in the demo app.

FMXExpress commented on January 12, 2023

I left the «Windows» Style in for people who didn’t want a style. The «Windows» style doesn’t use the style engine at all which is why in the Style select dialog the «Windows» style doesn’t draw the preview styles.

I think maybe this issue is an RTL bug related to a TCheckBox somehow. That VCL Styles Utils demo doesn’t have a TCheckBox in it right? In your error it also lists TCheckListBox.

pmcgee69 commented on January 12, 2023

I kinda ripped the code apart trying to figure out the Checkbox thing . but in the end, maybe it has to do with trying to unregister a ‘Windows’ style hook(?), which I’m guessing is illegal (?)

I have made an experimental change to my fork. By adding the sys-menu styles option, and using FormClose to change the form to invisible, and from ‘Windows’ style to another before shutting down, it eliminates the 216 error.

The same FormClose cheat doesn’t work when using the existing EnviroFrm to change styles.
I haven’t changed any icons / images in my version (yet).

EnviroFrm uses CheckLst, but I believe I have compiled it with that form fully removed and still got the 216.
SynHighlighterManager says is has a design-time-only checklst . but I also removed all highlighting and still got 216.

Related Issues (20)

  • Olá pessoal, alguém consegue arrumar esse código pra mim, pois sempre que lanço as nota e o nome dos alunos eu precisava que ele mostrasse a média e se o aluno reprovou ou não, só que não consigo mostrar a média e também ele não carrega junto a nota de cálculo ficando zerado e dizendo que o aluno foi reprovado. Se alguém souber e poder colaborar, agradeço! HOT 1
  • compiler issue
  • Getting an error message :Out of memory HOT 3
  • Stringlist issue on multiple undos
  • Error thrown while using Package Manager
  • Statusbar not showing Compile log and other Information. HOT 1
  • .h file error HOT 1
  • Text gets wierd when I undo.
  • About the problem that embacardero cannot display Chinese normally HOT 9
  • Float Divison Error
  • Editor Working but GCC version not compatible with Widows 7 32 bit.
  • auto deleting while using
  • more font
  • output file HOT 1
  • out of memory HOT 1
  • there isn’t process data when debugging
  • does not read ASCII art. please fix if you can. HOT 2
  • DEVC++ cannot open one of my files HOT 6
  • Variables in debugger may mutate unexpectedly
  • Write a Python program to calculate 5 dogs ages in dog’s years using while loop. HOT 1

Recommend Projects

React

A declarative, efficient, and flexible JavaScript library for building user interfaces.

Vue.js

🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

Typescript

TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

TensorFlow

An Open Source Machine Learning Framework for Everyone

Django

The Web framework for perfectionists with deadlines.

Laravel

A PHP framework for web artisans

Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

javascript

JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

Some thing interesting about web. New door for the world.

server

A server is a program made to process requests and deliver data to clients.

Machine learning

Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

Visualization

Some thing interesting about visualization, use data art

Some thing interesting about game, make everyone happy.

Recommend Org

Facebook

We are working to build community through open source technology. NB: members must have two-factor auth.

Microsoft

Open source projects and samples from Microsoft.

Источник

Adblock
detector

Recommend Projects

  • React photo

    React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo

    Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo

    Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo

    TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo

    Django

    The Web framework for perfectionists with deadlines.

  • Laravel photo

    Laravel

    A PHP framework for web artisans

  • D3 photo

    D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Visualization

    Some thing interesting about visualization, use data art

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo

    Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo

    Microsoft

    Open source projects and samples from Microsoft.

  • Google photo

    Google

    Google ❤️ Open Source for everyone.

  • Alibaba photo

    Alibaba

    Alibaba Open Source for everyone

  • D3 photo

    D3

    Data-Driven Documents codes.

  • Tencent photo

    Tencent

    China tencent open source team.

Версия этого файла несовместима с используемой версией Windows (32 или 64)

Некоторые пользователи сталкиваются с ошибкой – Версия этого файла несовместима с используемой версией Windows (32 или 64) при запуске программ и игр. Все что им остается сделать после такого сообщения – это закрыть окно и установщик программы. В статье мы расскажем подробнее об этой ошибке и о том, как ее исправить или избежать.

Ошибка совместимости версий Виндовс

Причины, по которым появляется ошибка

Обычно, причина заключается в несоответствии разрядности операционной системы Windows и разрядности запускаемого приложения. Скорее всего у вас установлена ОС с 32-битной архитектурой обмена информации, а программа, которую вы пытаетесь установить разработана для 64-битной системы. В связи с этим вы получаете ошибку «Версия этого файла несовместима с используемой версией Windows».

Важно помнить! Особенностью 32-битной системы есть тот факт, что она может запускать программы только с такой же разрядностью. В свою очередь 64-разрядная система может работать с файлами, которые созданы как для 32, так и для 64-битной системы Виндовс. Это относится ко всем операционным системам, начиная с 7 версии Windows.

Чтобы проверить какая архитектура ОС у вас на компьютере, нужно:

  • Открыть «Панель управления».
  • Зайти в «Система и безопасность».
  • Далее открыть «Система». И на этой страницы можно увидеть разрядность вашей Виндовс на против строки «Тип системы».

В этом случае ошибку несовместимости 32 и 64 битной Виндовс можно решить несколькими вариантами.

  1. Скачать ту же программу или игру (iso или mdf) для операционной системы с 32-битной системой и установить. Нужно отметить, что разработчики игр стараются постепенно переходить на лучшую 64-битную архитектуру обмена файлами, потому что она позволяет работать с максимальным объемом оперативной памяти – 32 Гб. В то время как 32-битная Виндовс работает лишь с 4 Гб ОП. Если компьютер имеет более 4 Гб ОП, они будут игнорироваться. Часто можно встретить случай, когда вместо 32 бит программа имеет х86 архитектуру. Это тоже самое значение, оно имеет некую историю, связанную с микропроцессорами компании Intel.
  2. Перейти с 32-битной операционной системы на 64. Для этого вам понадобится новый дистрибутив с соответствующей архитектурой. Вы можете установить 2 системой ОC 64-битную Windows и запускать с нее игры и приложения которые этого требую. Такой вариант позволит вам сохранить старую систему, в которой вы наверняка имеете множество важных файлов, таких как фото, видео, фильмы и прочее.
  3. Можно устранить причину ошибки обновление Windows до 10 (последней) версии.

Перейти на Виндовс с 64-битной архитектурой

Если вы не знаете, как это сделать, то сейчас будет описано 2 возможных варианта. В каждом необходимо приобрести образ диска с Windows 64 bit. Можно порекомендовать исключительно «чистые сборки», без всяких дополнительных программ, типа «крякнутых» фотошопов и т.д. Найдите её в Интернете и загрузите.

  1. Вам не надо будет даже заходить в BIOS, как это необходимо при обычном варианте. Скачиваете образ диска с дистрибутивом, затем скачиваете и устанавливаете Daemon Tools Lite. Открываете через эту программу образ и устанавливаете.
  2. Обычная установка с форматированием диска и созданием новых разделов. Этот вариант является самым надежным, но при его использовании будут удалены с диска все ваши файлы, программы и драйвера устройств. Поэтому нужно будет перед установкой перенести все необходимые файлы на другой диск или флешку. Ошибка может возникнуть при установке Windows 64 на «старый» компьютер, железо которого попросту не поддерживают эту архитектуру. В этом случае результатом установки будет сообщение — версия этого файла несовместима с используемой версией Windows. Выход из этой ситуации только один – покупка нового, более современного компьютера с поддержкой 64-битной архитектуры операционной системы.

Другие причины ошибки «Версия этого файла несовместима с используемой версией Windows»

Помимо основных причин появление этой ошибки, она также возможна уже в установленной 64-разрядной ОС. Чаще всего ошибка возникает в результате запуска современных игр. В этом случае:

Контроль учетных записей

  • Запустите программу или игру, использую учетную запись администратора.
  • Попробуйте «поиграть» с разными вариантами совместимости версий. Для этого необходимо нажать правой кнопкой по лаунчеру игры или кликнуть правой кнопкой. В выпавшем меню выбрать «Свойства» и во вкладке «Совместимости» поставить галочку «Запустить приложение в режиме совместимости с:» и выбрать ОС из списка.
  • Если предыдущий вариант не помог, запустите «Исправление проблем с совместимостью».
  • Иногда ОС не имеет в наличие архиватора. В этом случае при распаковке архивов установочного файла система будет выдавать эту ошибку. Для того чтобы системе удалось закончить установку и распаковать установочные файлы нужно скачать один из архиваторов. Найти их можно в интернете.

Источник

Исправить Эта версия этого файла не совместима с версией Windows, которую вы используете

Windows — одна из самых популярных операционных систем с более чем миллиардом пользователей. Весь этот успех обусловлен множеством функций, которые были интегрированы в операционную систему на протяжении многих лет. Последней и лучшей версией Windows является операционная система Windows 10, до которой Microsoft настоятельно рекомендует своим пользователям выполнить обновление.

Тем не менее, обновление сопровождается некоторыми проблемами, большинство пользователей неохотно обновлять, потому что были сообщения об ошибках «Эта версия этого файла не совместима с версией Windows, которую вы используете» с некоторыми приложениями и установщиками после обновления из старая версия Windows. В этой статье мы обсудим причину этой ошибки и предложим вам практическое решение, чтобы полностью устранить ее.

Сообщение об ошибке:

Версия этого файла не совместима с версией Windows, которую вы используете. Проверьте системную информацию вашего компьютера, чтобы узнать, нужна ли вам версия программы x86 (32-bit) или x64 (64-bit), а затем обратитесь к издателю программного обеспечения.

Как исправить эту ошибку:

Убедитесь, что вы используете 32-битную или 64-битную версию Windows.

Чтобы выяснить, работает ли ваш компьютер в 32-битной или 64-битной Windows, выполните следующие действия:

  • Откройте систему, нажав кнопку «Начать изображение», нажав «Панель управления», затем «Система».
  • В разделе Система вы можете увидеть тип системы. Здесь описывается, есть ли у вас биты 32 или биты 64.

Обновить:

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

  • Шаг 1: Скачать PC Repair & Optimizer Tool (Windows 10, 8, 7, XP, Vista — Microsoft Gold Certified).
  • Шаг 2: Нажмите «Начать сканирование”, Чтобы найти проблемы реестра Windows, которые могут вызывать проблемы с ПК.
  • Шаг 3: Нажмите «Починить все», Чтобы исправить все проблемы.

Вы также можете попробовать режим совместимости.

Если программа не совместима, вы можете попробовать установить и запустить программу в режиме совместимости.

Выполните следующие действия:

1) Щелкните правой кнопкой мыши программу

2) Нажмите на свойства

3) Нажмите на вкладку «Совместимость».

4) Выберите «Запустить эту программу в режиме совместимости» и выберите Windows Vista или другую операционную систему, которая успешно запустила программу.

Изменение настроек совместимости

Если программное обеспечение не совместим с версией Windows вы используете, эта ошибка произойдет. Поэтому на этом этапе мы изменим некоторые параметры совместимости. Для этого:

  1. Откройте каталог установки программы, которую вы хотите запустить.
  2. Щелкните правой кнопкой мыши по основному файлу «.exe» программы.
  3. Выберите «Свойства» и нажмите на вкладку «Совместимость».
  4. Нажмите «Запустить средство устранения неполадок совместимости для Windows 10 / 8» и помогите выбрать параметры для Windows 7.
  5. Нажмите «Проверить рекомендуемые параметры» и нажмите «Проверить».
  6. Если программа запущена, нажмите «Да, сохранить эти настройки» и, если она не выберет «Не проверять другие настройки».
  7. Следуйте инструкциям на экране и повторяйте, пока программа не заработает.

Запустить в режиме совместимости

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

Обратите внимание, что режим совместимости предлагает множество вариантов, начиная от Windows 95 до Windows 8. Также обратите внимание, что вы можете даже запустить свою программу в режиме совместимости для разных пакетов обновления в одной и той же операционной системе.

Обратите внимание, что в Windows 10 есть новая опция, которая называется «Устранение неполадок совместимости», которая анализирует программу для вас и автоматически пытается найти лучшие настройки.

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

Невозможно запустить 16-битные приложения непосредственно в 64-битной Windows. Вам нужен либо компьютер с 32-битной Windows (который всегда обратно совместим с 16-битным программным обеспечением), либо решение для сортировки или виртуализации для эмуляции 32-битной или 16-битной среды.

Если ваше 16-битное приложение на самом деле является приложением DOS, вы можете использовать эмулятор DOS, такой как DOSBox или vDos.

Если это 16-битное приложение Windows, лучше всего запускать его непосредственно на 32-битном ПК с Windows. Если это невозможно, вы можете использовать VirtualBox или другое решение для виртуализации, чтобы установить 32-битную версию Windows в качестве виртуального ПК. Если вы используете Windows 7 Professional, Enterprise или Ultimate, вы можете использовать режим Windows XP.

CCNA, веб-разработчик, ПК для устранения неполадок

Я компьютерный энтузиаст и практикующий ИТ-специалист. У меня за плечами многолетний опыт работы в области компьютерного программирования, устранения неисправностей и ремонта оборудования. Я специализируюсь на веб-разработке и дизайне баз данных. У меня также есть сертификат CCNA для проектирования сетей и устранения неполадок.

Источник

Исправляем «версия этого файла несовместима…» в Windows

Ошибка «версия этого файла несовместима с используемой версией Windows» может появиться во время запуска приложения или установщика. Зачастую это сообщение возникает после перехода пользователя со старой версии Windows до «десятки». В сегодняшней статье мы расскажем вам о причинах данной ошибки и как от нее можно избавиться в кратчайшие сроки.

Почему возникает «версия этого файла несовместима…»?

После краткого исследования этой проблемы мы пришли к выводу, что ошибка «версия этого файла несовместима…» возникает по причине отсутствия совместимости запускаемого приложения и версии Windows. Приложение либо слишком старо для системы, на которой оно запускается, либо, наоборот, система устарела и не может больше работать с приложением. Решается такая ситуация при помощи режима совместимости.

Решение: использование режима совместимости

Чтобы избавиться от ошибки «версия этого файла несовместима…», вам необходимо сделать следующее:

  1. пройдите в директорию, где располагается исполнительный файл запускаемого приложения;
  2. нажмите правой кнопкой мыши на файл с расширением .exe и выберите «Свойства»;
  3. перейдите во вкладку «Совместимость»;
  4. кликните на кнопку «Запустить средство устранения проблем с совместимостью»;
  5. дождитесь окончания работы средства и нажмите на кнопку «Использовать рекомендуемые параметры»;
  6. кликните на кнопку «Проверить программу…»;
  7. если приложение запустилось, нажмите пункт «Да, сохранить эти параметры для программы»;
  8. если же приложение не запустилось, то нажмите «Нет, использовать другие параметры»;
  9. следуйте инструкциям в окне до тех пор, пока приложение не запуститься без ошибки.

Заметка: если вы используете 32-битную операционную систему и пытаетесь запустить/установить 64-битное приложение, то у вас это не получится. Чтобы запускать/устанавливать 64-битные приложение, вы должны иметь 64-битную Windows.

Мы надеемся, что данная статья была полезна в решении ошибки «версия этого файла несовместима…».

Источник

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

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

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • Dev c ошибка 1073741674
  • Dev c makefile ошибка