<?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 : SQL ekleme</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : SQL ekleme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 11:24:11 +0000</pubDate>
  <lastBuildDate>Fri, 25 Jul 2025 16:26:31 +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=1111</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[SQL ekleme : var kelimeForm: TclForm; kartPanel:...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1111&amp;PID=2370#2370</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1111<br /><strong>Gönderim Zamanı:</strong> 25&nbsp;Temmuz&nbsp;2025 Saat 16:26<br /><br /><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; kartImageFront, kartImageBack: TclProImage;</div><div>&nbsp; txtInput: TclProEdit;</div><div>&nbsp; btnSorgula: TclProButton;</div><div>&nbsp; restAI: TclRest;</div><div>&nbsp; aktifKullaniciAdi, prompt, veri, cevap: String;</div><div><br></div><div>void BtnSorgulaClick;</div><div>{</div><div>&nbsp; if (txtInput.Text == '') {</div><div>&nbsp; &nbsp; ShowMessage('Lütfen bir kelime girin!');</div><div>&nbsp; } else {</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; prompt = txtInput.Text;</div><div><br></div><div>&nbsp; &nbsp; restAI.BaseUrl = '<a href="https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateC&#111;ntent?key=xxxxxxxxxxxxxx" target="_blank" rel="nofollow">https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent?key=xxxxxxxxxxxxxx</a>';</div><div>&nbsp; &nbsp; restAI.Method = rmPost;</div><div>&nbsp; &nbsp; restAI.ContentType = 'application/json';</div><div>&nbsp; &nbsp; restAI.Body =</div><div>&nbsp; &nbsp; &nbsp; '{' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; "contents": &#091;' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; {' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; "parts": &#091;' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp; {' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "text": "Girilen kelimeyi Türkçeye çevir. Sadece çeviriyi yaz: ' + prompt + '"' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp; }' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &#093;' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; }' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &#093;' +</div><div>&nbsp; &nbsp; &nbsp; '}';</div><div><br></div><div>&nbsp; &nbsp; restAI.ExecuteAsync;</div><div><br></div><div>&nbsp; &nbsp; txtInput.Text = '';</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void GetAIResponse;</div><div>{</div><div>&nbsp; veri = restAI.Response;</div><div>&nbsp; cevap = Clomosy.CLParseJson(veri, 'candidates.0.content.parts.0.text');</div><div>&nbsp; lblTurkish.Text = cevap;</div><div>&nbsp; frontFace.Visible = False;</div><div>&nbsp; backFace.Visible = True;</div><div><br></div><div>&nbsp; ShowMessage('Çeviri: ' + cevap);</div><div><br></div><div>&nbsp; if (aktifKullaniciAdi == '') {</div><div>&nbsp; &nbsp; aktifKullaniciAdi = 'Misafir'; // Varsayılan kullanıcı</div><div>&nbsp; &nbsp; ShowMessage('Kullanıcı adı bulunamadı, "Misafir" olarak kaydediliyor.');</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; try {</div><div>&nbsp; &nbsp; // Veritabanı bağlantısı</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'kelime_kartlari.db3', '');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; // Tablo oluştur</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Close;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; 'CREATE TABLE IF NOT EXISTS kartlar (' +</div><div>&nbsp; &nbsp; &nbsp; 'id INTEGER PRIMARY KEY AUTOINCREMENT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'kullanici_adi TEXT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'english TEXT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'turkish TEXT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'tarih DATETIME DEFAULT CURRENT_TIMESTAMP' +</div><div>&nbsp; &nbsp; &nbsp; ')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; // Kartı kaydet</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Close;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; 'INSERT INTO kartlar (kullanici_adi, english, turkish) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(aktifKullaniciAdi) + ',' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(lblEnglish.Caption) + ',' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(cevap) + ')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; ShowMessage('Kart başarıyla kaydedildi!');</div><div>&nbsp; }</div><div>&nbsp; except {</div><div>&nbsp; &nbsp; ShowMessage('Veritabanı hatası: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div>}</div><div>void FlipCard;</div><div>{</div><div>&nbsp; if (frontFace.Visible == True) {</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>void SetAktifKullanici(kullaniciAdi: String);</div><div>{</div><div>&nbsp; aktifKullaniciAdi = kullaniciAdi;</div><div>&nbsp; ShowMessage('Aktif kullanıcı: ' + aktifKullaniciAdi);</div><div>}</div><div><br></div><div>void VeritabaniBaslat;</div><div>{</div><div>&nbsp; try {</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'kelime_kartlari.db3', '');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; // Tablo oluştur</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Close;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; 'CREATE TABLE IF NOT EXISTS kartlar (' +</div><div>&nbsp; &nbsp; &nbsp; 'id INTEGER PRIMARY KEY AUTOINCREMENT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'kullanici_adi TEXT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'english TEXT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'turkish TEXT, ' +</div><div>&nbsp; &nbsp; &nbsp; 'tarih DATETIME DEFAULT CURRENT_TIMESTAMP' +</div><div>&nbsp; &nbsp; &nbsp; ')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; ShowMessage('Veritabanı başarıyla başlatıldı!');</div><div>&nbsp; }</div><div>&nbsp; except {</div><div>&nbsp; &nbsp; ShowMessage('Veritabanı başlatma hatası: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div>}</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; aktifKullaniciAdi = 'Misafir';</div><div><br></div><div>&nbsp; VeritabaniBaslat;</div><div><br></div><div>&nbsp; restAI = TclRest.Create;</div><div>&nbsp; restAI.OnCompleted = 'GetAIResponse';</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; kelimeForm.AddNewEvent(btnSorgula, tbeOnClick, 'BtnSorgulaClick');</div><div><br></div><div>&nbsp; kartPanel = kelimeForm.AddNewProPanel(kelimeForm, 'kartPanel');</div><div>&nbsp; kartPanel.Width = 300;</div><div>&nbsp; kartPanel.Height = 200;</div><div>&nbsp; kartPanel.Position.X = (kelimeForm.clWidth - kartPanel.Width) / 2;</div><div>&nbsp; kartPanel.Position.Y = (kelimeForm.clHeight - kartPanel.Height) / 2;</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>&nbsp; frontFace = kelimeForm.AddNewProPanel(kartPanel, 'frontFace');</div><div>&nbsp; frontFace.Align = alClient;</div><div>&nbsp; frontFace.Visible = True;</div><div><br></div><div>&nbsp; kartImageFront = kelimeForm.AddNewProImage(frontFace, 'kartImageFront');</div><div>&nbsp; kartImageFront.Align = alClient;</div><div>&nbsp; kartImageFront.ClProSettings.PictureSource = '<a href="https://i.imgur.com/wLCaAxp.png" target="_blank" rel="nofollow">https://i.imgur.com/wLCaAxp.png</a>';</div><div>&nbsp; kartImageFront.SetclProSettings(kartImageFront.ClProSettings);</div><div><br></div><div>&nbsp; lblEnglish = kelimeForm.AddNewProLabel(frontFace, 'lblEnglish', '');</div><div>&nbsp; lblEnglish.Align = alCenter;</div><div>&nbsp; lblEnglish.ClProSettings.FontSize = 26;</div><div>&nbsp; lblEnglish.ClProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; lblEnglish.SetclProSettings(lblEnglish.ClProSettings);</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><br></div><div>&nbsp; kartImageBack = kelimeForm.AddNewProImage(backFace, 'kartImageBack');</div><div>&nbsp; kartImageBack.Align = alClient;</div><div>&nbsp; kartImageBack.ClProSettings.PictureSource = '<a href="https://i.imgur.com/wLCaAxp.png" target="_blank" rel="nofollow">https://i.imgur.com/wLCaAxp.png</a>';</div><div>&nbsp; kartImageBack.SetclProSettings(kartImageBack.ClProSettings);</div><div><br></div><div>&nbsp; lblTurkish = kelimeForm.AddNewProLabel(backFace, 'lblTurkish', '');</div><div>&nbsp; lblTurkish.Align = alCenter;</div><div>&nbsp; lblTurkish.ClProSettings.FontSize = 26;</div><div>&nbsp; lblTurkish.ClProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; lblTurkish.SetclProSettings(lblTurkish.ClProSettings);</div><div><br></div><div>&nbsp; kelimeForm.AddNewEvent(kartPanel, tbeOnClick, 'FlipCard');</div><div><br></div><div>&nbsp; kelimeForm.Run;</div><div>}</div>]]>
   </description>
   <pubDate>Fri, 25 Jul 2025 16:26:31 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1111&amp;PID=2370#2370</guid>
  </item> 
  <item>
   <title><![CDATA[SQL ekleme : SQLlite ile veritaban&#305; eklemeye...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1111&amp;PID=2275#2275</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=320">dilarayaprak</a><br /><strong>Konu:</strong> 1111<br /><strong>Gönderim Zamanı:</strong> 21&nbsp;Temmuz&nbsp;2025 Saat 14:57<br /><br /><div><div>SQLlite ile veritabanı eklemeye çalısıyorum ancak aktif kullanıcı özelliğini eklediğimde çalışmamaya başladı</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; kartImageFront, kartImageBack: TclProImage;</div><div>&nbsp; txtInput: TclProEdit;</div><div>&nbsp; btnSorgula: TclProButton;</div><div>&nbsp; restAI: TclRest;</div><div>&nbsp; aktifKullaniciAdi, prompt, veri, cevap: String;</div><div><br></div><div>void BtnSorgulaClick;</div><div>{</div><div>&nbsp; if (txtInput.Text == '') {</div><div>&nbsp; &nbsp; ShowMessage('Lütfen bir kelime girin!');</div><div>&nbsp; } else {</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; prompt = txtInput.Text;</div><div><br></div><div>&nbsp; &nbsp; restAI.BaseUrl = '<a href="https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateC&#111;ntent?key=xxxxxxxxxxxxxx" target="_blank" rel="nofollow">https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent?key=xxxxxxxxxxxxxx</a>';</div><div>&nbsp; &nbsp; restAI.Method = rmPost;</div><div>&nbsp; &nbsp; restAI.ContentType = 'application/json';</div><div>&nbsp; &nbsp; restAI.Body =</div><div>&nbsp; &nbsp; &nbsp; '{' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; "contents": &#091;' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; {' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; "parts": &#091;' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp; {' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "text": "Girilen kelimeyi Türkçeye çevir. Sadece çeviriyi yaz: ' + prompt + '"' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &nbsp; }' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; &nbsp; &#093;' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &nbsp; }' +</div><div>&nbsp; &nbsp; &nbsp; '&nbsp; &#093;' +</div><div>&nbsp; &nbsp; &nbsp; '}';</div><div><br></div><div>&nbsp; &nbsp; restAI.ExecuteAsync;</div><div><br></div><div>&nbsp; &nbsp; txtInput.Text = '';</div><div>&nbsp; }</div><div>}</div><div><br></div><div>void GetAIResponse;</div><div>{</div><div>&nbsp; veri = restAI.Response;</div><div>&nbsp; cevap = Clomosy.CLParseJson(veri, 'candidates.0.content.parts.0.text');</div><div>&nbsp; lblTurkish.Text = cevap;</div><div>&nbsp; frontFace.Visible = False;</div><div>&nbsp; backFace.Visible = True;</div><div><br></div><div>&nbsp; ShowMessage('Çeviri: ' + cevap);</div><div><br></div><div>&nbsp; if (aktifKullaniciAdi == '') {</div><div>&nbsp; &nbsp; ShowMessage('HATA: Kullanıcı adı alınamadı. Önce giriş yapın.');</div><div>&nbsp; } else {</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Close;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; 'CREATE TABLE IF NOT EXISTS kartlar (id INTEGER PRIMARY KEY AUTOINCREMENT, kullanici_adi TEXT, english TEXT, turkish TEXT)';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Close;</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.SQL.Text =</div><div>&nbsp; &nbsp; &nbsp; 'INSERT INTO kartlar (kullanici_adi, english, turkish) VALUES (' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(aktifKullaniciAdi) + ',' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(lblEnglish.Caption) + ',' +</div><div>&nbsp; &nbsp; &nbsp; QuotedStr(cevap) + ')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; ShowMessage('kart kaydedildi.');</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div>void FlipCard;</div><div>{</div><div>&nbsp; if (frontFace.Visible == True) {</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; restAI = TclRest.Create;</div><div>&nbsp; restAI.OnCompleted = 'GetAIResponse';</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; kelimeForm.AddNewEvent(btnSorgula, tbeOnClick, 'BtnSorgulaClick');</div><div><br></div><div>&nbsp; kartPanel = kelimeForm.AddNewProPanel(kelimeForm, 'kartPanel');</div><div>&nbsp; kartPanel.Width = 300;</div><div>&nbsp; kartPanel.Height = 200;</div><div>&nbsp; kartPanel.Position.X = (kelimeForm.clWidth - kartPanel.Width) / 2;</div><div>&nbsp; kartPanel.Position.Y = (kelimeForm.clHeight - kartPanel.Height) / 2;</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>&nbsp; frontFace = kelimeForm.AddNewProPanel(kartPanel, 'frontFace');</div><div>&nbsp; frontFace.Align = alClient;</div><div>&nbsp; frontFace.Visible = True;</div><div><br></div><div>&nbsp; kartImageFront = kelimeForm.AddNewProImage(frontFace, 'kartImageFront');</div><div>&nbsp; kartImageFront.Align = alClient;</div><div>&nbsp; kartImageFront.ClProSettings.PictureSource = '<a href="https://i.imgur.com/wLCaAxp.png" target="_blank" rel="nofollow">https://i.imgur.com/wLCaAxp.png</a>';</div><div>&nbsp; kartImageFront.SetclProSettings(kartImageFront.ClProSettings);</div><div><br></div><div>&nbsp; lblEnglish = kelimeForm.AddNewProLabel(frontFace, 'lblEnglish', '');</div><div>&nbsp; lblEnglish.Align = alCenter;</div><div>&nbsp; lblEnglish.ClProSettings.FontSize = 26;</div><div>&nbsp; lblEnglish.ClProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; lblEnglish.SetclProSettings(lblEnglish.ClProSettings);</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><br></div><div>&nbsp; kartImageBack = kelimeForm.AddNewProImage(backFace, 'kartImageBack');</div><div>&nbsp; kartImageBack.Align = alClient;</div><div>&nbsp; kartImageBack.ClProSettings.PictureSource = '<a href="https://i.imgur.com/wLCaAxp.png" target="_blank" rel="nofollow">https://i.imgur.com/wLCaAxp.png</a>';</div><div>&nbsp; kartImageBack.SetclProSettings(kartImageBack.ClProSettings);</div><div><br></div><div>&nbsp; lblTurkish = kelimeForm.AddNewProLabel(backFace, 'lblTurkish', '');</div><div>&nbsp; lblTurkish.Align = alCenter;</div><div>&nbsp; lblTurkish.ClProSettings.FontSize = 26;</div><div>&nbsp; lblTurkish.ClProSettings.FontColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; lblTurkish.SetclProSettings(lblTurkish.ClProSettings);</div><div><br></div><div>&nbsp; kelimeForm.AddNewEvent(kartPanel, tbeOnClick, 'FlipCard');</div><div><br></div><div>&nbsp; kelimeForm.Run;</div><div>}</div></div>]]>
   </description>
   <pubDate>Mon, 21 Jul 2025 14:57:53 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1111&amp;PID=2275#2275</guid>
  </item> 
 </channel>
</rss>