<?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 : Nasıl HTTPPost Yapacağım?</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Nasıl HTTPPost Yapacağım?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 01 May 2026 20:55:14 +0000</pubDate>
  <lastBuildDate>Thu, 14 Mar 2024 17:25:47 +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=579</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[Nasıl HTTPPost Yapacağım? : MerhabaClomosy Learn g&#252;ncel exe...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=579&amp;PID=780#780</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 579<br /><strong>Gönderim Zamanı:</strong> 14&nbsp;Mart&nbsp;2024 Saat 17:25<br /><br />Merhaba<div><br></div><div>Clomosy Learn güncel exe sürümünde HTTP Post özelliğini kullanabilirsiniz.</div><div>Güncel exeyi <a href="https://clomosy.com/clomosylearn.rar" target="_blank" rel="nofollow">https://clomosy.com/clomosylearn.rar</a>&nbsp;adresinden indirebilirsiniz.</div><div><br></div><div>Örnek Demo Kodu:</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><div>var</div><div>&nbsp;MyForm:TCLForm;</div><div>&nbsp;MyHttp: TclHttp;</div><div>&nbsp;str:TclStringList;</div><div>&nbsp;edtUrl : TclEdit;</div><div>&nbsp;memoBody, memoResult : TclMemo;</div><div>&nbsp;postBtn, getBtn: TclButton;</div><div>&nbsp;</div><div>&nbsp;void getClick;</div><div>&nbsp;{</div><div>&nbsp; try</div><div>&nbsp; {</div><div>&nbsp; &nbsp; memoResult.Text = MyHttp.GetRequest(edtUrl.text);</div><div>&nbsp; }</div><div>&nbsp; except</div><div>&nbsp; {</div><div>&nbsp; &nbsp; ShowMessage('Bir hata oluştu! : ' + LastExceptionMessage);</div><div>&nbsp; }</div><div>&nbsp; &nbsp;</div><div>&nbsp;}</div><div>&nbsp;</div><div>&nbsp;void postClick;</div><div>&nbsp;{</div><div>&nbsp; try</div><div>&nbsp; {</div><div>&nbsp; &nbsp; str=Clomosy.StringListNew;</div><div>&nbsp; &nbsp; str.add(memoBody.Text);</div><div>&nbsp; &nbsp; memoResult.Text = MyHttp.PostRequest(edtUrl.Text,str);</div><div>&nbsp; }</div><div>&nbsp; finally</div><div>&nbsp; {</div><div>&nbsp; &nbsp; str.Clear;</div><div>&nbsp; &nbsp; MyHttp.Free;</div><div>&nbsp; }</div><div>&nbsp;}</div><div>&nbsp;</div><div>{</div><div>MyForm = TCLForm.Create(Self);</div><div><br></div><div>edtUrl = MyForm.AddNewEdit(MyForm,'edtUrl','Write Http Url');</div><div>edtUrl.TextSettings.Font.Size = 20;</div><div>edtUrl.Align = alMostTop;</div><div>edtUrl.Text = 'http://httpbin.org/post';</div><div><br></div><div>memoBody = MyForm.AddNewMemo(MyForm,'memoBody','Write Body');</div><div>memoBody.TextSettings.WordWrap = True;</div><div>memoBody.Align = alTop;</div><div>memoBody.Height = 250;</div><div><br></div><div>memoResult = MyForm.AddNewMemo(MyForm,'memoResult','');</div><div>memoResult.TextSettings.WordWrap = True;</div><div>memoResult.Align = alBottom;</div><div>memoResult.Height = 350;</div><div>memoResult.ReadOnly = True;</div><div><br></div><div><br></div><div>postBtn = MyForm.AddNewButton(MyForm,'postBtn','Post');</div><div>postBtn.TextSettings.Font.Size = 20;</div><div>postBtn.Margins.Left = 200;</div><div>postBtn.width = 150;</div><div>postBtn.Height = 50;</div><div>MyForm.AddNewEvent(postBtn,tbeOnClick,'postClick');</div><div><br></div><div>getBtn = MyForm.AddNewButton(MyForm,'getBtn','Get');</div><div>getBtn.TextSettings.Font.Size = 20;</div><div>getBtn.Margins.Right = 200;</div><div>getBtn.width = 150;</div><div>getBtn.Height = 50;</div><div>MyForm.AddNewEvent(getBtn,tbeOnClick,'getClick');</div><div><br></div><div><br></div><div>MyHttp=TclHttp.Create(Nil);</div><div>&nbsp;</div><div><br></div><div>MyForm.Run;</div><div>}</div><div><br></div></div><div></pre></td></tr></table></div><div><br></div><div>İyi günler dilerim.&nbsp;<img src="https://forum.clomosy.com.tr/smileys/smiley4.gif" border="0" alt="Big smile" title="Big smile" /></div><span style="font-size:10px"><br /><br />Düzenleyen BilalCndn - 15&nbsp;Mart&nbsp;2024 Saat 13:52</span>]]>
   </description>
   <pubDate>Thu, 14 Mar 2024 17:25:47 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=579&amp;PID=780#780</guid>
  </item> 
  <item>
   <title><![CDATA[Nasıl HTTPPost Yapacağım? : Merhaba, Clomosy ile bir proje...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=579&amp;PID=771#771</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=146">furkan</a><br /><strong>Konu:</strong> 579<br /><strong>Gönderim Zamanı:</strong> 17&nbsp;Şubat&nbsp;2024 Saat 00:46<br /><br />Merhaba, <b>Clomosy </b>ile bir proje yapacağım ve http <b>post </b>ve <b>get </b>kullanmam gerek.<b>Get </b>fonksiyonlarını gördüm ancak <b>post </b>fonksiyonlarını göremedim.<div><br></div><div><b>&nbsp;MyHttp.Post fonksiyonu var mı?</b></div><div><br></div><div><b>Nasıl kullanacağım?</b><br></div>]]>
   </description>
   <pubDate>Sat, 17 Feb 2024 00:46:27 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=579&amp;PID=771#771</guid>
  </item> 
 </channel>
</rss>