<?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 : askandcall</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : askandcall]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 11:25:27 +0000</pubDate>
  <lastBuildDate>Thu, 31 Jul 2025 09:26:59 +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=1155</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[askandcall : Merhaba G&#246;ksu, 	Clomosy.AskAndCall(&amp;#039;Kullan&#305;c&#305;ya...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1155&amp;PID=2421#2421</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2025 Saat 09:26<br /><br />Merhaba Göksu,<div><br></div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><span style="white-space:pre">	</span>Clomosy.AskAndCall('Kullanıcıya görünecek soru','evet butonu ile çalışacak void','hayır butonu ile çalışacak void');</div><div></pre></td></tr></table><br><div><br></div><div>Senin kodunun düzenlenmiş hali:</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><div>&nbsp; void ProcYes;</div><div>&nbsp;{</div><div>&nbsp; try</div><div>&nbsp; &nbsp; puan = puan - 100;</div><div>&nbsp;</div><div>&nbsp; &nbsp; // Puan güncelleme</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO PuanKayitlari (puan) VALUES (' + IntToStr(puan) + ')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; // Satın alınan ürünü kaydetme - DÜZELTME BURADA</div><div>&nbsp; &nbsp; try&nbsp;</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO satinalinanlar (buttonName) VALUES (' + QuotedStr(clickedBtn.Hint) + ')';</div><div>&nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Satın alma başarıyla kaydedildi!');</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; except&nbsp;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Satın alma kaydedilemedi: ' + LastExceptionMessage);</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; PuanLabeliGuncelle;</div><div>&nbsp; &nbsp; ShowMessage('Tebrikler! Satın aldınız. Toplam puan: ' + IntToStr(puan));</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Veri eklenemedi: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>&nbsp;}</div><div>&nbsp;void ProcNo;</div><div>&nbsp;{</div><div>&nbsp; &nbsp; ShowMessage('Hayır');</div><div>&nbsp;}</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;void BtnOnClick</div><div>{</div><div>&nbsp; try&nbsp;</div><div>&nbsp; &nbsp; &nbsp;clickedBtn = TClProButton(myForm.ClSender);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'ClomosyDatabase.db3', '');</div><div>&nbsp;</div><div>&nbsp; &nbsp; puanQuery = Clomosy.DBSQLiteQueryWith('SELECT puan FROM PuanKayitlari ORDER BY id DESC LIMIT 1');</div><div>&nbsp; &nbsp; puanQuery.OpenOrExecute;</div><div>&nbsp;</div><div>&nbsp; &nbsp; if (puanQuery.Found) {</div><div>&nbsp; &nbsp; &nbsp; puan = puanQuery.FieldByName('puan').AsInteger;</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; puan = 0;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; if (puan &gt;= 100) {</div><div>&nbsp; &nbsp; &nbsp; Clomosy.AskAndCall('Satın almak istiyor musunuz?','ProcYes','ProcNo');</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Yetersiz puan! Satın alma için en az 100 puan gerekir.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Veri eklenemedi: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}&nbsp;</div></div><div></pre></td></tr></table><br><br>Bu şekilde kullanabilirsin. Aynı zamanda kodda try except parantezleri hatalı kullanılmış bunları da düzenledim. Aşağıdaki linkleri inceleyerek daha da iyi anlayabilirsin.</div><div><a href="https://www.docs.clomosy.com/AskAndCall" target="_blank" rel="nofollow">https://www.docs.clomosy.com/AskAndCall</a><br></div><div><a href="https://www.docs.clomosy.com/Error_Trapping" target="_blank" rel="nofollow">https://www.docs.clomosy.com/Error_Trapping</a><br></div></div><div><br></div><div>İyi çalışmalar dilerim.</div>]]>
   </description>
   <pubDate>Thu, 31 Jul 2025 09:26:59 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1155&amp;PID=2421#2421</guid>
  </item> 
  <item>
   <title><![CDATA[askandcall : KODUMUN TAMAMI////////////////...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1155&amp;PID=2420#2420</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=321">goksuselvi</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 31&nbsp;Temmuz&nbsp;2025 Saat 09:23<br /><br />KODUMUN TAMAMI///////////////////////////////////////////////////< id="BFI_" style="width: 1px; height: 1px; display: n&#111;ne;"><title> </title><div id="WidgeterPanels" translate="no" style="display: n&#111;ne; text-align: left; directi&#111;n: ltr; visibility: ;" ="LTRStyle"> <div id="Widgeter" style="display: n&#111;ne" ="Microsoft.Translator.er" ="Microsoft.Translator.er"> <div id="WidgetLogoPanel"> <span id="WidgetTranslateWithSpan"><span>TRANSLATE with </span></span> <span id="Widget" title="Exit Translati&#111;n" ="Microsoft.Translator.er&#079;n">x</span></div> <div id="MenuPanel"> <div ="DDStyle_outer">< name="Menu_svid" ="text" id="Menu_svid" style="display:n&#111;ne;" autocomplete="&#111;n" value="en" ="."> < name="Menu_textid" ="text" id="Menu_textid" style="display:n&#111;ne;" autocomplete="&#111;n" ="."> <span ="return false" ="0" ="DDStyle" id="__Menu_er" ="return Menu &amp;&amp; !Menu.Show'__Menu_popup', ;" ="return Menu &amp;&amp; !Menu.Show'__Menu_popup', ;">English</span> <div style=":relative;text-align:left;left:0;"><div style=":;width:;left:0px;"><div ="DDStyle" style="display:n&#111;ne;" id="__Menu_popup"> <table id="Menu" border="0"> <t><tr> <td><a href="#ar" target="_blank" rel="nofollow">Arabic</a></td><td><a href="#he" target="_blank" rel="nofollow">Hebrew</a></td><td><a href="#pl" target="_blank" rel="nofollow">Polish</a></td> </tr><tr> <td><a href="#bg" target="_blank" rel="nofollow">Bulgarian</a></td><td><a href="#hi" target="_blank" rel="nofollow">Hindi</a></td><td><a href="#pt" target="_blank" rel="nofollow">Portuguese</a></td> </tr><tr> <td><a href="#ca" target="_blank" rel="nofollow">Catalan</a></td><td><a href="#mww" target="_blank" rel="nofollow">Hmong Daw</a></td><td><a href="#ro" target="_blank" rel="nofollow">Romanian</a></td> </tr><tr> <td><a href="#zh-CHS" target="_blank" rel="nofollow">Chinese Simplified</a></td><td><a href="#hu" target="_blank" rel="nofollow">Hungarian</a></td><td><a href="#ru" target="_blank" rel="nofollow">Russian</a></td> </tr><tr> <td><a href="#zh-CHT" target="_blank" rel="nofollow">Chinese Traditional</a></td><td><a href="#id" target="_blank" rel="nofollow">Indonesian</a></td><td><a href="#sk" target="_blank" rel="nofollow">Slovak</a></td> </tr><tr> <td><a href="#cs" target="_blank" rel="nofollow">Czech</a></td><td><a href="#it" target="_blank" rel="nofollow">Italian</a></td><td><a href="#sl" target="_blank" rel="nofollow">Slovenian</a></td> </tr><tr> <td><a href="#da" target="_blank" rel="nofollow">Danish</a></td><td><a href="#ja" target="_blank" rel="nofollow">Japanese</a></td><td><a href="#es" target="_blank" rel="nofollow">Spanish</a></td> </tr><tr> <td><a href="#nl" target="_blank" rel="nofollow">Dutch</a></td><td><a href="#tlh" target="_blank" rel="nofollow">Klingon</a></td><td><a href="#sv" target="_blank" rel="nofollow">Swedish</a></td> </tr><tr> <td><a href="#en" target="_blank" rel="nofollow">English</a></td><td><a href="#ko" target="_blank" rel="nofollow">Korean</a></td><td><a href="#th" target="_blank" rel="nofollow">Thai</a></td> </tr><tr> <td><a href="#et" target="_blank" rel="nofollow">Estonian</a></td><td><a href="#lv" target="_blank" rel="nofollow">Latvian</a></td><td><a href="#tr" target="_blank" rel="nofollow">Turkish</a></td> </tr><tr> <td><a href="#fi" target="_blank" rel="nofollow">Finnish</a></td><td><a href="#lt" target="_blank" rel="nofollow">Lithuanian</a></td><td><a href="#uk" target="_blank" rel="nofollow">Ukrainian</a></td> </tr><tr> <td><a href="#fr" target="_blank" rel="nofollow">French</a></td><td><a href="#ms" target="_blank" rel="nofollow">Malay</a></td><td><a href="#ur" target="_blank" rel="nofollow">Urdu</a></td> </tr><tr> <td><a href="#de" target="_blank" rel="nofollow">German</a></td><td><a href="#mt" target="_blank" rel="nofollow">Maltese</a></td><td><a href="#vi" target="_blank" rel="nofollow">Vietnamese</a></td> </tr><tr> <td><a href="#el" target="_blank" rel="nofollow">Greek</a></td><td><a href="#no" target="_blank" rel="nofollow">Norwegian</a></td><td><a href="#cy" target="_blank" rel="nofollow">Welsh</a></td> </tr><tr> <td><a href="#ht" target="_blank" rel="nofollow">Haitian Creole</a></td><td><a href="#fa" target="_blank" rel="nofollow">Persian</a></td><td></td> </tr> </t></table>  </div></div></div></div>  var LanguageMenu; var LanguageMenu_keys=&#091;"ar","bg","ca","zh-CHS","zh-CHT","cs","da","nl","en","et","fi","fr","de","el","ht","he","hi","mww","hu","id","it","ja","tlh","ko","lv","lt","ms","mt","no","fa","pl","pt","ro","ru","sk","sl","es","sv","th","tr","uk","ur","vi","cy"&#093;; var LanguageMenu_values=&#091;"Arabic","Bulgarian","Catalan","Chinese Simplified","Chinese Traditional","Czech","Danish","Dutch","English","Estonian","Finnish","French","German","Greek","Haitian Creole","Hebrew","Hindi","Hmong Daw","Hungarian","Indonesian","Italian","Japanese","Klingon","Korean","Latvian","Lithuanian","Malay","Maltese","Norwegian","Persian","Polish","Portuguese","Romanian","Russian","Slovak","Slovenian","Spanish","Swedish","Thai","Turkish","Ukrainian","Urdu","Vietnamese","Welsh"&#093;; var LanguageMenu_callback=function(){ }; var LanguageMenu_popupid='__LanguageMenu_popup';  </div> <div id="CTFsPanel"> <span id="ExternalsPanel"><a href="https://go.microsoft.com/?linkid=9722454" target="_blank" rel="nofollow"> </a> <a href="java&#115;cript:Microsoft.Translator.FloaterShow&#069;mbed%28%29" target="_blank" rel="nofollow"> </a> <a href="java&#115;cript:Microsoft.Translator.FloaterShowSharePanel%28%29" target="_blank" rel="nofollow"> </a> </span> </div> <div id="erProgressBar"> <span id="ProgressFill"></span> </div> </div> <div id="WidgeterCollapsed" style="display: n&#111;ne" ="Microsoft.Translator.er"> <span>TRANSLATE with </span></div> <div id="erSharePanel" style="display: n&#111;ne"> <div id="ShareTextDiv"> <span id="ShareTextSpan"> COPY THE URL BELOW </span> </div> <div id="ShareTextDiv"> < name="ShareText" ="text" id="ShareText" read&#111;nly="read&#111;nly" ="."> <!--a id="Twitter" title="Share &#111;n Twitter"> </a> <a-- id="Facebook" title="Share &#111;n Facebook"> </a--> <a id="Email" title="Email  translati&#111;n"> </a> </div> <div id="ShareFooter"> <span id="ShareHelpSpan"><a id="ShareHelp"> </a></span> <span id="ShareBackSpan"><a href="java&#115;cript:Microsoft.Translator.Floater&#079;nShareBackClick%28%29" target="_blank" rel="nofollow"> Back</a></span> </div> < name="EmailSubject" ="" id="EmailSubject" value="Check out  page in 0 translated from 1"> < name="Email" ="" id="Email" value="Translated: 0%0d%0aOriginal: 1%0d%0a%0d%0aAutomatic translati&#111;n powered by Microsoft® Translator%0d%0ahttp://www.bing.com/translator?ref=MSTWidget"> < ="" id="ShareHelpText" value="  allows visitors to launch  page and automatically translate it to 0."> </div> <div id="er" style="display: n&#111;ne"> <div id="TextDiv"> <span id="TextSpan">EMBED THE SNIPPET BELOW IN YOUR SITE</span> <a id="Help" title="Copy  code and place it into your ."> </a> </div> <div id="TextDiv"> < name="SnippetText" ="text" id="SnippetText" read&#111;nly="read&#111;nly" value="<div id='MicrosoftTranslatorWidget' ='Dark' style='color:white;:#555555'></div>< ='text/'>setTimeout(function(){var s=document.createElement('script');s.type='text/javascript';s.charset='UTF-8';s.src=((location &amp;&amp; location.href &amp;&amp; location.href.indexOf('https') == 0)?'https://ssl.microsofttranslator.com':'http://www.microsofttranslator.com')+'/ajax/v3/WidgetV3.ashx?siteData=ueOIGRSKkd965FeEGM5JtQ**&amp;ctf=true&amp;ui=true&amp;settings=manual&amp;from=en';var p=document.getElementsByTagName('head')&#091;0&#093;||document.documentElement;p.insertBefore(s,p.firstChild); },0);" onclick="this.select()"> </div> <div id="NoticeDiv"><span id="NoticeSpan">Enable collaborative features and customize widget: <a href="http://www.bing.com/widget/translator" target="_blank" rel="nofollow">Bing Webmaster Portal</a></span></div> <div id="FooterDiv"><span id="BackSpan"><a href="java&#115;cript:Microsoft.Translator.Floater&#079;n&#069;mbedBackClick%28%29" target="_blank" rel="nofollow">Back</a></span></div> </div>  var intervalId = setInterval(function () { if (MtPopUpList) { LanguageMenu = new MtPopUpList(); var langMenu = document.getElementById(LanguageMenu_popupid); var origLangDiv = document.createElement("div"); origLangDiv.id = "OriginalLanguageDiv"; origLangDiv.innerHTML = "<span id='OriginalTextSpan'>ORIGINAL: </span><span id='OriginalSpan'></span>"; langMenu.appendChild(origLangDiv); LanguageMenu.Init('LanguageMenu', LanguageMenu_keys, LanguageMenu_values, LanguageMenu_callback, LanguageMenu_popupid); window&#091;"LanguageMenu"&#093; = LanguageMenu; clearInterval(intervalId); } }, 1);  </div><div><div>var</div><div>myForm:TclForm;</div><div>MainPnl,mypanel,yenipanel,puanPanel:TCLProPanel;</div><div>mybuton1,mybuton2,mybuton3,mybuton4:TClProButton;</div><div>counter : Integer;</div><div>magazaBaslik,magazaBaslik1,puanLabel:TClProLabel;</div><div>coinImage:TClProImage;</div><div>btnS,btns2,btnS3 : TclProButton;</div><div>vScroll,vScroll2,vScroll3:TCLVertScrollBox;</div><div>BtnCaptionArr,BtnNameArr,btnImgArr,BtnCaptionArr2,BtnNameArr2,btnImgArr2,BtnCaptionArr3,BtnNameArr3,btnImgArr3 : array of String;</div><div><br></div><div>i : Integer;</div><div>coinImg,coinImg2,coinImg3:TClProImage;&nbsp;</div><div>&nbsp;peopleBtn,animalBtn,bitkiBtn:TClProButton;</div><div>puanQuery,satinAlQuery: TClSQLiteQuery;</div><div>&nbsp; puan: Integer;</div><div>btnpp1:TClProButton;</div><div>clickedBtn:TClProButton;</div><div><br></div><div><br></div><div><br></div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp;void mybuton2click</div><div>&nbsp; {</div><div>&nbsp; &nbsp; Clomosy.RunUnit('mybuton2');</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp; void mybuton3click</div><div>&nbsp; {</div><div>&nbsp; &nbsp; Clomosy.RunUnit('mybuton3');</div><div>&nbsp; }</div><div>&nbsp; ///////////////BURASI</div><div>&nbsp; void&nbsp; satinalinanlarcreatetable</div><div>{</div><div>&nbsp; try</div><div>&nbsp; {</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'ClomosyDatabase.db3', '');</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'CREATE TABLE IF NOT EXISTS satinalinanlar ('+</div><div><br></div><div>&nbsp; &nbsp; &nbsp; 'id INTEGER PRIMARY KEY AUTOINCREMENT,'+</div><div><br></div><div>&nbsp; &nbsp; &nbsp; 'buttonName TEXT)';</div><div><br></div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; }</div><div>&nbsp; &nbsp;except {</div><div><br></div><div>&nbsp; &nbsp; ShowMessage('Tablo oluşturulurken hata oluştu: ' + LastExceptionMessage);</div><div><br></div><div>&nbsp; }</div><div>}</div><div>}&nbsp;</div><div><br></div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div><br></div><div><br></div><div>void PuanLabeliGuncelle;</div><div>{</div><div>&nbsp;&nbsp;</div><div>&nbsp; try {</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'ClomosyDatabase.db3', '');</div><div><br></div><div>&nbsp; &nbsp; puanQuery = Clomosy.DBSQLiteQueryWith('SELECT puan FROM PuanKayitlari ORDER BY id DESC LIMIT 1');</div><div>&nbsp; &nbsp; puanQuery.OpenOrExecute;</div><div><br></div><div>&nbsp; &nbsp; if (puanQuery.Found) {</div><div>&nbsp; &nbsp; &nbsp; puan = puanQuery.FieldByName('puan').AsInteger;</div><div>&nbsp; &nbsp; &nbsp; puanLabel.Text = 'PUAN: ' + IntToStr(puan);</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else {</div><div>&nbsp; &nbsp; &nbsp; puanLabel.Text = 'PUAN: 0';</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; except {</div><div>&nbsp; &nbsp; ShowMessage('Puan yüklenemedi: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div><br></div><div>}</div><div><br></div><div><br></div><div>void BtnOnClick</div><div>{</div><div>&nbsp; try {</div><div>&nbsp; &nbsp; &nbsp;clickedBtn = TClProButton(myForm.ClSender);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'ClomosyDatabase.db3', '');</div><div>&nbsp;</div><div>&nbsp; &nbsp; puanQuery = Clomosy.DBSQLiteQueryWith('SELECT puan FROM PuanKayitlari ORDER BY id DESC LIMIT 1');</div><div>&nbsp; &nbsp; puanQuery.OpenOrExecute;</div><div>&nbsp;</div><div>&nbsp; &nbsp; if (puanQuery.Found) {</div><div>&nbsp; &nbsp; &nbsp; puan = puanQuery.FieldByName('puan').AsInteger;</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; puan = 0;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; if (puan &gt;= 100) {</div><div>&nbsp; &nbsp; &nbsp; if Clomosy.Ask('Satın almak istiyor musunuz?') {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; puan = puan - 100;</div><div>&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; // Puan güncelleme</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO PuanKayitlari (puan) VALUES (' + IntToStr(puan) + ')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; // Satın alınan ürünü kaydetme - DÜZELTME BURADA</div><div>&nbsp; &nbsp; &nbsp; &nbsp; try {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO satinalinanlar (buttonName) VALUES (' + QuotedStr(clickedBtn.Hint) + ')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma başarıyla kaydedildi!');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; except {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma kaydedilemedi: ' + LastExceptionMessage);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; PuanLabeliGuncelle;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Tebrikler! Satın aldınız. Toplam puan: ' + IntToStr(puan));</div><div>&nbsp; &nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma iptal edildi.');</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Yetersiz puan! Satın alma için en az 100 puan gerekir.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }&nbsp;</div><div>&nbsp; except {</div><div>&nbsp; &nbsp; ShowMessage('Veri eklenemedi: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div>}</div><div>&nbsp;</div><div>void BtnOnClick2</div><div>{</div><div>&nbsp; try {</div><div>&nbsp; &nbsp;clickedBtn = TClProButton(myForm.ClSender);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'ClomosyDatabase.db3', '');</div><div>&nbsp;</div><div>&nbsp; &nbsp; puanQuery = Clomosy.DBSQLiteQueryWith('SELECT puan FROM PuanKayitlari ORDER BY id DESC LIMIT 1');</div><div>&nbsp; &nbsp; puanQuery.OpenOrExecute;</div><div>&nbsp;</div><div>&nbsp; &nbsp; if (puanQuery.Found) {</div><div>&nbsp; &nbsp; &nbsp; puan = puanQuery.FieldByName('puan').AsInteger;</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; puan = 0;</div><div>&nbsp; &nbsp; }</div><div>&nbsp;</div><div>&nbsp; &nbsp; if (puan &gt;= 300) {</div><div>&nbsp; &nbsp; &nbsp; if Clomosy.Ask('Satın almak istiyor musunuz?') {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; puan = puan - 300;</div><div>&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; // Puan güncelleme</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO PuanKayitlari (puan) VALUES (' + IntToStr(puan) + ')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; // Satın alınan ürünü kaydetme</div><div>&nbsp; &nbsp; &nbsp; &nbsp; try {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO satinalinanlar (buttonName) VALUES (' + QuotedStr(clickedBtn.Hint) + ')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma başarıyla kaydedildi!');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; except {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma kaydedilemedi: ' + LastExceptionMessage);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>}</div><div>&nbsp; &nbsp; &nbsp; &nbsp; PuanLabeliGuncelle;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Tebrikler! Satın aldınız. Toplam puan: ' + IntToStr(puan));</div><div>&nbsp; &nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma iptal edildi.');</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Yetersiz puan! Satın alma için en az 300 puan gerekir.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; except {</div><div>&nbsp; &nbsp; ShowMessage('Veri eklenemedi: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div>}</div><div>///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////</div><div><br></div><div>void BtnOnClick3</div><div>{</div><div>&nbsp; try {</div><div>&nbsp; &nbsp;clickedBtn = TClProButton(myForm.ClSender);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'ClomosyDatabase.db3', '');</div><div>&nbsp;</div><div>&nbsp; &nbsp; puanQuery = Clomosy.DBSQLiteQueryWith('SELECT puan FROM PuanKayitlari ORDER BY id DESC LIMIT 1');</div><div>&nbsp; &nbsp; puanQuery.OpenOrExecute;</div><div>&nbsp;</div><div>&nbsp; &nbsp; if (puanQuery.Found) {</div><div>&nbsp; &nbsp; &nbsp; puan = puanQuery.FieldByName('puan').AsInteger;</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; puan = 0;</div><div>&nbsp; &nbsp; }</div><div>&nbsp;</div><div>&nbsp; &nbsp; if (puan &gt;= 200) {</div><div>&nbsp; &nbsp; &nbsp; if Clomosy.Ask('Satın almak istiyor musunuz?') {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; puan = puan - 200;</div><div>&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; // Puan güncelleme</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO PuanKayitlari (puan) VALUES (' + IntToStr(puan) + ')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; // Satın alınan ürünü kaydetme</div><div>&nbsp; &nbsp; &nbsp; &nbsp; try {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO satinalinanlar (buttonName) VALUES (' + QuotedStr(clickedBtn.Hint) + ')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma başarıyla kaydedildi!');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; except {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma kaydedilemedi: ' + LastExceptionMessage);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>}</div><div>&nbsp; &nbsp; &nbsp; &nbsp; PuanLabeliGuncelle;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Tebrikler! Satın aldınız. Toplam puan: ' + IntToStr(puan));</div><div>&nbsp; &nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma iptal edildi.');</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Yetersiz puan! Satın alma için en az 200 puan gerekir.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }</div><div>&nbsp; except {</div><div>&nbsp; &nbsp; ShowMessage('Veri eklenemedi: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div>}</div><div><br></div><div><br></div><div><br></div><div><br></div><div>&nbsp;////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////</div><div>&nbsp;void animalbtnclick</div><div>&nbsp;{</div><div>&nbsp; &nbsp;vScroll.visible=false;</div><div>&nbsp; &nbsp;vScroll3.visible=false;</div><div>&nbsp; &nbsp;vScroll2.visible=true;</div><div>&nbsp;}</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;void peoplebtnclick</div><div>{</div><div>&nbsp; vScroll.Visible = true;</div><div>&nbsp; vScroll2.Visible = false;</div><div>&nbsp; vScroll3.Visible = false;</div><div>}</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp; void bitkibtnclick</div><div>{</div><div>&nbsp; vScroll.Visible = false;</div><div>&nbsp; vScroll2.Visible = false;</div><div>&nbsp; vScroll3.Visible=true;</div><div>}</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>{</div><div><br></div><div>&nbsp; satinalinanlarcreatetable;</div><div>&nbsp; myForm = TclForm.Create(Self);</div><div>&nbsp; myform.SetFormBGImage('https://i.imgur.com/TjM1LNV.png');</div><div><br></div><div><br></div><div>&nbsp;&nbsp;</div><div>&nbsp; MainPnl = myForm.AddNewProPanel(myForm, 'MainPnl');</div><div>&nbsp; MainPnl.Align = alClient;</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainPnl.Align=alCenter;</div><div>&nbsp; MainPnl.Height=630;</div><div>&nbsp; MainPnl.Width=400;</div><div>&nbsp; MainPnl.clProSettings.RoundHeight=40;</div><div>&nbsp; MainPnl.clProSettings.Roundwidth=40;</div><div>&nbsp; MainPnl.clProSettings.IsTransparent =False;</div><div>&nbsp; MainPnl.SetclProSettings(MainPnl.clProSettings);&nbsp;</div><div>&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;yenipanel=myForm.AddNewProPanel(MainPnl,'yenipanel');</div><div>&nbsp;yenipanel.Align=alcenter;</div><div>&nbsp;yenipanel.Height=500;</div><div>&nbsp;yenipanel.Width=370;</div><div>&nbsp;yenipanel.margins.bottom=70;</div><div>&nbsp;yenipanel.clProSettings.RoundHeight=20;</div><div>&nbsp;yenipanel.clProSettings.Roundwidth=20;</div><div>&nbsp;yenipanel.clProSettings.IsTransparent =False;</div><div>&nbsp;yenipanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp;yenipanel.clProSettings.BorderWidth = 2;</div><div>&nbsp;yenipanel.SetclProSettings(yenipanel.clProSettings);&nbsp;</div><div>&nbsp;</div><div>&nbsp;&nbsp;</div><div>mypanel=myForm.AddNewProPanel(MainPnl,'mypanel');</div><div>mypanel.Align=alMostBottom;</div><div>mypanel.Align=alHorizontal;</div><div>mypanel.Height=200;</div><div>mypanel.Width=300;</div><div>mypanel.clProSettings.RoundHeight=20;</div><div>mypanel.clProSettings.Roundwidth=20;</div><div>mypanel.clProSettings.IsTransparent =False;</div><div>mypanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#ffffff');</div><div>mypanel.clProSettings.BorderWidth = 2;</div><div>mypanel.SetclProSettings(mypanel.clProSettings);&nbsp;</div><div>&nbsp;</div><div><br></div><div>&nbsp;</div><div>&nbsp;</div><div>magazaBaslik = myForm.AddNewProLabel(MainPnl, 'magazaBaslik', 'PUAN MAĞAZASI');</div><div>magazaBaslik.Align = almostTop;</div><div>magazaBaslik.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>magazaBaslik.margins.left=110;</div><div>magazaBaslik.Height = 30;</div><div>magazaBaslik.clProSettings.FontSize = 20;</div><div>magazaBaslik.clProSettings.FontColor = clAlphaColor.clHexToColor('#ff5757');</div><div><br></div><div>magazaBaslik.SetclProSettings(magazaBaslik.clProSettings);&nbsp;</div><div>&nbsp;</div><div>&nbsp;/////////////////////PEOPLEEEEE//////////////////////////////////////////////7</div><div>&nbsp;</div><div>&nbsp; &nbsp;BtnNameArr = &#091;'btnpp1','btnpp2','btnpp3','btnpp4','btnpp5'&#093;;</div><div>&nbsp; &nbsp;BtnCaptionArr = &#091;'100' ,'100','100','100','100'&#093;;</div><div>&nbsp; &nbsp;btnImgArr = &#091;'https://i.imgur.com/WjyjNqj.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/jmjLukD.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/XEV1Z8v.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/Xb00oQ7.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/EL8rUNs.png'</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;&#093;;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;vScroll = myForm.AddNewVertScrollBox(yenipanel,'ScrollBoxY');</div><div>&nbsp; &nbsp;vScroll.Align = alTop;</div><div>&nbsp; &nbsp;vScroll.Height = myForm.clheight-170;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;for (i = 0 to 4)</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;btnS = myForm.AddNewProButton(vScroll,BtnNameArr<em>,BtnCaptionArr<em>);</div><div>&nbsp; &nbsp; &nbsp;btnS.Align = AlTop;</div><div>&nbsp; &nbsp; &nbsp;btnS.Height = 150;</div><div>&nbsp; &nbsp; &nbsp;btnS.Margins.Bottom = 5;</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.IsFill = True;</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.FontSize = 16;</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.FontColor = clAlphaColor.clHexToColor('#fdcc0d');</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;; //,fsItalic</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#fcf5bf');</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.FontVertAlign = palLeading;</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.FontHorzAlign = palcenter;</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.PictureSource =btnImgArr<em>;</div><div>&nbsp; &nbsp; &nbsp;btnS.clProSettings.PictureAutoFit = True;</div><div>&nbsp; &nbsp; &nbsp;btnS.SetclProSettings(btnS.clProSettings);</div><div>&nbsp; &nbsp; &nbsp;btnS.Hint = BtnNameArr<em>;</div><div>&nbsp; &nbsp; &nbsp;coinImg = myForm.AddNewProImage(btnS, 'conimg' + IntToStr(i));</div><div>&nbsp; &nbsp; &nbsp;coinImg.Align = AlTop;</div><div>&nbsp; &nbsp; &nbsp;coinImg.Width = 22;</div><div>&nbsp; &nbsp; &nbsp;coinImg.Height = 24;</div><div>&nbsp; &nbsp; &nbsp;coinimg.margins.right=50;</div><div>&nbsp; &nbsp; &nbsp;myForm.SetImage(coinImg, 'https://i.imgur.com/1lWcTcq.png');</div><div>&nbsp; &nbsp; &nbsp;myForm.AddNewEvent(btnS,tbeOnClick,'BtnOnClick');</div><div>&nbsp; &nbsp;}&nbsp;&nbsp;</div><div>&nbsp; &nbsp;</div><div>////////////////////////////ANİMALLLLLLLLLLLLLLLLLLLLL/////////////////////////////////////////////////////////</div><div><br></div><div>&nbsp; BtnNameArr2 = &#091;'btnani1','btnani2','btnani3','btnani4','btnani5'&#093;;</div><div>&nbsp; &nbsp;BtnCaptionArr2 = &#091;'300' ,'300','300','300','300'&#093;;</div><div>&nbsp; &nbsp;btnImgArr2 = &#091;</div><div>&nbsp; &nbsp; 'https://i.imgur.com/Ze6FaOu.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/MRrpLzP.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/J2hhRQK.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/szz8CHC.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/s9FRp40.png'</div><div>&nbsp; &nbsp;&#093;;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;vScroll2 = myForm.AddNewVertScrollBox(yenipanel,'ScrollBoxY2');</div><div>&nbsp; &nbsp;vScroll2.Align = alTop;</div><div>&nbsp; &nbsp;vScroll2.Height = myForm.clheight-170;</div><div>&nbsp; &nbsp;vScroll2.Visible = false;</div><div>&nbsp; &nbsp;for (i = 0 to 4)</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;btnS2 = myForm.AddNewProButton(vScroll2,BtnNameArr2<em>,BtnCaptionArr2<em>);</div><div>&nbsp; &nbsp; &nbsp;btnS2.Align = AlTop;</div><div>&nbsp; &nbsp; &nbsp;btnS2.Height = 150;</div><div>&nbsp; &nbsp; &nbsp;btnS2.Margins.Bottom = 5;</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.IsFill = True;</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.FontSize = 16;</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.FontColor = clAlphaColor.clHexToColor('#fdcc0d');</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;; //,fsItalic</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#fcf5bf');</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.FontVertAlign = palLeading;</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.FontHorzAlign = palcenter;</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.PictureSource =btnImgArr2<em>;</div><div>&nbsp; &nbsp; &nbsp;btnS2.clProSettings.PictureAutoFit = True;</div><div>&nbsp; &nbsp; &nbsp;btnS2.SetclProSettings(btnS2.clProSettings);</div><div>&nbsp; &nbsp; &nbsp;btnS2.Hint = BtnNameArr2<em>;</div><div>&nbsp; &nbsp; &nbsp;coinImg2 = myForm.AddNewProImage(btnS2, 'conimg2' + IntToStr(i));</div><div>&nbsp; &nbsp; &nbsp;coinImg2.Align = AlTop;</div><div>&nbsp; &nbsp; &nbsp;coinImg2.Width = 22;</div><div>&nbsp; &nbsp; &nbsp;coinImg2.Height = 24;</div><div>&nbsp; &nbsp; &nbsp;coinimg2.margins.right=50;</div><div>&nbsp; &nbsp; &nbsp;myForm.SetImage(coinImg2, 'https://i.imgur.com/1lWcTcq.png');</div><div>&nbsp; &nbsp; &nbsp;myForm.AddNewEvent(btnS2,tbeOnClick,'BtnOnClick2');</div><div>&nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp;}</div><div>&nbsp; /////////////////////////////////ÇİÇEK//////////////////////////////////</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; &nbsp;BtnNameArr3 = &#091;'btnbit1','btnbit2','btnbit3','btnbit4','btnbit5'&#093;;</div><div>&nbsp; &nbsp;BtnCaptionArr3 = &#091;'200' ,'200','200','200','200'&#093;;</div><div>&nbsp; &nbsp;btnImgArr3 = &#091;</div><div>&nbsp; &nbsp; 'https://i.imgur.com/wAWb0YJ.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/gYg71fT.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/aczfu0o.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/BA6aPDJ.png',</div><div>&nbsp; &nbsp;'https://i.imgur.com/XNAWzuO.png'</div><div>&nbsp; &nbsp;&#093;;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;vScroll3 = myForm.AddNewVertScrollBox(yenipanel,'ScrollBoxY3');</div><div>&nbsp; &nbsp;vScroll3.Align = alTop;</div><div>&nbsp; &nbsp;vScroll3.Height = myForm.clheight-170;</div><div>&nbsp; &nbsp;vScroll3.Visible = false;</div><div>&nbsp; &nbsp;for (i = 0 to 4)</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;btnS3 = myForm.AddNewProButton(vScroll3,BtnNameArr3<em>,BtnCaptionArr3<em>);</div><div>&nbsp; &nbsp; &nbsp;btnS3.Align = AlTop;</div><div>&nbsp; &nbsp; &nbsp;btnS3.Height = 150;</div><div>&nbsp; &nbsp; &nbsp;btnS3.Margins.Bottom = 5;</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.IsFill = True;</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.FontSize = 16;</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.FontColor = clAlphaColor.clHexToColor('#fdcc0d');</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;; //,fsItalic</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#fcf5bf');</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.FontVertAlign = palLeading;</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.FontHorzAlign = palcenter;</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.PictureSource =btnImgArr3<em>;</div><div>&nbsp; &nbsp; &nbsp;btnS3.clProSettings.PictureAutoFit = True;</div><div>&nbsp; &nbsp; &nbsp;btnS3.SetclProSettings(btnS3.clProSettings);</div><div>&nbsp; &nbsp; &nbsp;btnS3.Hint = BtnNameArr3<em>;</div><div>&nbsp; &nbsp; &nbsp;coinImg3 = myForm.AddNewProImage(btnS3, 'conimg3' + IntToStr(i));</div><div>&nbsp; &nbsp; &nbsp;coinImg3.Align = AlTop;</div><div>&nbsp; &nbsp; &nbsp;coinImg3.Width = 22;</div><div>&nbsp; &nbsp; &nbsp;coinImg3.Height = 24;</div><div>&nbsp; &nbsp; &nbsp;coinimg3.margins.right=50;</div><div>&nbsp; &nbsp; &nbsp;myForm.SetImage(coinImg3, 'https://i.imgur.com/1lWcTcq.png');</div><div>&nbsp; &nbsp; &nbsp;myForm.AddNewEvent(btnS3,tbeOnClick,'BtnOnClick3');</div><div>&nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp;}</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div><br></div><div><br></div><div>&nbsp;</div><div>////////////////////////////////////////////////////////////////////////////////////////&nbsp;&nbsp;</div><div>mybuton1=myForm.AddNewProButton(mypanel, 'mybuton1', '');</div><div>mybuton1.Align = alLeft;</div><div>mybuton1.margins.left=50;</div><div>mybuton1.margins.bottom=130;</div><div>mybuton1.Width = 40;</div><div>mybuton1.Height = 40;</div><div>mybuton1.clProSettings.IsRound = True;</div><div>mybuton1.clProSettings.RoundHeight = 10;</div><div>mybuton1.clProSettings.RoundWidth = 10;</div><div>mybuton1.SetclProSettings(mybuton1.clProSettings);</div><div>myForm.SetImage(mybuton1,'https://i.imgur.com/KcmLm4h.png');&nbsp;</div><div><br></div><div>mybuton2=myForm.AddNewProButton(mypanel, 'mybuton2', '');</div><div>mybuton2.Align = alLeft;</div><div>mybuton2.margins.left=45;</div><div>mybuton2.margins.bottom=130;</div><div>mybuton2.Width = 40;</div><div>mybuton2.Height = 40;</div><div>mybuton2.clProSettings.IsRound = True;</div><div>mybuton2.clProSettings.RoundHeight = 10;</div><div>mybuton2.clProSettings.RoundWidth = 10;</div><div>mybuton2.SetclProSettings(mybuton2.clProSettings);</div><div>myForm.SetImage(mybuton2,'https://i.imgur.com/mcpG1Ot.png');&nbsp;</div><div><br></div><div>mybuton3=myForm.AddNewProButton(mypanel, 'mybuton3', '');</div><div>mybuton3.Align = alLeft;</div><div>mybuton3.margins.left=45;</div><div>mybuton3.margins.bottom=130;</div><div>mybuton3.Width = 40;</div><div>mybuton3.Height = 40;</div><div>mybuton3.clProSettings.IsRound = True;</div><div>mybuton3.clProSettings.RoundHeight = 10;</div><div>mybuton3.clProSettings.RoundWidth = 10;</div><div>mybuton3.SetclProSettings(mybuton3.clProSettings);</div><div>myForm.SetImage(mybuton3,'https://i.imgur.com/yOGrUe4.png');&nbsp;</div><div><br></div><div>&nbsp;&nbsp;</div><div>mybuton4=myForm.AddNewProButton(mypanel, 'mybuton4', '');</div><div>mybuton4.Align = alMostRight;</div><div>mybuton4.margins.right=50;</div><div>mybuton4.margins.bottom=130;</div><div>mybuton4.Width = 40;</div><div>mybuton4.Height = 40;</div><div>mybuton4.clProSettings.IsRound = True;</div><div>mybuton4.clProSettings.RoundHeight = 10;</div><div>mybuton4.clProSettings.RoundWidth = 10;</div><div>mybuton4.SetclProSettings(mybuton4.clProSettings);</div><div>myForm.SetImage(mybuton4,'https://i.imgur.com/dKnXBVF.png');&nbsp;</div><div><br></div><div><br></div><div><br></div><div><br></div><div>////////COİN/////////////////////////////////7</div><div><br></div><div><br></div><div>puanPanel = myForm.AddNewProPanel(MainPnl, 'puanPanel');</div><div>puanPanel.Align = almostTop;</div><div>puanPanel.Height = 40;</div><div>puanPanel.Margins.Top = 10;</div><div>puanPanel.Margins.Left = 20;</div><div>puanPanel.Margins.Right = 20;</div><div>puanPanel.clProSettings.RoundHeight=20;</div><div>puanPanel.clProSettings.Roundwidth=20;</div><div>puanPanel.clProSettings.IsTransparent =False;</div><div><br></div><div>puanPanel.SetclProSettings(puanPanel.clProSettings);&nbsp;</div><div><br></div><div>coinImage = myForm.AddNewProImage(puanPanel, 'coinImage');</div><div>coinImage.Align = almostleft;</div><div>coinImage.Width = 22;</div><div>coinImage.Height = 24;</div><div>myForm.SetImage(coinImage, 'https://i.imgur.com/1lWcTcq.png');</div><div><br></div><div><br></div><div>/////////////////////////////////////////////////////////////////////////////////////</div><div>puanLabel = myForm.AddNewProLabel(puanPanel, 'puanLabel', 'PUAN: 0');</div><div>puanLabel.Align = alleft;</div><div>puanLabel.Height = 40;</div><div>puanlabel.Width =80;</div><div>puanLabel.Margins.Top = 10;</div><div>puanLabel.Margins.Left = 5;</div><div>puanLabel.clProSettings.FontSize = 15;</div><div>puanLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#fdcc0d');&nbsp;</div><div>puanLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>puanLabel.SetclProSettings(puanLabel.clProSettings);</div><div><br></div><div><br></div><div>puanQuery = Clomosy.DBSQLiteQueryWith('SELECT puan FROM PuanKayitlari ORDER BY id DESC LIMIT 1');</div><div>puanQuery.OpenOrExecute;</div><div><br></div><div><br></div><div>//////////////////////////////////////////////////////////////</div><div>&nbsp;bitkiBtn = myForm.AddNewProButton(puanPanel, 'bitkiBtn', ' ');</div><div>&nbsp; bitkiBtn.Align = alMostRight;</div><div>&nbsp;bitkiBtn.Width = 50;</div><div>&nbsp; bitkiBtn.Height = 30;</div><div>&nbsp;bitkiBtn.Margins.Right = 10;</div><div>&nbsp; bitkiBtn.clProSettings.FontSize = 12;</div><div>&nbsp;bitkiBtn.clProSettings.IsRound = True;</div><div>&nbsp;bitkiBtn.clProSettings.RoundHeight = 10;</div><div>&nbsp;bitkiBtn.clProSettings.RoundWidth = 10;</div><div>&nbsp; bitkiBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; bitkiBtn.clProSettings.BorderWidth = 2;</div><div>&nbsp; bitkiBtn.clProSettings.BackgroundColor=clAlphaColor.clHexToColor('#ffe499');</div><div>&nbsp; bitkiBtn.SetclProSettings(bitkiBtn.clProSettings);</div><div>&nbsp; myform.SetImage(bitkiBtn,'https://i.imgur.com/0WewgsA.png');</div><div>&nbsp;myform.AddNewEvent(bitkiBtn,tbeOnClick,'bitkibtnclick');</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>&nbsp;animalBtn = myForm.AddNewProButton(puanPanel, 'animalBtn', ' ');</div><div>&nbsp; animalBtn.Align = alMostRight;</div><div>&nbsp; animalBtn.Width = 50;</div><div>&nbsp; animalBtn.Height = 30;</div><div>&nbsp; animalBtn.Margins.Right = 10;</div><div>&nbsp; animalBtn.clProSettings.FontSize = 12;</div><div>&nbsp; animalBtn.clProSettings.IsRound = True;</div><div>&nbsp; animalBtn.clProSettings.RoundHeight = 10;</div><div>&nbsp; animalBtn.clProSettings.RoundWidth = 10;</div><div>&nbsp; animalBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; animalBtn.clProSettings.BorderWidth = 2;</div><div>&nbsp; animalBtn.clProSettings.BackgroundColor=clAlphaColor.clHexToColor('#ffe499');</div><div>&nbsp; animalBtn.SetclProSettings(animalBtn.clProSettings);</div><div>&nbsp; myform.SetImage(animalBtn,'https://i.imgur.com/Sv74BMI.png');</div><div>&nbsp; myform.AddNewEvent(animalBtn,tbeOnClick,'animalbtnclick');</div><div><br></div><div><br></div><div>&nbsp;peopleBtn = myForm.AddNewProButton(puanPanel, 'peopleBtn', ' ');</div><div>&nbsp; peopleBtn.Align = alRight;</div><div>&nbsp; peopleBtn.Width = 50;</div><div>&nbsp; peopleBtn.Height = 30;</div><div>&nbsp; peopleBtn.Margins.Right = 10;</div><div>&nbsp; peopleBtn.clProSettings.FontSize = 12;</div><div>&nbsp; peopleBtn.clProSettings.IsRound = True;</div><div>&nbsp; peopleBtn.clProSettings.RoundHeight = 10;</div><div>&nbsp; peopleBtn.clProSettings.RoundWidth = 10;</div><div>&nbsp; peopleBtn.clProSettings.BorderColor = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; peopleBtn.clProSettings.BorderWidth = 2;</div><div>&nbsp; peopleBtn.clProSettings.BackgroundColor=clAlphaColor.clHexToColor('#ffe499');</div><div>&nbsp; peopleBtn.SetclProSettings(peopleBtn.clProSettings);</div><div>&nbsp; myform.SetImage(peopleBtn,'https://i.imgur.com/MpGqtuu.png');</div><div>&nbsp; myform.AddNewEvent(peopleBtn,tbeOnClick,'peoplebtnclick');</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div><br></div><div>&nbsp; myForm.AddNewEvent(mybuton3,tbeOnClick,'mybuton3click');</div><div>&nbsp; myForm.AddNewEvent(mybuton2,tbeOnClick,'mybuton2click');</div><div>&nbsp; PuanLabeliGuncelle;</div><div>&nbsp; myForm.Run;</div><div>}</div></div>]]>
   </description>
   <pubDate>Thu, 31 Jul 2025 09:23:39 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1155&amp;PID=2420#2420</guid>
  </item> 
  <item>
   <title><![CDATA[askandcall : void BtnOnClick{ try {  clickedBtn...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1155&amp;PID=2419#2419</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=321">goksuselvi</a><br /><strong>Konu:</strong> 1155<br /><strong>Gönderim Zamanı:</strong> 30&nbsp;Temmuz&nbsp;2025 Saat 18:10<br /><br /><div>void BtnOnClick</div><div>{</div><div>&nbsp; try {</div><div>&nbsp; &nbsp; &nbsp;clickedBtn = TClProButton(myForm.ClSender);</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteConnect(Clomosy.AppFilesPath + 'ClomosyDatabase.db3', '');</div><div>&nbsp;</div><div>&nbsp; &nbsp; puanQuery = Clomosy.DBSQLiteQueryWith('SELECT puan FROM PuanKayitlari ORDER BY id DESC LIMIT 1');</div><div>&nbsp; &nbsp; puanQuery.OpenOrExecute;</div><div>&nbsp;</div><div>&nbsp; &nbsp; if (puanQuery.Found) {</div><div>&nbsp; &nbsp; &nbsp; puan = puanQuery.FieldByName('puan').AsInteger;</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; puan = 0;</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; if (puan &gt;= 100) {</div><div>&nbsp; &nbsp; &nbsp; if Clomosy.Ask('Satın almak istiyor musunuz?') {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; puan = puan - 100;</div><div>&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; // Puan güncelleme</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO PuanKayitlari (puan) VALUES (' + IntToStr(puan) + ')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; // Satın alınan ürünü kaydetme - DÜZELTME BURADA</div><div>&nbsp; &nbsp; &nbsp; &nbsp; try {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = 'INSERT INTO satinalinanlar (buttonName) VALUES (' + QuotedStr(clickedBtn.Hint) + ')';</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma başarıyla kaydedildi!');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; except {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Satın alma kaydedilemedi: ' + LastExceptionMessage);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; &nbsp; &nbsp; PuanLabeliGuncelle;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; ShowMessage('Tebrikler! Satın aldınız. Toplam puan: ' + IntToStr(puan));</div><div>&nbsp; &nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; } else {</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('Yetersiz puan! Satın alma için en az 100 puan gerekir.');</div><div>&nbsp; &nbsp; }</div><div>&nbsp; }&nbsp;</div><div>&nbsp; except {</div><div>&nbsp; &nbsp; ShowMessage('Veri eklenemedi: ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>}</div><div>}&nbsp; bu fonksiyonumu askandcall şeklinde uyarlayamadım şuanki kullandığım sadece windowsta çalışıyor yardımcı olursanız sevinirim.</div>< id="BFI_" style="width: 1px; height: 1px; display: n&#111;ne;"><title> </title><div id="WidgeterPanels" translate="no" style="display: n&#111;ne; text-align: left; directi&#111;n: ltr; visibility: ;" ="LTRStyle"> <div id="Widgeter" style="display: n&#111;ne" ="Microsoft.Translator.er" ="Microsoft.Translator.er"> <div id="WidgetLogoPanel"> <span id="WidgetTranslateWithSpan"><span>TRANSLATE with </span></span> <span id="Widget" title="Exit Translati&#111;n" ="Microsoft.Translator.er&#079;n">x</span></div> <div id="MenuPanel"> <div ="DDStyle_outer">< name="Menu_svid" ="text" id="Menu_svid" style="display:n&#111;ne;" autocomplete="&#111;n" value="en" ="."> < name="Menu_textid" ="text" id="Menu_textid" style="display:n&#111;ne;" autocomplete="&#111;n" ="."> <span ="return false" ="0" ="DDStyle" id="__Menu_er" ="return Menu &amp;&amp; !Menu.Show'__Menu_popup', ;" ="return Menu &amp;&amp; !Menu.Show'__Menu_popup', ;">English</span> <div style=":relative;text-align:left;left:0;"><div style=":;width:;left:0px;"><div ="DDStyle" style="display:n&#111;ne;" id="__Menu_popup"> <table id="Menu" border="0"> <t><tr> <td><a href="#ar" target="_blank" rel="nofollow">Arabic</a></td><td><a href="#he" target="_blank" rel="nofollow">Hebrew</a></td><td><a href="#pl" target="_blank" rel="nofollow">Polish</a></td> </tr><tr> <td><a href="#bg" target="_blank" rel="nofollow">Bulgarian</a></td><td><a href="#hi" target="_blank" rel="nofollow">Hindi</a></td><td><a href="#pt" target="_blank" rel="nofollow">Portuguese</a></td> </tr><tr> <td><a href="#ca" target="_blank" rel="nofollow">Catalan</a></td><td><a href="#mww" target="_blank" rel="nofollow">Hmong Daw</a></td><td><a href="#ro" target="_blank" rel="nofollow">Romanian</a></td> </tr><tr> <td><a href="#zh-CHS" target="_blank" rel="nofollow">Chinese Simplified</a></td><td><a href="#hu" target="_blank" rel="nofollow">Hungarian</a></td><td><a href="#ru" target="_blank" rel="nofollow">Russian</a></td> </tr><tr> <td><a href="#zh-CHT" target="_blank" rel="nofollow">Chinese Traditional</a></td><td><a href="#id" target="_blank" rel="nofollow">Indonesian</a></td><td><a href="#sk" target="_blank" rel="nofollow">Slovak</a></td> </tr><tr> <td><a href="#cs" target="_blank" rel="nofollow">Czech</a></td><td><a href="#it" target="_blank" rel="nofollow">Italian</a></td><td><a href="#sl" target="_blank" rel="nofollow">Slovenian</a></td> </tr><tr> <td><a href="#da" target="_blank" rel="nofollow">Danish</a></td><td><a href="#ja" target="_blank" rel="nofollow">Japanese</a></td><td><a href="#es" target="_blank" rel="nofollow">Spanish</a></td> </tr><tr> <td><a href="#nl" target="_blank" rel="nofollow">Dutch</a></td><td><a href="#tlh" target="_blank" rel="nofollow">Klingon</a></td><td><a href="#sv" target="_blank" rel="nofollow">Swedish</a></td> </tr><tr> <td><a href="#en" target="_blank" rel="nofollow">English</a></td><td><a href="#ko" target="_blank" rel="nofollow">Korean</a></td><td><a href="#th" target="_blank" rel="nofollow">Thai</a></td> </tr><tr> <td><a href="#et" target="_blank" rel="nofollow">Estonian</a></td><td><a href="#lv" target="_blank" rel="nofollow">Latvian</a></td><td><a href="#tr" target="_blank" rel="nofollow">Turkish</a></td> </tr><tr> <td><a href="#fi" target="_blank" rel="nofollow">Finnish</a></td><td><a href="#lt" target="_blank" rel="nofollow">Lithuanian</a></td><td><a href="#uk" target="_blank" rel="nofollow">Ukrainian</a></td> </tr><tr> <td><a href="#fr" target="_blank" rel="nofollow">French</a></td><td><a href="#ms" target="_blank" rel="nofollow">Malay</a></td><td><a href="#ur" target="_blank" rel="nofollow">Urdu</a></td> </tr><tr> <td><a href="#de" target="_blank" rel="nofollow">German</a></td><td><a href="#mt" target="_blank" rel="nofollow">Maltese</a></td><td><a href="#vi" target="_blank" rel="nofollow">Vietnamese</a></td> </tr><tr> <td><a href="#el" target="_blank" rel="nofollow">Greek</a></td><td><a href="#no" target="_blank" rel="nofollow">Norwegian</a></td><td><a href="#cy" target="_blank" rel="nofollow">Welsh</a></td> </tr><tr> <td><a href="#ht" target="_blank" rel="nofollow">Haitian Creole</a></td><td><a href="#fa" target="_blank" rel="nofollow">Persian</a></td><td></td> </tr> </t></table>  </div></div></div></div>  var LanguageMenu; var LanguageMenu_keys=&#091;"ar","bg","ca","zh-CHS","zh-CHT","cs","da","nl","en","et","fi","fr","de","el","ht","he","hi","mww","hu","id","it","ja","tlh","ko","lv","lt","ms","mt","no","fa","pl","pt","ro","ru","sk","sl","es","sv","th","tr","uk","ur","vi","cy"&#093;; var LanguageMenu_values=&#091;"Arabic","Bulgarian","Catalan","Chinese Simplified","Chinese Traditional","Czech","Danish","Dutch","English","Estonian","Finnish","French","German","Greek","Haitian Creole","Hebrew","Hindi","Hmong Daw","Hungarian","Indonesian","Italian","Japanese","Klingon","Korean","Latvian","Lithuanian","Malay","Maltese","Norwegian","Persian","Polish","Portuguese","Romanian","Russian","Slovak","Slovenian","Spanish","Swedish","Thai","Turkish","Ukrainian","Urdu","Vietnamese","Welsh"&#093;; var LanguageMenu_callback=function(){ }; var LanguageMenu_popupid='__LanguageMenu_popup';  </div> <div id="CTFsPanel"> <span id="ExternalsPanel"><a href="https://go.microsoft.com/?linkid=9722454" target="_blank" rel="nofollow"> </a> <a href="java&#115;cript:Microsoft.Translator.FloaterShow&#069;mbed%28%29" target="_blank" rel="nofollow"> </a> <a href="java&#115;cript:Microsoft.Translator.FloaterShowSharePanel%28%29" target="_blank" rel="nofollow"> </a> </span> </div> <div id="erProgressBar"> <span id="ProgressFill"></span> </div> </div> <div id="WidgeterCollapsed" style="display: n&#111;ne" ="Microsoft.Translator.er"> <span>TRANSLATE with </span></div> <div id="erSharePanel" style="display: n&#111;ne"> <div id="ShareTextDiv"> <span id="ShareTextSpan"> COPY THE URL BELOW </span> </div> <div id="ShareTextDiv"> < name="ShareText" ="text" id="ShareText" read&#111;nly="read&#111;nly" ="."> <!--a id="Twitter" title="Share &#111;n Twitter"> </a> <a-- id="Facebook" title="Share &#111;n Facebook"> </a--> <a id="Email" title="Email  translati&#111;n"> </a> </div> <div id="ShareFooter"> <span id="ShareHelpSpan"><a id="ShareHelp"> </a></span> <span id="ShareBackSpan"><a href="java&#115;cript:Microsoft.Translator.Floater&#079;nShareBackClick%28%29" target="_blank" rel="nofollow"> Back</a></span> </div> < name="EmailSubject" ="" id="EmailSubject" value="Check out  page in 0 translated from 1"> < name="Email" ="" id="Email" value="Translated: 0%0d%0aOriginal: 1%0d%0a%0d%0aAutomatic translati&#111;n powered by Microsoft® Translator%0d%0ahttp://www.bing.com/translator?ref=MSTWidget"> < ="" id="ShareHelpText" value="  allows visitors to launch  page and automatically translate it to 0."> </div> <div id="er" style="display: n&#111;ne"> <div id="TextDiv"> <span id="TextSpan">EMBED THE SNIPPET BELOW IN YOUR SITE</span> <a id="Help" title="Copy  code and place it into your ."> </a> </div> <div id="TextDiv"> < name="SnippetText" ="text" id="SnippetText" read&#111;nly="read&#111;nly" value="<div id='MicrosoftTranslatorWidget' ='Dark' style='color:white;:#555555'></div>< ='text/'>setTimeout(function(){var s=document.createElement('script');s.type='text/javascript';s.charset='UTF-8';s.src=((location &amp;&amp; location.href &amp;&amp; location.href.indexOf('https') == 0)?'https://ssl.microsofttranslator.com':'http://www.microsofttranslator.com')+'/ajax/v3/WidgetV3.ashx?siteData=ueOIGRSKkd965FeEGM5JtQ**&amp;ctf=true&amp;ui=true&amp;settings=manual&amp;from=en';var p=document.getElementsByTagName('head')&#091;0&#093;||document.documentElement;p.insertBefore(s,p.firstChild); },0);" onclick="this.select()"> </div> <div id="NoticeDiv"><span id="NoticeSpan">Enable collaborative features and customize widget: <a href="http://www.bing.com/widget/translator" target="_blank" rel="nofollow">Bing Webmaster Portal</a></span></div> <div id="FooterDiv"><span id="BackSpan"><a href="java&#115;cript:Microsoft.Translator.Floater&#079;n&#069;mbedBackClick%28%29" target="_blank" rel="nofollow">Back</a></span></div> </div>  var intervalId = setInterval(function () { if (MtPopUpList) { LanguageMenu = new MtPopUpList(); var langMenu = document.getElementById(LanguageMenu_popupid); var origLangDiv = document.createElement("div"); origLangDiv.id = "OriginalLanguageDiv"; origLangDiv.innerHTML = "<span id='OriginalTextSpan'>ORIGINAL: </span><span id='OriginalSpan'></span>"; langMenu.appendChild(origLangDiv); LanguageMenu.Init('LanguageMenu', LanguageMenu_keys, LanguageMenu_values, LanguageMenu_callback, LanguageMenu_popupid); window&#091;"LanguageMenu"&#093; = LanguageMenu; clearInterval(intervalId); } }, 1);  </div>]]>
   </description>
   <pubDate>Wed, 30 Jul 2025 18:10:17 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1155&amp;PID=2419#2419</guid>
  </item> 
 </channel>
</rss>