<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : tclOpenAIengine hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : tclOpenAIengine hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 10:54:36 +0000</pubDate>
  <lastBuildDate>Fri, 18 Jul 2025 14:58:03 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=1106</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[tclOpenAIengine hatası : Merhaba dilara,TclOpenAIEngine...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1106&amp;PID=2265#2265</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=310">Sudesigirci</a><br /><strong>Konu:</strong> 1106<br /><strong>Gönderim Zamanı:</strong> 18&nbsp;Temmuz&nbsp;2025 Saat 14:58<br /><br />Merhaba dilara,<div>TclOpenAIEngine bileşeninin güncellenmesi gerekiyor bunun yerine TclRest bileşenini kullanarak projene yapay zeka entegre edebilirsin</div><div><br></div><div>Detaylıca incelemen için :</div><div><a href="https://www.docs.clomosy.com/index.php?title=TclRest" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=TclRest</a></div><div><br></div><div>İyi Çalışmalar Dilerim</div>]]>
   </description>
   <pubDate>Fri, 18 Jul 2025 14:58:03 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1106&amp;PID=2265#2265</guid>
  </item> 
  <item>
   <title><![CDATA[tclOpenAIengine hatası : ingilizce kelimeleri ai&amp;#039;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1106&amp;PID=2262#2262</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=320">dilarayaprak</a><br /><strong>Konu:</strong> 1106<br /><strong>Gönderim Zamanı:</strong> 18&nbsp;Temmuz&nbsp;2025 Saat 14:38<br /><br /><div>ingilizce kelimeleri ai' la türkçeye çeviren bir kod yazmaya çalısıyorum ancak&nbsp; yazdığım kelimeler çevirilmiyor, aynı şekilde ekrana yazılıyor. yardımcı olur musunuz&nbsp;</div><div><br></div><div><br></div><div>var</div><div>&nbsp; kelimeForm: TclForm;</div><div>&nbsp; kartPanel: TclProPanel;</div><div>&nbsp; frontFace, backFace: TclProPanel;</div><div>&nbsp; lblEnglish, lblTurkish: TclProLabel;</div><div>&nbsp; txtInput: TclProEdit;</div><div>&nbsp; btnSorgula: TclProButton;</div><div>&nbsp; MyOpenAIEngine: TclOpenAIEngine;</div><div><br></div><div>void BtnSorgulaClick;</div><div><br></div><div>{</div><div>if (txtInput.Text == '')</div><div>{</div><div>ShowMessage('Lütfen bir kelime girin!')</div><div>}&nbsp;</div><div>else&nbsp;</div><div>{</div><div>&nbsp; &nbsp;lblEnglish.Caption = txtInput.Text</div><div>&nbsp; &nbsp;lblTurkish.Caption = ''</div><div>&nbsp; &nbsp;backFace.Visible = False</div><div>&nbsp; &nbsp;frontFace.Visible = True</div><div><br></div><div>&nbsp; &nbsp;MyOpenAIEngine.SendAIMessage(</div><div>&nbsp; &nbsp; &nbsp; 'Translate the word "' + txtInput.Text + '" into Turkish. Only return the translation.'</div><div>&nbsp; &nbsp;)</div><div><br></div><div>&nbsp; &nbsp;txtInput.Text = ''</div><div>}</div><div><br></div><div>}</div><div><br></div><div>void GetAIResponse</div><div>{</div><div>&nbsp; lblTurkish.Caption = MyOpenAIEngine.NewMessageContent;</div><div>&nbsp; backFace.Visible = False;</div><div>&nbsp; frontFace.Visible = True;</div><div>}</div><div><br></div><div>void FlipCard</div><div>{</div><div>&nbsp; if ( frontFace.Visible == True)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; frontFace.Visible = False;</div><div>&nbsp; &nbsp; backFace.Visible = True;</div><div>&nbsp; } else {</div><div>&nbsp; &nbsp; frontFace.Visible = True;</div><div>&nbsp; &nbsp; backFace.Visible = False;</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div>&nbsp; kelimeForm = TclForm.Create(Self);</div><div>&nbsp; kelimeForm.clSetCaption('İngilizce &#8594; Türkçe Kart');</div><div>&nbsp; kelimeForm.SetFormBGImage('<a href="https://i.imgur.com/fPwWs0H.jpeg" target="_blank" rel="nofollow">https://i.imgur.com/fPwWs0H.jpeg</a>');</div><div><br></div><div>&nbsp; txtInput = kelimeForm.AddNewProEdit(kelimeForm, 'txtInput', '');</div><div>&nbsp; txtInput.Align = alTop;</div><div>&nbsp; txtInput.Margins.Top = 20;</div><div>&nbsp; txtInput.Height = 40;</div><div><br></div><div>&nbsp; btnSorgula = kelimeForm.AddNewProButton(kelimeForm, 'btnSorgula', 'ÇEVİR');</div><div>&nbsp; btnSorgula.Align = alTop;</div><div>&nbsp; btnSorgula.Height = 40;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; kartPanel = kelimeForm.AddNewProPanel(kelimeForm, 'kartPanel');</div><div>&nbsp; kartPanel.Align = alCenter;</div><div>&nbsp; kartPanel.Width = 300;</div><div>&nbsp; kartPanel.Height = 150;</div><div>&nbsp; kartPanel.ClProSettings.FontColor = clAlphaColor.clHexToColor('#8f0505');</div><div>&nbsp; kartPanel.ClProSettings.RoundWidth = 20;</div><div>&nbsp; kartPanel.ClProSettings.RoundHeight = 20;</div><div>&nbsp; kartPanel.SetclProSettings(kartPanel.ClProSettings);</div><div><br></div><div><br></div><div>&nbsp; frontFace = kelimeForm.AddNewProPanel(kartPanel, 'frontFace');</div><div>&nbsp; frontFace.Align = alClient;</div><div>&nbsp; frontFace.Visible = True;</div><div>&nbsp; frontFace.ClProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff')</div><div>&nbsp; frontFace.SetclProSettings(frontFace.ClProSettings)</div><div><br></div><div><br></div><div><br></div><div>&nbsp; lblEnglish = kelimeForm.AddNewProLabel(frontFace, 'lblEnglish', '');</div><div>&nbsp; lblEnglish.Align = alCenter;</div><div>&nbsp; lblEnglish.ClProSettings.FontSize = 20;</div><div><br></div><div><br></div><div>&nbsp; backFace = kelimeForm.AddNewProPanel(kartPanel, 'backFace');</div><div>&nbsp; backFace.Align = alClient;</div><div>&nbsp; backFace.Visible = False;</div><div>&nbsp; backFace.ClProSettings.FontColor = clAlphaColor.clHexToColor('#dddddd')</div><div>backFace.SetclProSettings(backFace.ClProSettings)</div><div><br></div><div><br></div><div>&nbsp; lblTurkish = kelimeForm.AddNewProLabel(backFace, 'lblTurkish', '');</div><div>&nbsp; lblTurkish.Align = alCenter;</div><div>&nbsp; lblTurkish.ClProSettings.FontSize = 20;</div><div><br></div><div>&nbsp; MyOpenAIEngine = TclOpenAIEngine.Create(Self);</div><div>&nbsp; MyOpenAIEngine.ParentForm = kelimeForm;</div><div>&nbsp; MyOpenAIEngine.SetToken('sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');</div><div>&nbsp; MyOpenAIEngine.OnNewMessageEvent = 'GetAIResponse';</div><div><br></div><div>&nbsp; kelimeForm.AddNewEvent(btnSorgula, tbeOnClick, 'BtnSorgulaClick');</div><div>&nbsp; kelimeForm.AddNewEvent(kartPanel, tbeOnClick, 'FlipCard');</div><div>&nbsp;&nbsp;</div><div>&nbsp; kelimeForm.Run;</div><div>}</div>]]>
   </description>
   <pubDate>Fri, 18 Jul 2025 14:38:24 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1106&amp;PID=2262#2262</guid>
  </item> 
 </channel>
</rss>