<?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 : TCLProPanel resize hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : TCLProPanel resize hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 16:04:19 +0000</pubDate>
  <lastBuildDate>Thu, 26 Sep 2024 10:16:38 +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=938</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[TCLProPanel resize hatası : Merhaba &#304;lknur,Telefonu &#231;evirdi&#287;in...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=938&amp;PID=1838#1838</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=142">BilalCndn</a><br /><strong>Konu:</strong> 938<br /><strong>Gönderim Zamanı:</strong> 26&nbsp;Eylül&nbsp;2024 Saat 10:16<br /><br />Merhaba İlknur,<div><br></div><div>Telefonu çevirdiğin zaman</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><div style=": rgb251, 251, 253;">ProPanel1.Height =Bform.clHeight;</div><div style=": rgb251, 251, 253;">ProPanel1.Width =Bform.clWidth;</div></div><div style=": rgb251, 251, 253;"></pre></td></tr></table></div><div style=": rgb251, 251, 253;">bu kodu tetikleyen herhangi bir işlem yok. Bir event kullanarak bu kodu tekrar tetikletirsen yeniden boyutlanacaktır. Sürekli olarak ekranın yan dönüp dönmediğini TclTimer ile kontrol edebilirsin.</div><div style=": rgb251, 251, 253;"><br></div><div style=": rgb251, 251, 253;">İyi çalışmalar dilerim.</div>]]>
   </description>
   <pubDate>Thu, 26 Sep 2024 10:16:38 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=938&amp;PID=1838#1838</guid>
  </item> 
  <item>
   <title><![CDATA[TCLProPanel resize hatası : E&#287;er telefonu dikey olarak tutup...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=938&amp;PID=1837#1837</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=238">ilknur</a><br /><strong>Konu:</strong> 938<br /><strong>Gönderim Zamanı:</strong> 25&nbsp;Eylül&nbsp;2024 Saat 11:17<br /><br /><div>Eğer telefonu dikey olarak tutup Panelin olduğu sayfaya geldikten sonra yatay çevirirsem ProPanel dikey halde kalıyor , eğer yatayda ilgili ekrana gelirsem de tam tersi oluyor . Yani kendini yeniden boyutlandıramıyor . Bunu ne ile sağlayabilirim?<br><div>ProPanel1.Height =Bform.clHeight;</div><div>ProPanel1.Width =Bform.clWidth;<br><br>----------------Tüm Kod--------------------<br><div>var&nbsp;</div><div>BForm: TclStyleForm;</div><div>btnSaveSupplier:TClProButton;</div><div>addName:TclProEdit;</div><div>addAddress:TclProEdit;</div><div>addContact:TclProEdit;</div><div>ProPanel1 : TclProPanel;</div><div><br></div><div>void InsertSupplier;</div><div>{</div><div>&nbsp; try</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.Sql.Text = '</div><div>&nbsp; &nbsp; &nbsp; INSERT INTO Supplier (name, address, contact)&nbsp;</div><div>&nbsp; &nbsp; &nbsp; VALUES('+QuotedStr(addName.Text)+',&nbsp;</div><div>&nbsp; &nbsp; &nbsp; '+QuotedStr(addAddress.Text)+',&nbsp;</div><div>&nbsp; &nbsp; &nbsp; '+QuotedStr(addContact.Text)+')';</div><div>&nbsp; &nbsp; Clomosy.DBSQLiteQuery.OpenOrExecute;</div><div>&nbsp; &nbsp; ShowMessage('Adding data to the table was successful!');</div><div>&nbsp; &nbsp; Clomosy.RunUnit('supplierListUnit');</div><div>&nbsp; &nbsp; BForm.clHide;</div><div>&nbsp; except</div><div>&nbsp; &nbsp; ShowMessage('Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>}</div><div>{</div><div>&nbsp; BForm=TclStyleForm.Create(Self);</div><div>&nbsp; ProPanel1=BForm.AddNewProPanel(BForm,'ProPanel1');</div><div>&nbsp; ProPanel1.Height =Bform.clHeight;</div><div>&nbsp; ProPanel1.Width =Bform.clWidth;</div><div>&nbsp; ProPanel1.clProSettings.BorderColor = clAlphaColor.clHexToColor('#fabd2');</div><div>&nbsp; ProPanel1.clProSettings.RoundHeight = 10;</div><div>&nbsp; ProPanel1.clProSettings.RoundWidth = 10;</div><div>&nbsp; ProPanel1.clProSettings.BorderWidth = 2;</div><div>&nbsp; ProPanel1.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; ProPanel1.clProSettings.IsRound = True;</div><div>&nbsp; ProPanel1.SetclProSettings(ProPanel1.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; addName=Bform.AddNewProEdit(ProPanel1,'addName', 'Tedarikçi adını giriniz: ');</div><div>&nbsp; addName.Align=alTop;</div><div>&nbsp; addName.margins.Top=Bform.clHeight/10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; addAddress=Bform.AddNewProEdit(ProPanel1,'addAddress', 'Tedarikçi adresini giriniz: ');</div><div>&nbsp; addAddress.Align=alTop;</div><div>&nbsp; addAddress.margins.Top=Bform.clHeight/10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; addContact=Bform.AddNewProEdit(ProPanel1,'addContact', 'Tedarikçi iletişim giriniz: ');</div><div>&nbsp; addContact.Align=alTop;</div><div>&nbsp; addContact.margins.Top=Bform.clHeight/10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; btnSaveSupplier=Bform.AddNewProButton(ProPanel1,'btnSaveSupplier', 'Tedarikçi Kaydet');</div><div>&nbsp; btnSaveSupplier.Align=alBottom;</div><div>&nbsp; btnSaveSupplier.margins.Bottom=(Bform.clHeight/10)*2;</div><div><br></div><div>&nbsp; Bform.AddNewEvent(btnSaveSupplier,tbeOnClick,'InsertSupplier');</div><div>&nbsp; Bform.Run;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>}<br>--------------------------------</div></div></div>]]>
   </description>
   <pubDate>Wed, 25 Sep 2024 11:17:25 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=938&amp;PID=1837#1837</guid>
  </item> 
 </channel>
</rss>