<?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 : Checkbox hakkında</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Checkbox hakkında]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 16:12:47 +0000</pubDate>
  <lastBuildDate>Wed, 26 Feb 2025 13:46:22 +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=955</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[Checkbox hakkında : Merhaba ElifA&#351;a&#287;&#305;da yer alan linki...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=955&amp;PID=1950#1950</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 955<br /><strong>Gönderim Zamanı:</strong> 26&nbsp;Şubat&nbsp;2025 Saat 13:46<br /><br />Merhaba Elif&nbsp;<div>Aşağıda yer alan linki inceler misin:</div><div><a href="https://www.docs.clomosy.com/index.php?title=TclCheckBox" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=TclCheckBox</a></div><div><br></div>]]>
   </description>
   <pubDate>Wed, 26 Feb 2025 13:46:22 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=955&amp;PID=1950#1950</guid>
  </item> 
  <item>
   <title><![CDATA[Checkbox hakkında : if (caricheckbox7.isChecked &amp;amp;&amp;amp;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=955&amp;PID=1880#1880</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=236">ElifKarabacak</a><br /><strong>Konu:</strong> 955<br /><strong>Gönderim Zamanı:</strong> 07&nbsp;Kasım&nbsp;2024 Saat 14:36<br /><br /><div>&nbsp;if (caricheckbox7.isChecked &amp;&amp; caricheckbox8.isChecked)</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp;tutstr= 'A,S';</div><div>&nbsp; &nbsp;}</div><div>&nbsp; else if (caricheckbox7.isChecked)&nbsp;</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;tutstr='A';</div><div>&nbsp; &nbsp;}</div><div>&nbsp; else if (caricheckbox8.isChecked)</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;tutstr='S';</div><div>&nbsp; &nbsp;}</div><div>&nbsp; caritipi=tutstr;</div><div><br></div><div>SQL kodumun hepsi aşağıdaki gibi&nbsp;<br><div><br></div><div>DECLARE @CARI_TIPI NVARCHAR(50) = '+quotedstr(caritipi)+'</div><div>DECLARE @BELGE_TIPI NVARCHAR(50) = '+quotedstr(caribelgetipi)+'</div><div>DECLARE @TARIH1 NVARCHAR (50) = '+quotedstr(tarih1)+'</div><div>DECLARE @TARIH2 NVARCHAR (50) = '+quotedstr(tarih2)+'</div><div>DECLARE @VADE_TARIH1 NVARCHAR(50) = '+quotedstr(tarih3)+'</div><div>DECLARE @VADE_TARIH2 NVARCHAR (50) = '+quotedstr(tarih4)+'</div><div>DECLARE @BAKIYE_TOLERANSI NVARCHAR(50) = '+quotedstr(bakiyetoleransi)+'</div><div>DECLARE @MAX_BAKIYE_TOLERANSI NVARCHAR(50)= '+quotedstr(maxbakiyetoleransi)+'</div><div><br></div><div><br></div><div>SELECT TOP 100 PERCENT TBLCARISB.REC_NO, TBLCARISB.CARI_KODU,TBLCARISB.CARI_ADI&nbsp; , SUM(BORC) AS TOPLAM_BORC, SUM(ALACAK) AS TOPLAM_ALACAK&nbsp; ,&nbsp;</div><div>CASE WHEN SUM(BORC-ALACAK) &gt; 0 THEN SUM(BORC-ALACAK) ELSE 0 END&nbsp; AS BORC_BAKIYE&nbsp; , CASE WHEN SUM(BORC-ALACAK) &lt; 0 THEN ABS(SUM(BORC-ALACAK))&nbsp;</div><div>ELSE 0 END AS ALACAK_BAKIYE&nbsp; , MAX(TARIH) AS SON_ISLEM_TARIH&nbsp; FROM &#091;PRG_VIEW_CARIHAREKET&#093; WITH (NOLOCK),&nbsp; &#091;TBLCARISB&#093; WITH (NOLOCK)&nbsp;</div><div>WHERE PRG_VIEW_CARIHAREKET.CARI_KODU = TBLCARISB.CARI_KODU&nbsp; &nbsp;AND TBLCARISB.CARI_TIPI IN (@CARI_TIPI)&nbsp; &nbsp; &nbsp;AND ISNULL(PRG_VIEW_CARIHAREKET.SUBE_KODU,0)</div><div>IN (ISNULL(PRG_VIEW_CARIHAREKET.SUBE_KODU,0)) AND TARIH BETWEEN TRY_CONVERT(DATE, @TARIH1, 104) AND TRY_CONVERT(DATE, @TARIH2, 104)&nbsp;&nbsp;</div><div>AND VADE_TARIH BETWEEN TRY_CONVERT(DATE, @VADE_TARIH1, 104) AND TRY_CONVERT(DATE, @VADE_TARIH2, 104)&nbsp; GROUP BY TBLCARISB.REC_NO, TBLCARISB.CARI_KODU,TBLCARISB.CARI_ADI&nbsp; HAVING @BELGE_TIPI = @BELGE_TIPI</div><div>AND ABS(SUM(BORC)-SUM(ALACAK)) &gt;@BAKIYE_TOLERANSI&nbsp; AND ABS(SUM(BORC)-SUM(ALACAK)) &lt; @MAX_BAKIYE_TOLERANSI&nbsp; ORDER BY TBLCARISB.CARI_ADI<br><br>caritipi ni yukarıdaki sql koduna gönderiyorum. Ama hem A hem de S seçili olduğunda&nbsp; &nbsp;AND TBLCARISB.CARI_TIPI IN ('A','S') orijinali bu olan sorgunun ('A','S') bu kısmına nasıl caritipi değişkenini gönderebilirim?</div></div>]]>
   </description>
   <pubDate>Thu, 07 Nov 2024 14:36:56 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=955&amp;PID=1880#1880</guid>
  </item> 
 </channel>
</rss>