Konuyu Oyla:
  • Derecelendirme: 0/5 - 0 oy
  • 1
  • 2
  • 3
  • 4
  • 5
Runtime error 236 hatası
#1
Henüz ideyi (10.3) komponentleri yeni kurdum, sadece Windows hizmet projelerini açtığımda bu hatayı alıyorum ve direk ide çöküp kapanıyor. başka türde projelerde veya windows hizmeti projesinde farklı unitlere dokunduğumda sıkıntı yok , TService ile üretilen bir unite tıklayınca filmler kopuyor Smile 

böyle bir hata yaşayıp çözebilen var mı ?  delphiyi kaldır kur demeyin ağlarım.

---------------------------
Runtime error 236 at 3752F3B5
---------------------------
WWW
Cevapla
#2
(27-07-2026, Saat: 09:49)yhackup Adlı Kullanıcıdan Alıntı: Henüz ideyi (10.3) komponentleri yeni kurdum, sadece Windows hizmet projelerini açtığımda bu hatayı alıyorum ve direk ide çöküp kapanıyor. başka türde projelerde veya windows hizmeti projesinde farklı unitlere dokunduğumda sıkıntı yok , TService ile üretilen bir unite tıklayınca filmler kopuyor Smile 

böyle bir hata yaşayıp çözebilen var mı ?  delphiyi kaldır kur demeyin ağlarım.

---------------------------
Runtime error 236 at 3752F3B5
---------------------------

Windows Servis projesi olduğu için IDE yi yönetici olarak çalıştırıp deneyebilirsiniz.
Cevapla
#3
Sanırım 10.3 değil, 13 sürümü için bu sorun değil mi?
Begin : = end / 2;
Cevapla
#4
try this:
1) openproject file using notepad++ or other... and try disable ( remove) any possible 3rd party component references... you can just comment it ... this can show messages when open it in Delphi... no problem... use this just find the "problem"
2) if ant component do it... you found the "point" you ser?

3) if dont, try uninstall any 3rd plugins... like gexpert, etc...

4) if dont, try recreate the Dpr file or dproj file .... just create a new project and add your unit into him. and test it. try clear temp files (used by ide) or old dcu files in your project

5) normally, the TSrrvice or similar do access in many others bpl in the ide, that way, many others compnents and class (internal) is called... same in development... like the "designer" to show form on editor etc...

6) normally, this is not necessaruly reinstall the rad. it's pontual problem

7) error 236 can be: bpl conflict ( with another bpl ), dll conflict or not found, "initialization" section try access unit with some reference not found etc... all this can to do the ide crash... you see?
MSWindows, AndroidRAD Studio 13 Florence ve kafamda bir fikir  Tongue  
WWW
Cevapla
#5
(28-07-2026, Saat: 09:25)RAD Coder Adlı Kullanıcıdan Alıntı: Sanırım 10.3 değil, 13 sürümü için bu sorun değil mi?

Yok abi 10.3

(27-07-2026, Saat: 21:41)frmman Adlı Kullanıcıdan Alıntı:
(27-07-2026, Saat: 09:49)yhackup Adlı Kullanıcıdan Alıntı: Henüz ideyi (10.3) komponentleri yeni kurdum, sadece Windows hizmet projelerini açtığımda bu hatayı alıyorum ve direk ide çöküp kapanıyor. başka türde projelerde veya windows hizmeti projesinde farklı unitlere dokunduğumda sıkıntı yok , TService ile üretilen bir unite tıklayınca filmler kopuyor Smile 

böyle bir hata yaşayıp çözebilen var mı ?  delphiyi kaldır kur demeyin ağlarım.

---------------------------
Runtime error 236 at 3752F3B5
---------------------------

Windows Servis projesi olduğu için IDE yi yönetici olarak çalıştırıp deneyebilirsiniz.

Sebep bu değil

(28-07-2026, Saat: 14:24)emailx45 Adlı Kullanıcıdan Alıntı: try this:
1) openproject file using notepad++ or other... and try disable ( remove) any possible 3rd party component references... you can just comment it ... this can show messages when open it in Delphi... no problem... use this just find the "problem"
2) if ant component do it... you found the "point" you ser?

3) if dont, try uninstall any 3rd plugins... like gexpert, etc...

4) if dont, try recreate the Dpr file or dproj file .... just create a new project and add your unit into him. and test it. try clear temp files (used by ide) or old dcu files in your project

5) normally, the TSrrvice or similar do access in many others bpl in the ide, that way, many others compnents and class (internal) is called... same in development... like the "designer" to show form on editor etc...

6) normally, this is not necessaruly reinstall the rad. it's pontual problem

7) error 236 can be: bpl conflict ( with another bpl ), dll conflict or not found, "initialization" section try access unit with some reference not found etc... all this can to do the ide crash... you see?

When I run the IDE in Safe Mode, the issue does not occur. This strongly suggests that one of the installed components is causing the problem, but identifying which one is very difficult.
WWW
Cevapla
#6
YZ: "Paket uyumsuzluğu. Birbirine bağımlı paketlerden biri güncellenip diğeri derlenmediğinde oluşur."
Cevapla
#7
Try this: ( HELP -> IDE Command Line Switches and Options ... ) 
try another directives on command line to create a profile for your environment!
  • YOU CAN run your IDE like another "user", that is, you can have many "profiles" in your REGISTRY key ... (HCU\....\Embarcadero\BDS\....)  <- Users keys in your registry!
  • that way, you can use a command line like this:  ...\bds.exe -r<<YOUR_NEW_PROFILE_NAME>>

Alıntı:-r = Alternate registry key. Allows you to specify an alternate base registry key so you can run two copies of the IDE using different configurations. This allows component developers to debug a component at design time by using the IDE as the hosting application, without the debugging IDE interfering by trying to load the component package being developed.


My shortcut for tests using default settings ( like a new installation )
ex.:  <<your bds.exe folder>>\bds.exe -rMyNewProfileForTest
  • now, with this new shortcut the "new key" will be created in your registry HCU\....\Embarcadero\BDS\..... <----
  • this new profile will use the "default values", that is, nothing more than the "RAD Defaults"...
  • that way, you can try create a new project with your units or just try open your current project (with problem) You SEE?
  • now, you can knows if exists really a IDE problem or is in your project!
NOTE: you can create how many profiles you desire!!! for each profile you create a "shortcut" like above!!! you see?

Each profile is independent and does not affect other profiles you have on your system!
For example:
  1. ForTESTDefault profile = no components installed other than the standard RAD components
  2. ForDevExpress profile – for testing only DevExpress components. In other words, you wouldn't install any other component suite
  3. ForDevExpressAndFastReport profile = you get the idea? you install only this 2 suites for tests
MSWindows, AndroidRAD Studio 13 Florence ve kafamda bir fikir  Tongue  
WWW
Cevapla


Konu ile Alakalı Benzer Konular
Konular Yazar Yorumlar Okunma Son Yorum
  matematiksel karşılaştırma hatası nevzatc 7 632 14-04-2026, Saat: 06:36
Son Yorum: emailx45
  Delphi ile SQL server bağlantı hatası yakalama Under 20 2.228 21-11-2025, Saat: 15:24
Son Yorum: mrmarman
  OpenSSL Hatası mcuyan 1 535 29-04-2025, Saat: 02:28
Son Yorum: mcuyan
Information Uygulama yönetici olarak mı çalışıyor? (runtime tespit etme) bakyuz 0 438 28-04-2025, Saat: 17:22
Son Yorum: bakyuz
  OAuth2 login is not setup properly error batuakin 9 2.227 04-04-2025, Saat: 15:06
Son Yorum: hi_selamlar



Konuyu Okuyanlar: 1 Ziyaretçi