<?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 : key code table doğru mu?</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : key code table doğru mu?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 13:00:29 +0000</pubDate>
  <lastBuildDate>Thu, 09 May 2024 16:56:05 +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=590</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[key code table doğru mu? : te&#351;ekk&#252;rler sorun &#231;&#246;z&#252;ld&#252; ]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=590&amp;PID=800#800</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=161">umutbilici</a><br /><strong>Konu:</strong> 590<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Mayıs&nbsp;2024 Saat 16:56<br /><br />teşekkürler sorun çözüldü]]>
   </description>
   <pubDate>Thu, 09 May 2024 16:56:05 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=590&amp;PID=800#800</guid>
  </item> 
  <item>
   <title><![CDATA[key code table doğru mu? : Merhaba Umut,clSenderKeyChar &#246;zelli&#287;i...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=590&amp;PID=798#798</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 590<br /><strong>Gönderim Zamanı:</strong> 09&nbsp;Mayıs&nbsp;2024 Saat 09:51<br /><br />Merhaba Umut,<div><br></div><div><b>clSenderKeyChar</b> özelliği alfabetik, numerik ve sembol tuşları için yani yazılabilir karakter tuşları için kullanılır. Bu tuşların kodlarına '<b>ASCII Printable Characters</b>' yazarak ulaşabilirsin. Burada dikkat etmen gereken bir durum var. Tuşların karakterini baz aldığımız için büyük harf ve küçük harf kodları birbirinden farklı oluyor. Kullanıcının 'CapsLock' tuşu açık olduğu zaman problem yaşamaması için her iki kodu da kullanmalısın. Bunların dışında kalan yani kontrol tuşları dediğimiz(ctrl, shift, ok tuşları vb.) tuşlarda ise <b>clSenderKey</b> özelliği kullanılır. Bakmış olduğun tablo bu tuşlar için doğru. Eğer tablolardan bakmak kafa karıştırıcı gelirse ShowMessage(clSenderKey + '' + clSenderKeyChar); yazarak bastığın tuşun kodunu mesaj kutusu ile görebilirsin. Aşağıda bu duruma göre kodunun düzenlenmiş halini bulabilirsin.</div><div><br></div><div><table width="99%"><tr><td><pre class="BBcode">void oktuslari</div><div>{</div><div>&nbsp; if(anaform.clSenderKey == 37) //sol ok tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;ShowMessage('solagit');</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if(anaform.clSenderKey == 39) //sağ ok tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;ShowMessage('sagagit');</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if(anaform.clSenderKey == 38) //yukarı ok tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;ShowMessage('yukarigit');</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if(anaform.clSenderKey == 40) //aşağı ok tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;ShowMessage('asagigit');</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if((anaform.clSenderKeyChar == 43) || (anaform.clSenderKeyChar == 98) || (anaform.clSenderKeyChar == 66))//+ veya b veya B tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;ShowMessage('buyultme')</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if((anaform.clSenderKeyChar == 45) || (anaform.clSenderKeyChar == 107) || (anaform.clSenderKeyChar == 75))//- veya k veya K tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;ShowMessage('kucultme');</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;ShowMessage('Lütfen Aşağıdaki Butonları Kullanınız'#13'Hareket Ettirmek İçin: Ok Tuşları'#13'Büyütmek İçin: B veya + (numpad)'#13'Küçültmek İçin : K veya - (numpad)');</div><div>&nbsp; &nbsp;}</div><div>}</pre></td></tr></table></div><div><br></div><div>Sorunun çözüme ulaşıp ulaşmadığı ile ilgili geri dönüşünü bekliyorum.</div><div>İyi çalışmalar diliyorum.</div>]]>
   </description>
   <pubDate>Thu, 09 May 2024 09:51:23 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=590&amp;PID=798#798</guid>
  </item> 
  <item>
   <title><![CDATA[key code table doğru mu? : klavyedeki belirli tu&#351;larla belirdi...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=590&amp;PID=796#796</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=161">umutbilici</a><br /><strong>Konu:</strong> 590<br /><strong>Gönderim Zamanı:</strong> 08&nbsp;Mayıs&nbsp;2024 Saat 19:41<br /><br /><div>klavyedeki belirli tuşlarla belirdi prosedürlere gitmek istiyorum&nbsp; key code table nerden bakmalıyım</div><div><a href="https://www.toptal.com/developers/keycode/table" target="_blank" rel="nofollow">https://www.toptal.com/developers/keycode/table</a> bu siteden bakmıştım ama yanlış olduğunu farkettim&nbsp;</div><div><br></div><div>void oktuslari</div><div>{</div><div>&nbsp; if(anaform.clSenderKeyChar == 37) //sol ok tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;solagit</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if(anaform.clSenderKeyChar == 39) //sağ ok tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;sagagit</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if(anaform.clSenderKeyChar == 38) //yukarı ok tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;yukarigit</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if(anaform.clSenderKeyChar == 40) //aşağı ok tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;asagigit</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if((anaform.clSenderKeyChar == 107) || (anaform.clSenderKeyChar == 66))//+(numpad) veya b tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;buyultme</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else if((anaform.clSenderKeyChar == 109) || (anaform.clSenderKeyChar == 75))//-(numpad) veya k tuşu</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;kucultme</div><div>&nbsp; &nbsp;}</div><div>&nbsp; &nbsp;else</div><div>&nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp;ShowMessage('Lütfen Aşağıdaki Butonları Kullanınız'#13'Hareket Ettirmek İçin: Ok Tuşları'#13'Büyütmek İçin: B veya + (numpad)'#13'Küçültmek İçin : K veya - (numpad)');</div><div>&nbsp; &nbsp;}</div><div>}</div><div><br></div>]]>
   </description>
   <pubDate>Wed, 08 May 2024 19:41:46 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=590&amp;PID=796#796</guid>
  </item> 
 </channel>
</rss>