<?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 : başka unitlerden void&#039;e ulaşamama</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : başka unitlerden void&#039;e ulaşamama]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 13:14:49 +0000</pubDate>
  <lastBuildDate>Thu, 10 Jul 2025 17:40:28 +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=1075</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[başka unitlerden void&#039;e ulaşamama : Merhaba Kenan,Sorun i&#231;in;https...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1075&amp;PID=2167#2167</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=257">Emr.Erkmn</a><br /><strong>Konu:</strong> 1075<br /><strong>Gönderim Zamanı:</strong> 10&nbsp;Temmuz&nbsp;2025 Saat 17:40<br /><br />Merhaba Kenan,&nbsp;<br>Sorun için;<div><a href="https://www.docs.clomosy.com/index.php?title=TclUnit&nbsp" target="_blank" rel="nofollow">https://www.docs.clomosy.com/index.php?title=TclUnit&nbsp</a>;<br><a href="https://www.youtube.com/watch?v=6q3jpvDA8CI" target="_blank" rel="nofollow">https://www.youtube.com/watch?v=6q3jpvDA8CI</a><br><a href="https://www.youtube.com/watch?v=uoIUSwX5llo&amp;t=7s&nbsp" target="_blank" rel="nofollow">https://www.youtube.com/watch?v=uoIUSwX5llo&amp;t=7s&nbsp</a>;<br>Paylaştığım linklere göz atmanı istiyorum.<br>İyi çalışmalar.</div>]]>
   </description>
   <pubDate>Thu, 10 Jul 2025 17:40:28 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1075&amp;PID=2167#2167</guid>
  </item> 
  <item>
   <title><![CDATA[başka unitlerden void&#039;e ulaşamama : anaSayfa unitimdeki timerAc ve...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1075&amp;PID=2162#2162</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=305">yalperen</a><br /><strong>Konu:</strong> 1075<br /><strong>Gönderim Zamanı:</strong> 10&nbsp;Temmuz&nbsp;2025 Saat 15:42<br /><br /><div>anaSayfa unitimdeki timerAc ve timerKapa void'lerine başka bir unit'den ulaşmak istediğimde Unknown member identifier hatası alıyorum (ilk attığım unit: anaSayfa ikincisi settingsForm)</div><div>uses apiConnect,fonks;</div><div>var</div><div>anaSayfa : TCLForm;</div><div>sideMenu : TCLMenuFrame;</div><div>sideMenuOpenBtn, sideMenuCloseBtn, productsBtn, ordersBtn, entSettingsBtn, statisticsBtn,hepsiniGonderBtn,secilenleriGonderBtn : TClProButton;</div><div>mainVertSB : TCLVertScrollBox;</div><div>grid1 : TCLPROGrid;</div><div>enUstLabel,sureLabel : TClProLabel;</div><div>enUstPanel,productsBtnPanel,ordersBtnPanel,entSettingsBtnPanel,statisticsBtnPanel,gonderBtnPanel : TclProPanel;</div><div>productsBtnImg,ordersBtnImg,entSettingsBtnImg, statisticsBtnImg : TClProImage;</div><div>n11Rest : TCLRest;</div><div>secilenUrunlerList : TCLStringList;</div><div>timer : TCLTimer;</div><div>duration,dk,sn : Integer;</div><div><br></div><div>void openSideMenu{</div><div>&nbsp; sideMenu.visible = True;</div><div>&nbsp; CLRTMethod(sideMenu,'BringToFront');</div><div>}</div><div>void closeSideMenu{</div><div>&nbsp; sideMenu.visible = False;</div><div>&nbsp; CLRTMethod(sideMenuOpenBtn,'BringToFront');</div><div>}</div><div>void toProductList{</div><div>&nbsp; Clomosy.runUnit('productList');</div><div>}</div><div>void toStatisticsForm;</div><div>{</div><div>&nbsp; Clomosy.runUnit('statisticsForm');&nbsp;&nbsp;</div><div>}</div><div>void toSettingsForm;</div><div>{</div><div>&nbsp; Clomosy.runUnit('settingsForm');</div><div>}</div><div>void getProGrid;</div><div>&nbsp; var</div><div>&nbsp; &nbsp; Qry : TCLSQLQuery;</div><div>&nbsp; {</div><div>&nbsp; &nbsp; try&nbsp;</div><div>&nbsp; &nbsp; &nbsp; Qry = TCLSQLQuery.Create(nil);</div><div>&nbsp; &nbsp; &nbsp; Qry.connection = Clomosy.DBSQLServerConnection;</div><div>&nbsp; &nbsp; &nbsp; Qry.Sql.Text = 'SELECT REC_NO as "Ürün ID",STOK_ADI as "Ürün Adı",STOK_KODU as "Stok Kodu" FROM TBLSTOKSB2 ';</div><div>&nbsp; &nbsp; &nbsp; Qry.Open;</div><div>&nbsp; &nbsp; &nbsp; if (Qry.Found)</div><div>&nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; grid1 = anaSayfa.AddNewProGrid(mainVertSB,'grid1');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; grid1.Align = alTop;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; grid1.Options.ColumnSize.StretchAll = True;&nbsp; &nbsp; &nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; grid1.ConnectDataSet(Qry);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; grid1.AutoSizeColumns(True,100);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; grid1.Options.Selection.Mode = smNone;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; //grid1.SelectedLayoutFillColor = clAlphaColor.clHexToColor('#fffff');</div><div>&nbsp; &nbsp; &nbsp; &nbsp; grid1.ColumnCount = 4;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; anaSayfa.AddNewEvent(grid1,tbeOnProGridCellDblClick,'urunSec');</div><div>&nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; except</div><div>&nbsp; &nbsp; &nbsp; ShowMessage('&#091;01&#093; Exception Class: '+LastExceptionClassName+' Exception Message: '+LastExceptionMessage);</div><div>&nbsp; &nbsp; }</div><div>}</div><div>void hepsiniGonder;</div><div>var</div><div>&nbsp; temp,tempId : Integer;</div><div>{</div><div>&nbsp; temp = 1;</div><div>&nbsp; while(grid1.getCellValue(1,temp) &lt;&gt; '')</div><div>&nbsp; {</div><div>&nbsp; &nbsp; //ShowMessage(grid1.getCellValue(0,temp))</div><div>&nbsp; &nbsp; tempId = grid1.getCellValue(0,temp);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; apiConnect.apiGonder(n11Rest,tempId);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; temp = temp+1;</div><div>&nbsp; }</div><div>&nbsp; ShowMessage(IntToStr(temp-1) +' Adet Ürün Gönderildi');</div><div>}</div><div>void secilenleriGonder;</div><div>var</div><div>&nbsp; tempId,temp,listLen : Integer;</div><div>{</div><div>&nbsp; listLen = secilenUrunlerList.Count;</div><div>&nbsp;&nbsp;</div><div>&nbsp; if(listLen == 0)</div><div>&nbsp; &nbsp; ShowMessage('Ürün Seçiniz...');</div><div>&nbsp; listLen = listLen-1;</div><div>&nbsp; for(temp = 0 to listLen)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; tempId = StrToInt(secilenUrunlerList&#091;temp&#093;);</div><div>&nbsp; &nbsp; apiConnect.apiGonder(n11Rest,tempId);</div><div>&nbsp; }</div><div>&nbsp; if(listLen &gt;= 0 )</div><div>&nbsp; &nbsp; ShowMessage(IntToStr(listLen+1) + ' Adet Ürün Gönderildi.');</div><div>}</div><div>void urunSec;</div><div>var</div><div>&nbsp; FCol,FRow:integer;</div><div>&nbsp; FSender:TCLProGrid;</div><div>&nbsp; temp,secId : Integer;</div><div>{</div><div>&nbsp; FSender = TCLProGrid(anaSayfa.ClSender);</div><div>&nbsp; FRow = anaSayfa.ClSenderRow;</div><div>&nbsp; FCol = anaSayfa.ClSenderCol;</div><div>&nbsp;&nbsp;</div><div>&nbsp; secId = Grid1.GetCellValue(0,FRow);</div><div>&nbsp; temp = secilenUrunlerList.IndexOf(IntToStr(secId));&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; grid1.beginUpdate;</div><div>&nbsp; if(temp == -1)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; Grid1.Colors&#091;0,FRow&#093; = clAlphaColor.clHexToColor('#99b3ff');&nbsp; &nbsp;</div><div>&nbsp; &nbsp; Grid1.Colors&#091;1,FRow&#093; = clAlphaColor.clHexToColor('#99b3ff');</div><div>&nbsp; &nbsp; Grid1.Colors&#091;2,FRow&#093; = clAlphaColor.clHexToColor('#99b3ff');</div><div>&nbsp; &nbsp; Grid1.Colors&#091;3,FRow&#093; = clAlphaColor.clHexToColor('#99b3ff');</div><div>&nbsp; &nbsp; secilenUrunlerList.Add(IntToStr(secId));</div><div>&nbsp; }else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; Grid1.Colors&#091;0,FRow&#093; = clAlphaColor.clHexToColor('#ffffff');&nbsp; &nbsp;</div><div>&nbsp; &nbsp; Grid1.Colors&#091;1,FRow&#093; = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; Grid1.Colors&#091;2,FRow&#093; = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; Grid1.Colors&#091;3,FRow&#093; = clAlphaColor.clHexToColor('#ffffff');</div><div>&nbsp; &nbsp; secilenUrunlerList.Delete(temp);&nbsp;</div><div>&nbsp; }</div><div>&nbsp; grid1.EndUpdate;</div><div>}</div><div>void timerShow;</div><div>{</div><div>&nbsp; Dec(duration);</div><div>&nbsp; if(duration == 0)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; duration = 600;</div><div>&nbsp; &nbsp; hepsiniGonder;</div><div>&nbsp; }else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; dk = (duration div 60);</div><div>&nbsp; &nbsp; sn = (duration mod 60);</div><div>&nbsp; &nbsp; sureLabel.Caption = fonks.sifirEkle(dk)+'.'+fonks.sifirEkle(sn);</div><div>&nbsp; }</div><div>}</div><div>void timerAc;</div><div>{</div><div>&nbsp; timer.enabled = true;</div><div>}</div><div>void timerKapat;</div><div>{</div><div>&nbsp; timer.enabled = False;</div><div>}</div><div><br></div><div>{</div><div>&nbsp; anaSayfa = TCLForm.Create(self);</div><div>&nbsp; anaSayfa.SetFormColor('#f4f6f8', '', clGNone);</div><div>&nbsp; anaSayfa.btnFormMenu.Visible = False;</div><div>&nbsp; anaSayfa.formwaiting.visible = False;</div><div>&nbsp; if(Clomosy.PlatformIsMobile)</div><div>&nbsp; anaSayfa.LytTopBar.Visible = False;</div><div>&nbsp;&nbsp;</div><div>&nbsp; sideMenu = anaSayfa.AddNewMenuFrame(anaSayfa,'sideMenu');</div><div>&nbsp; sideMenu.align = alContents;</div><div>&nbsp; sideMenu.clMenuPosition = clLeft;</div><div>&nbsp; sideMenu.visible = False;</div><div>&nbsp;&nbsp;</div><div>&nbsp; n11Rest = TCLRest.Create;</div><div>&nbsp; n11Rest.BaseUrl = 'http://localhost:5144/';</div><div>&nbsp; n11Rest.Resource = 'api/clomosyBaglan/UrunIdAl';</div><div>&nbsp;</div><div>&nbsp; secilenUrunlerList = Clomosy.StringListNew;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; duration = 600;</div><div><br></div><div>&nbsp; /*--------------------------------------------------------*/&nbsp;&nbsp;</div><div><br></div><div>&nbsp; enUstPanel = anaSayfa.AddNewProPanel(anaSayfa, 'enUstPanel');</div><div>&nbsp; enUstPanel.align = alMostTop;</div><div>&nbsp; enUstPanel.clprosettings.BackGroundColor = clalphaColor.clhextocolor('#2d3e50');</div><div>&nbsp; enUstPanel.height = 50;</div><div>&nbsp; enUstPanel.setclprosettings(enUstPanel.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/</div><div>&nbsp;&nbsp;</div><div>&nbsp; enUstLabel = anaSayfa.AddNewProLabel(enUstPanel, 'enUstLabel', 'Proje');</div><div>&nbsp; //enUstLabel.clprosettings.BackGroundColor = clalphaColor.clhextocolor('#2d3e50');</div><div>&nbsp; //enUstLabel.Align = alMostTop;</div><div>&nbsp; //enUstLabel.width = anaSayfa.clwidth;</div><div>&nbsp; enUstLabel.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; enUstLabel.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; enUstLabel.clProSettings.FontColor = clalphaColor.clwhite;</div><div>&nbsp; enUstLabel.clprosettings.fontsize = 24;</div><div>&nbsp; enUstLabel.align = alRight;</div><div>&nbsp; enUstLabel.setclprosettings(enUstLabel.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/</div><div>&nbsp;&nbsp;</div><div>&nbsp; sideMenuOpenBtn = anaSayfa.AddNewProButton(enUstPanel, 'sideMenuOpenBtn', '');</div><div>&nbsp; anaSayfa.SetImage(sideMenuOpenBtn,'<a href="https://resmim.net/cdn/2025/06/27/Tu0gmx.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/06/27/Tu0gmx.png</a>');</div><div>&nbsp; sideMenuOpenBtn.align = alLeft;</div><div>&nbsp; sideMenuOpenBtn.width = sideMenuOpenBtn.width/2.5;</div><div>&nbsp; sideMenuOpenBtn.margins.left = 10;</div><div>&nbsp; sideMenuOpenBtn.setclprosettings(sideMenuOpenBtn.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.AddNewEvent(sideMenuOpenBtn,tbeOnClick,'openSideMenu');</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/</div><div>&nbsp;&nbsp;</div><div>&nbsp; sideMenuCloseBtn = anaSayfa.AddNewProButton(sideMenu.vertScrollBox,'sideMenuCloseBtn','');</div><div>&nbsp; anaSayfa.SetImage(sideMenuCloseBtn,'<a href="https://resmim.net/cdn/2025/06/27/Tu4Epi.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/06/27/Tu4Epi.png</a>');</div><div>&nbsp; sideMenuCloseBtn.width = sideMenuCloseBtn.width/2.5;</div><div>&nbsp; sideMenuCloseBtn.align = alLeft;</div><div>&nbsp; sideMenuCloseBtn.margins.bottom = sideMenu.height/1.2;</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.AddNewEvent(sideMenuCloseBtn,tbeOnClick,'closeSideMenu');</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/</div><div>&nbsp;&nbsp;</div><div>&nbsp; productsBtnPanel = anaSayfa.AddNewProPanel(sideMenu.vertScrollBox,'productsBtnPanel')</div><div>&nbsp; productsBtnPanel.align = alCenter;</div><div>&nbsp; productsBtnPanel.margins.bottom = 300;</div><div>&nbsp;&nbsp;</div><div>&nbsp; productsBtn = anaSayfa.AddNewProButton(productsBtnPanel,'productsBtn','Ürünlerim');</div><div>&nbsp; productsBtn.clprosettings.fontsize = 20;</div><div>&nbsp; productsBtn.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; enUstLabel.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; productsBtn.margins.right = 70;</div><div>&nbsp; productsBtn.setclprosettings(productsBtn.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.AddNewEvent(productsBtn,tbeOnClick,'toProductList');</div><div>&nbsp;&nbsp;</div><div>&nbsp; productsBtnImg = anaSayfa.AddNewProImage(productsBtnPanel, 'productsBtnImg');</div><div>&nbsp; anaSayfa.setImage(productsBtnImg,'<a href="https://resmim.net/cdn/2025/06/27/Tu5gzi.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/06/27/Tu5gzi.png</a>');</div><div>&nbsp; productsBtnImg.align = alLeft;</div><div>&nbsp; productsBtnImg.width = 20;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/</div><div>&nbsp;&nbsp;</div><div>&nbsp; ordersBtnPanel = anaSayfa.AddNewProPanel(sideMenu.vertScrollBox,'ordersBtnPanel')</div><div>&nbsp; ordersBtnPanel.align = alCenter;</div><div>&nbsp; ordersBtnPanel.margins.bottom = 150;</div><div>&nbsp;&nbsp;</div><div>&nbsp; ordersBtn = anaSayfa.AddNewProButton(ordersBtnPanel,'ordersBtn','Siparişler');</div><div>&nbsp; ordersBtn.clprosettings.fontsize = 20;</div><div>&nbsp; ordersBtn.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; ordersBtn.margins.right = 70;</div><div>&nbsp; ordersBtn.setclprosettings(ordersBtn.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; ordersBtnImg = anaSayfa.AddNewProImage(ordersBtnPanel, 'ordersBtnImg');</div><div>&nbsp; anaSayfa.setImage(ordersBtnImg,'<a href="https://resmim.net/cdn/2025/06/27/Tus891.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/06/27/Tus891.png</a>');</div><div>&nbsp; ordersBtnImg.align = alLeft;</div><div>&nbsp; ordersBtnImg.width = 20;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/</div><div>&nbsp;&nbsp;</div><div>&nbsp; entSettingsBtnPanel = anaSayfa.AddNewProPanel(sideMenu.vertScrollBox,'entSettingsBtnPanel')</div><div>&nbsp; entSettingsBtnPanel.align = alCenter;</div><div>&nbsp;&nbsp;</div><div>&nbsp; entSettingsBtn = anaSayfa.AddNewProButton(entSettingsBtnPanel,'entSettingsBtn','Ayarlar');</div><div>&nbsp; entSettingsBtn.clprosettings.fontsize = 20;</div><div>&nbsp; entSettingsBtn.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; enUstLabel.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; entSettingsBtn.margins.right = 70;</div><div>&nbsp; entSettingsBtn.setclprosettings(entSettingsBtn.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; entSettingsBtnImg = anaSayfa.AddNewProImage(entSettingsBtnPanel, 'entSettingsBtnImg');</div><div>&nbsp; anaSayfa.setImage(entSettingsBtnImg,'<a href="https://resmim.net/cdn/2025/06/27/Tui6WL.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/06/27/Tui6WL.png</a>');</div><div>&nbsp; entSettingsBtnImg.align = alLeft;</div><div>&nbsp; entSettingsBtnImg.width = 20;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.AddNewEvent(entSettingsBtn,tbeOnClick,'toSettingsForm')</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; statisticsBtnPanel = anaSayfa.AddNewProPanel(sideMenu.vertScrollBox,'statisticsBtnPanel')</div><div>&nbsp; statisticsBtnPanel.align = alCenter;</div><div>&nbsp; statisticsBtnPanel.margins.top = 150;</div><div>&nbsp;&nbsp;</div><div>&nbsp; statisticsBtn = anaSayfa.AddNewProButton(statisticsBtnPanel,'statisticsBtn','İstatistikler');</div><div>&nbsp; statisticsBtn.clprosettings.fontsize = 20;</div><div>&nbsp; statisticsBtn.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; enUstLabel.clProSettings.FontVertAlign = palCenter;</div><div>&nbsp; statisticsBtn.margins.right = 70;</div><div>&nbsp; statisticsBtn.setclprosettings(statisticsBtn.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; statisticsBtnImg = anaSayfa.AddNewProImage(statisticsBtnPanel, 'statisticsBtnImg');</div><div>&nbsp; anaSayfa.setImage(statisticsBtnImg,'<a href="https://resmim.net/cdn/2025/06/27/Tu4T62.png" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/06/27/Tu4T62.png</a>');</div><div>&nbsp; statisticsBtnImg.align = alLeft;</div><div>&nbsp; statisticsBtnImg.width = 20;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.AddNewEvent(statisticsBtn,tbeOnClick,'toStatisticsForm');</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/</div><div>&nbsp;&nbsp;</div><div>&nbsp; mainVertSB = anaSayfa.AddNewVertScrollBox(anaSayfa,'mainVertSB');</div><div>&nbsp; mainVertSB.Align = alClient;</div><div>&nbsp; getProGrid;</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; gonderBtnPanel = anaSayfa.AddNewProPanel(anaSayfa,'gonderBtnPanel');</div><div>&nbsp; gonderBtnPanel.Align = alBottom;</div><div>&nbsp; gonderBtnPanel.margins.bottom = 100;</div><div>&nbsp; gonderBtnPanel.height = 50;</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; hepsiniGonderBtn = anaSayfa.AddNewProButton(gonderBtnPanel,'hepsiniGonderBtn','Hepsini Gönder');</div><div>&nbsp; hepsiniGonderBtn.Align = alRight;</div><div>&nbsp; hepsiniGonderBtn.margins.right = 50;</div><div>&nbsp; hepsiniGonderBtn.height = 100;</div><div>&nbsp; hepsiniGonderBtn.width = 300;</div><div>&nbsp; hepsiniGonderBtn.clProSettings.IsRound = True;</div><div>&nbsp; hepsiniGonderBtn.clProSettings.RoundWidth = 20;</div><div>&nbsp; hepsiniGonderBtn.clProSettings.RoundHeight = 20;</div><div>&nbsp; hepsiniGonderBtn.clProSettings.IsTransparent = false;</div><div>&nbsp; hepsiniGonderBtn.clprosettings.fontsize = 32;</div><div>&nbsp; hepsiniGonderBtn.clprosettings.BackGroundColor = clalphaColor.clhextocolor('#d0e6e7');</div><div>&nbsp; hepsiniGonderBtn.setclprosettings(hepsiniGonderBtn.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.AddNewEvent(hepsiniGonderBtn,tbeOnClick,'hepsiniGonder');</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; secilenleriGonderBtn = anaSayfa.AddNewProButton(gonderBtnPanel,'secilenleriGonderBtn','Seçilenleri Gönder');</div><div>&nbsp; secilenleriGonderBtn.Align = alLeft;</div><div>&nbsp; secilenleriGonderBtn.margins.left = 50;</div><div>&nbsp; secilenleriGonderBtn.height = 100;</div><div>&nbsp; secilenleriGonderBtn.width = 300;</div><div>&nbsp; secilenleriGonderBtn.clProSettings.IsRound = True;</div><div>&nbsp; secilenleriGonderBtn.clProSettings.RoundWidth = 20;</div><div>&nbsp; secilenleriGonderBtn.clProSettings.RoundHeight = 20;</div><div>&nbsp; secilenleriGonderBtn.clProSettings.IsTransparent = false;</div><div>&nbsp; secilenleriGonderBtn.clprosettings.fontsize = 32;</div><div>&nbsp; secilenleriGonderBtn.clprosettings.BackGroundColor = clalphaColor.clhextocolor('#d0e6e7');</div><div>&nbsp; secilenleriGonderBtn.setclprosettings(secilenleriGonderBtn.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.AddNewEvent(secilenleriGonderBtn,tbeOnClick,'secilenleriGonder');</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; if(Clomosy.PlatformIsMobile)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; gonderBtnPanel.Align = alCenter;</div><div>&nbsp; &nbsp; gonderBtnPanel.margins.top = 150;</div><div>&nbsp; &nbsp; hepsiniGonderBtn.Align = alCenter;</div><div>&nbsp; &nbsp; secilenleriGonderBtn.Align = alCenter;</div><div>&nbsp; &nbsp; hepsiniGonderBtn.margins.bottom = 150;</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; sureLabel = anaSayfa.AddNewLabel(anaSayfa,'sureLabel','');</div><div>&nbsp; sureLabel.align = alMostBottom;</div><div>&nbsp; sureLabel.margins.left = (anasayfa.clwidth/2)-10;</div><div>&nbsp; timer = anaSayfa.AddNewTimer(anaSayfa,'timer', 1000);</div><div>&nbsp; anaSayfa.AddNewEvent(timer,tbeOnTimer,'timershow');</div><div>&nbsp;&nbsp;</div><div>&nbsp; timerAc;</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*--------------------------------------------------------*/&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.run;</div><div>}</div><div>------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</div><div><div>uses anaSayfa;</div><div>var</div><div>&nbsp; ayarlarForm : TCLForm;</div><div>&nbsp; sureliGonderimSwitch : TCLSwitch;</div><div>&nbsp; sureliGonderimLabel : TCLProLabel;</div><div>&nbsp; sureliGonderimPanel : TclProPanel;</div><div>&nbsp;&nbsp;</div><div>void sureliGonderimAyarla;</div><div>{</div><div>&nbsp; if(sureliGonderimSwitch.IsChecked == True)</div><div>&nbsp; {</div><div>&nbsp; &nbsp; anaSayfa.timerAc;</div><div>&nbsp; }</div><div>&nbsp; else</div><div>&nbsp; {</div><div>&nbsp; &nbsp; anaSayfa.timerKapat;</div><div>&nbsp; }</div><div>}</div><div><br></div><div>{</div><div><br></div><div>&nbsp; ayarlarForm = TCLForm.Create(self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; sureliGonderimPanel = ayarlarForm.AddNewProPanel(ayarlarForm, 'sureliGonderimPanel');</div><div>&nbsp; sureliGonderimPanel.align = alCenter;</div><div>&nbsp; sureliGonderimPanel.margins.bottom = 200;</div><div>&nbsp; sureliGonderimPanel.width = ayarlarForm.clwidth/2;</div><div>&nbsp;&nbsp;</div><div>&nbsp; sureliGonderimSwitch = ayarlarForm.AddNewSwitch(sureliGonderimPanel,'sureliGonderimSwitch');</div><div>&nbsp; sureliGonderimSwitch.align = alRight;</div><div>&nbsp; sureliGonderimSwitch.IsChecked = True;</div><div>&nbsp; ayarlarForm.AddNewEvent(sureliGonderimSwitch,tbeOnClick,'sureliGonderimAyarla');</div><div>&nbsp;&nbsp;</div><div>&nbsp; sureliGonderimLabel = ayarlarForm.AddNewProLabel(sureliGonderimPanel, 'sureliGonderimLabel', 'Süreli Otomatik Gönderim');</div><div>&nbsp; sureliGonderimLabel.align = alMostLeft;</div><div>&nbsp; sureliGonderimLabel.width = 250;</div><div>&nbsp; sureliGonderimLabel.clprosettings.fontsize = 20;</div><div>&nbsp; sureliGonderimLabel.setclprosettings(sureliGonderimLabel.clprosettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; anaSayfa.timerKapat;</div><div>&nbsp;&nbsp;</div><div>&nbsp; ayarlarForm.run;</div><div>}</div></div>]]>
   </description>
   <pubDate>Thu, 10 Jul 2025 15:42:50 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1075&amp;PID=2162#2162</guid>
  </item> 
 </channel>
</rss>