<?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 : ProLabel&#039;ın Textini Değiştiremiyorum</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Clomosy ile de&#287;i&#351;ken kullan&#305;m&#305; : ProLabel&#039;ın Textini Değiştiremiyorum]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Apr 2026 03:03:54 +0000</pubDate>
  <lastBuildDate>Tue, 23 Sep 2025 11:16:27 +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=1196</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[ProLabel&#039;ın Textini Değiştiremiyorum : Merhaba G&#252;ney,Birka&#231; hata ve d&#252;zeltme...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1196&amp;PID=2556#2556</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> 1196<br /><strong>Gönderim Zamanı:</strong> 23&nbsp;Eylül&nbsp;2025 Saat 11:16<br /><br />Merhaba Güney,&nbsp;<br>Birkaç hata ve düzeltme ile beraber kodu aşağıda bırakıyorum;<br><br><div>var</div><div>&nbsp; text,chars: string;</div><div>&nbsp;&nbsp;</div><div>&nbsp; UseUppercase: Boolean;</div><div>&nbsp; UseLowercase: Boolean;</div><div>&nbsp; UseNumbers: Boolean;</div><div>&nbsp; UseSymbols: Boolean;</div><div>&nbsp; AllSymbols: Boolean;</div><div>&nbsp; passLength: Integer;</div><div><br></div><div>&nbsp; MainForm:TclForm;</div><div>&nbsp; MainPPanel, AyarlarPanel, SwitchPPanel, SwitchLabelPPanel, ButtonsPanel, BottomPanel : TclProPanel;</div><div>&nbsp; InputPEdit : TclProEdit;</div><div>&nbsp; CreatePButton, GetFilePButton, CopyPButton : TClProButton;</div><div>&nbsp; BaslikPLabel, OutputPLabel, UppercaseLabel, LowercaseLabel, NumbersLabel, SymbolsLabel, AllSymbolsLabel : TClProLabel;</div><div>&nbsp; UppercaseSwitch, LowercaseSwitch, NumbersSwitch, SymbolsSwitch, AllSymbolsSwitch : TclSwitch;</div><div>&nbsp; LengthCombo : TCLComboBox;</div><div>&nbsp;&nbsp;</div><div>&nbsp; encryptedValue: string;</div><div>&nbsp; decryptedValue: string;</div><div>&nbsp;&nbsp;</div><div>function CreateCharSet:String</div><div>var</div><div>&nbsp; availableChars,UppercaseChars,LowercaseChars: String;</div><div>&nbsp; NumberChars,SymbolChars,ExtendedSymbols,AllSymbolChars :String;</div><div>{</div><div>&nbsp; UppercaseChars= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';</div><div>&nbsp; LowercaseChars= 'abcdefghijklmnopqrstuvwxyz';</div><div>&nbsp; NumberChars= '0123456789';</div><div>&nbsp; SymbolChars = '!@#$%^&amp;*()_+-={}&#091;&#093;|:;,.?';</div><div>&nbsp; AllSymbolChars = '!"#$%&amp;()*+,-./:;&lt;=&gt;?@&#091;\\&#093;^_`{|}~';</div><div>&nbsp;&nbsp;</div><div>&nbsp; availableChars = '';</div><div>&nbsp;&nbsp;</div><div>&nbsp; if (UseUppercase == True) {</div><div>&nbsp; &nbsp;availableChars = availableChars + UppercaseChars;</div><div>&nbsp; }</div><div>&nbsp; if (UseLowercase == True) {</div><div>&nbsp; &nbsp; availableChars = availableChars + LowercaseChars;</div><div>&nbsp; }</div><div>&nbsp; if (UseNumbers == True) {</div><div>&nbsp; &nbsp; availableChars = availableChars + NumberChars;</div><div>&nbsp; }</div><div>&nbsp; if (UseSymbols == True) {</div><div>&nbsp; &nbsp; availableChars = availableChars + SymbolChars;</div><div>&nbsp; }</div><div>&nbsp; if (AllSymbols == True) {</div><div>&nbsp; &nbsp; availableChars = availableChars + AllSymbolChars;</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; Result = availableChars;</div><div>}&nbsp;&nbsp;</div><div><br></div><div>function CreatePass(availableChars: String; passLength: Integer):String</div><div>var</div><div>&nbsp; tempPass : String;</div><div>&nbsp; tempChar: Char;</div><div>&nbsp; i, randint: Integer;</div><div>{</div><div>&nbsp; tempPass = '';</div><div>&nbsp; i = 1;</div><div>&nbsp; while(i &lt;= passLength){</div><div>&nbsp; &nbsp; randint = clMath.GenerateRandom(1, Length(availableChars));</div><div>&nbsp; &nbsp; tempChar = Copy(availableChars, randint, 1);</div><div>&nbsp; &nbsp; tempPass = tempPass + tempChar;</div><div>&nbsp; &nbsp; i = i + 1;</div><div>&nbsp; }</div><div>&nbsp; Result = tempPass;</div><div>}&nbsp;</div><div>void CChecker{</div><div>&nbsp; UseUppercase = False;</div><div>&nbsp; UseLowercase = False;</div><div>&nbsp; UseNumbers = False;</div><div>&nbsp; UseSymbols = False;</div><div>&nbsp; AllSymbols = False;</div><div>&nbsp;&nbsp;</div><div>&nbsp; if(UppercaseSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; UseUppercase = True;</div><div>&nbsp; }</div><div>&nbsp; if(LowercaseSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; UseLowercase = True;</div><div>&nbsp; }</div><div>&nbsp; if(NumbersSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; UseNumbers = True;</div><div>&nbsp; }</div><div>&nbsp; if(SymbolsSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; UseSymbols = True;</div><div>&nbsp; }</div><div>&nbsp; if(AllSymbolsSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; AllSymbols = True;</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; passLength = LengthCombo.ItemIndex + 1;</div><div>}</div><div>void WritePass{</div><div>&nbsp; CChecker;</div><div>&nbsp; chars = CreateCharSet;</div><div>&nbsp; if (Length(chars) &gt; 0) {</div><div>&nbsp; &nbsp; OutputPLabel.Text = CreatePass(chars, passLength);</div><div>&nbsp; } else {</div><div>&nbsp; &nbsp; OutputPLabel.Text = 'Lütfen en az bir seçenek işaretleyin';</div><div>&nbsp; }</div><div>}</div><div><br></div><div><br></div><div><br></div><div>void MainPPanelV {</div><div>&nbsp; MainPPanel=MainForm.AddNewProPanel(MainForm,'MainPPanel');</div><div>&nbsp; MainPPanel.Align = alCenter;</div><div>&nbsp; MainPPanel.Width = 370;</div><div>&nbsp; MainPPanel.Height = 330;</div><div>&nbsp; MainPPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; MainPPanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; MainPPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; MainPPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; MainPPanel.clProSettings.IsRound = True;</div><div>&nbsp; MainPPanel.SetclProSettings(MainPPanel.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void AyarlarPanelV {</div><div>&nbsp; AyarlarPanel=MainForm.AddNewProPanel(MainPPanel,'AyarlarPanel');</div><div>&nbsp; AyarlarPanel.Align = alMostTop;</div><div>&nbsp; AyarlarPanel.Width = 330;</div><div>&nbsp; AyarlarPanel.Height = 230;</div><div>&nbsp; AyarlarPanel.Margins.Top = 10;</div><div>&nbsp; AyarlarPanel.Margins.Left = 10;</div><div>&nbsp; AyarlarPanel.Margins.Right = 10;</div><div>&nbsp; AyarlarPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; AyarlarPanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; AyarlarPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; AyarlarPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; AyarlarPanel.clProSettings.IsRound = True;</div><div>&nbsp; AyarlarPanel.SetclProSettings(AyarlarPanel.clProSettings);</div><div>}</div><div><br></div><div>void SwitchPPanelV {</div><div>&nbsp; SwitchPPanel=MainForm.AddNewProPanel(AyarlarPanel,'SwitchPPanel');</div><div>&nbsp; SwitchPPanel.Align = alMostLeft;</div><div>&nbsp; SwitchPPanel.Width = 60;</div><div>&nbsp; SwitchPPanel.Height = 200;</div><div>&nbsp; SwitchPPanel.Margins.Top = 10;</div><div>&nbsp; SwitchPPanel.Margins.Bottom = 10;</div><div>&nbsp; SwitchPPanel.Margins.Left = 10;</div><div>&nbsp; SwitchPPanel.Margins.Right = 10;</div><div>&nbsp; SwitchPPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; SwitchPPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; SwitchPPanel.clProSettings.IsRound = True;</div><div>&nbsp; SwitchPPanel.SetclProSettings(SwitchPPanel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; UppercaseSwitch = MainForm.AddNewSwitch(SwitchPPanel,'UppercaseSwitch');</div><div>&nbsp; UppercaseSwitch.Align = alTop;</div><div>&nbsp; UppercaseSwitch.Height = 30;</div><div>&nbsp; UppercaseSwitch.Width = 40;</div><div>&nbsp; UppercaseSwitch.Margins.Right = 10;</div><div>&nbsp; UppercaseSwitch.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; LowercaseSwitch = MainForm.AddNewSwitch(SwitchPPanel,'LowercaseSwitch');</div><div>&nbsp; LowercaseSwitch.Align = alTop;</div><div>&nbsp; LowercaseSwitch.Height = 30;</div><div>&nbsp; LowercaseSwitch.Width = 40;</div><div>&nbsp; LowercaseSwitch.Margins.Right = 10;</div><div>&nbsp; LowercaseSwitch.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; NumbersSwitch = MainForm.AddNewSwitch(SwitchPPanel,'NumbersSwitch');</div><div>&nbsp; NumbersSwitch.Align = alTop;</div><div>&nbsp; NumbersSwitch.Height = 30;</div><div>&nbsp; NumbersSwitch.Width = 40;</div><div>&nbsp; NumbersSwitch.Margins.Right = 10;</div><div>&nbsp; NumbersSwitch.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; SymbolsSwitch = MainForm.AddNewSwitch(SwitchPPanel,'SymbolsSwitch');</div><div>&nbsp; SymbolsSwitch.Align = alTop;</div><div>&nbsp; SymbolsSwitch.Height = 30;</div><div>&nbsp; SymbolsSwitch.Width = 40;</div><div>&nbsp; SymbolsSwitch.Margins.Right = 10;</div><div>&nbsp; SymbolsSwitch.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; AllSymbolsSwitch = MainForm.AddNewSwitch(SwitchPPanel,'AllSymbolsSwitch');</div><div>&nbsp; AllSymbolsSwitch.Align = alTop;</div><div>&nbsp; AllSymbolsSwitch.Height = 30;</div><div>&nbsp; AllSymbolsSwitch.Width = 40;</div><div>&nbsp; AllSymbolsSwitch.Margins.Right = 10;</div><div>&nbsp; AllSymbolsSwitch.Margins.Bottom = 10;</div><div>}</div><div><br></div><div>void SwitchLabelPPanelV {</div><div>&nbsp; SwitchLabelPPanel=MainForm.AddNewProPanel(AyarlarPanel,'SwitchLabelPPanel');</div><div>&nbsp; SwitchLabelPPanel.Align = alLeft;</div><div>&nbsp; SwitchLabelPPanel.Width = 115;</div><div>&nbsp; SwitchLabelPPanel.Height = 200;</div><div>&nbsp; SwitchLabelPPanel.Margins.Top = 10;</div><div>&nbsp; SwitchLabelPPanel.Margins.Bottom = 10;</div><div>&nbsp; SwitchLabelPPanel.Margins.Left = 0;</div><div>&nbsp; SwitchLabelPPanel.Margins.Right = 10;</div><div>&nbsp; SwitchLabelPPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; SwitchLabelPPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; SwitchLabelPPanel.clProSettings.IsRound = True;</div><div>&nbsp; SwitchLabelPPanel.SetclProSettings(SwitchLabelPPanel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; UppercaseLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'UppercaseLabel','Uppercase');</div><div>&nbsp; UppercaseLabel.Align = alTop;</div><div>&nbsp; UppercaseLabel.Width = 100;</div><div>&nbsp; UppercaseLabel.Height = 30;</div><div>&nbsp; UppercaseLabel.Margins.Top = 0;</div><div>&nbsp; UppercaseLabel.Margins.Bottom = 6;</div><div>&nbsp; UppercaseLabel.Margins.Left = 0;</div><div>&nbsp; UppercaseLabel.Margins.Right = 0;</div><div>&nbsp; UppercaseLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; UppercaseLabel.clProSettings.FontSize = 15;</div><div>&nbsp; UppercaseLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; UppercaseLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; UppercaseLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; UppercaseLabel.SetclProSettings(UppercaseLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; LowercaseLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'LowercaseLabel','Lowercase');</div><div>&nbsp; LowercaseLabel.Align = alTop;</div><div>&nbsp; LowercaseLabel.Width = 100;</div><div>&nbsp; LowercaseLabel.Height = 30;</div><div>&nbsp; LowercaseLabel.Margins.Top = 0;</div><div>&nbsp; LowercaseLabel.Margins.Bottom = 6;</div><div>&nbsp; LowercaseLabel.Margins.Left = 0;</div><div>&nbsp; LowercaseLabel.Margins.Right = 0;</div><div>&nbsp; LowercaseLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; LowercaseLabel.clProSettings.FontSize = 15;</div><div>&nbsp; LowercaseLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; LowercaseLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; LowercaseLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; LowercaseLabel.SetclProSettings(LowercaseLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; NumbersLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'NumbersLabel','Sayılar');</div><div>&nbsp; NumbersLabel.Align = alTop;</div><div>&nbsp; NumbersLabel.Width = 100;</div><div>&nbsp; NumbersLabel.Height = 30;</div><div>&nbsp; NumbersLabel.Margins.Top = 0;</div><div>&nbsp; NumbersLabel.Margins.Bottom = 7;</div><div>&nbsp; NumbersLabel.Margins.Left = 0;</div><div>&nbsp; NumbersLabel.Margins.Right = 0;</div><div>&nbsp; NumbersLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; NumbersLabel.clProSettings.FontSize = 15;</div><div>&nbsp; NumbersLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; NumbersLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; NumbersLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; NumbersLabel.SetclProSettings(NumbersLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; SymbolsLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'SymbolsLabel','Semboller');</div><div>&nbsp; SymbolsLabel.Align = alTop;</div><div>&nbsp; SymbolsLabel.Width = 100;</div><div>&nbsp; SymbolsLabel.Height = 30;</div><div>&nbsp; SymbolsLabel.Margins.Top = 0;</div><div>&nbsp; SymbolsLabel.Margins.Bottom = 0;</div><div>&nbsp; SymbolsLabel.Margins.Left = 0;</div><div>&nbsp; SymbolsLabel.Margins.Right = 0;</div><div>&nbsp; SymbolsLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; SymbolsLabel.clProSettings.FontSize = 15;</div><div>&nbsp; SymbolsLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; SymbolsLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; SymbolsLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; SymbolsLabel.SetclProSettings(SymbolsLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; AllSymbolsLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'AllSymbolsLabel','Bütün Semboller');</div><div>&nbsp; AllSymbolsLabel.Align = alBottom;</div><div>&nbsp; AllSymbolsLabel.Width = 105;</div><div>&nbsp; AllSymbolsLabel.Height = 30;</div><div>&nbsp; AllSymbolsLabel.Margins.Top = 0;</div><div>&nbsp; AllSymbolsLabel.Margins.Bottom = 0;</div><div>&nbsp; AllSymbolsLabel.Margins.Left = 0;</div><div>&nbsp; AllSymbolsLabel.Margins.Right = 0;</div><div>&nbsp; AllSymbolsLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; AllSymbolsLabel.clProSettings.FontSize = 15;</div><div>&nbsp; AllSymbolsLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; AllSymbolsLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; AllSymbolsLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; AllSymbolsLabel.SetclProSettings(AllSymbolsLabel.clProSettings);</div><div>}</div><div><br></div><div>void ButtonsPanelV&nbsp;</div><div>var i : Integer;</div><div>{</div><div>&nbsp; ButtonsPanel=MainForm.AddNewProPanel(AyarlarPanel,'ButtonsPanel');</div><div>&nbsp; ButtonsPanel.Align = alMostRight;</div><div>&nbsp; ButtonsPanel.Width = 140;</div><div>&nbsp; ButtonsPanel.Height = 200;</div><div>&nbsp; ButtonsPanel.Margins.Top = 10;</div><div>&nbsp; ButtonsPanel.Margins.Bottom = 10;</div><div>&nbsp; ButtonsPanel.Margins.Left = 0;</div><div>&nbsp; ButtonsPanel.Margins.Right = 10;</div><div>&nbsp; ButtonsPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; ButtonsPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; ButtonsPanel.clProSettings.IsRound = True;</div><div>&nbsp; ButtonsPanel.SetclProSettings(ButtonsPanel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; LengthCombo = MainForm.AddNewComboBox(ButtonsPanel,'LengthCombo');</div><div>&nbsp; LengthCombo.Align = alMostTop;</div><div>&nbsp; LengthCombo.Width = 120;</div><div>&nbsp; LengthCombo.Margins.Top = 0;</div><div>&nbsp; LengthCombo.Margins.Left = 10;</div><div>&nbsp; LengthCombo.Margins.Right = 10;</div><div><br></div><div>&nbsp; for(i=1 to 24){</div><div>&nbsp; &nbsp; LengthCombo.AddItem(IntToStr(i),IntToStr(i));</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; CreatePButton = MainForm.AddNewProButton(ButtonsPanel,'CreatePButton','OLUŞTUR');</div><div>&nbsp; CreatePButton.Align = alTop;</div><div>&nbsp; CreatePButton.Width = 120;</div><div>&nbsp; CreatePButton.Height = 40;</div><div>&nbsp; CreatePButton.Margins.Top = 35;</div><div>&nbsp; CreatePButton.Margins.Bottom = 10;</div><div>&nbsp; CreatePButton.Margins.Left = 10;</div><div>&nbsp; CreatePButton.Margins.Right = 10;</div><div>&nbsp; CreatePButton.clProSettings.FontColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; CreatePButton.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; CreatePButton.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; CreatePButton.clProSettings.BorderWidth = 2;</div><div>&nbsp; CreatePButton.clProSettings.FontSize = 15;</div><div>&nbsp; CreatePButton.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; CreatePButton.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; CreatePButton.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; CreatePButton.clProSettings.IsFill = True;</div><div>&nbsp; CreatePButton.clProSettings.IsRound = True;</div><div>&nbsp; CreatePButton.clProSettings.RoundHeight = 5;</div><div>&nbsp; CreatePButton.clProSettings.RoundWidth = 5;</div><div>&nbsp; CreatePButton.SetclProSettings(CreatePButton.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; GetFilePButton = MainForm.AddNewProButton(ButtonsPanel,'GetFilePButton','DOSYA ÇIKART');</div><div>&nbsp; GetFilePButton.Align = alTop;</div><div>&nbsp; GetFilePButton.Width = 120;</div><div>&nbsp; GetFilePButton.Height = 40;</div><div>&nbsp; GetFilePButton.Margins.Top = 0;</div><div>&nbsp; GetFilePButton.Margins.Bottom = 0;</div><div>&nbsp; GetFilePButton.Margins.Left = 10;</div><div>&nbsp; GetFilePButton.Margins.Right = 10;</div><div>&nbsp; GetFilePButton.clProSettings.FontColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; GetFilePButton.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; GetFilePButton.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; GetFilePButton.clProSettings.BorderWidth = 2;</div><div>&nbsp; GetFilePButton.clProSettings.FontSize = 15;</div><div>&nbsp; GetFilePButton.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; GetFilePButton.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; GetFilePButton.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; GetFilePButton.clProSettings.IsFill = True;</div><div>&nbsp; GetFilePButton.clProSettings.IsRound = True;</div><div>&nbsp; GetFilePButton.clProSettings.RoundHeight = 5;</div><div>&nbsp; GetFilePButton.clProSettings.RoundWidth = 5;</div><div>&nbsp; GetFilePButton.clProSettings.WordWrap = True;</div><div>&nbsp; GetFilePButton.SetclProSettings(GetFilePButton.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void BaslikPLabelV {</div><div>&nbsp; BaslikPLabel = MainForm.AddNewProLabel(MainPPanel,'BaslikPLabel','Şifre Oluşturucu');</div><div>&nbsp; BaslikPLabel.Align = alMostTop;</div><div>&nbsp; BaslikPLabel.Width = 200;</div><div>&nbsp; BaslikPLabel.Height = 30;</div><div>&nbsp; BaslikPLabel.Margins.Top = 10;</div><div>&nbsp; BaslikPLabel.Margins.Bottom = 0;</div><div>&nbsp; BaslikPLabel.Margins.Left = 85;</div><div>&nbsp; BaslikPLabel.Margins.Right = 0;</div><div>&nbsp; BaslikPLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; BaslikPLabel.clProSettings.FontSize = 20;</div><div>&nbsp; BaslikPLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; BaslikPLabel.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; BaslikPLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; BaslikPLabel.SetclProSettings(BaslikPLabel.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void InputPEditV {</div><div>&nbsp; InputPEdit = MainForm.AddNewProEdit(AyarlarPanel,'InputPEdit','Şifre Uzunluğu Seçin');</div><div>&nbsp; InputPEdit.Align = alMostTop;</div><div>&nbsp; InputPEdit.Width = 330;</div><div>&nbsp; InputPEdit.Height = 30;</div><div>&nbsp; InputPEdit.Margins.Top = 10;</div><div>&nbsp; InputPEdit.Margins.Left = 10;</div><div>&nbsp; InputPEdit.Margins.Right = 10;</div><div>&nbsp; InputPEdit.clProSettings.FontColor = clAlphaColor.clHexToColor('#808080');</div><div>&nbsp; InputPEdit.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; InputPEdit.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; InputPEdit.clProSettings.BorderWidth = 2;</div><div>&nbsp; InputPEdit.clProSettings.FontSize = 12;</div><div>&nbsp; InputPEdit.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; InputPEdit.clProSettings.FontHorzAlign = palcenter;</div><div>&nbsp; InputPEdit.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; InputPEdit.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; InputPEdit.clProSettings.IsRound = True;</div><div>&nbsp; InputPEdit.clProSettings.RoundHeight = 10;</div><div>&nbsp; InputPEdit.clProSettings.RoundWidth = 10;</div><div>&nbsp; InputPEdit.SetclProSettings(InputPEdit.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void BottomPanelV {</div><div>&nbsp; BottomPanel=MainForm.AddNewProPanel(MainPPanel,'BottomPanel');</div><div>&nbsp; BottomPanel.Align = alMostBottom;</div><div>&nbsp; BottomPanel.Width = 330;</div><div>&nbsp; BottomPanel.Height = 30;</div><div>&nbsp; BottomPanel.Margins.Top = 10;</div><div>&nbsp; BottomPanel.Margins.Bottom = 10;</div><div>&nbsp; BottomPanel.Margins.Left = 10;</div><div>&nbsp; BottomPanel.Margins.Right = 10;</div><div>&nbsp; BottomPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; BottomPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; BottomPanel.clProSettings.IsRound = True;</div><div>&nbsp; BottomPanel.SetclProSettings(BottomPanel.clProSettings);</div><div><br></div><div>&nbsp; OutputPLabel = MainForm.AddNewProLabel(BottomPanel,'OutputPLabel','Şifre burada görünecek');</div><div>&nbsp; OutputPLabel.Align = alMostLeft;</div><div>&nbsp; OutputPLabel.Width = 230;</div><div>&nbsp; OutputPLabel.Height = 30;</div><div>&nbsp; OutputPLabel.Margins.Top = 0;</div><div>&nbsp; OutputPLabel.Margins.Bottom = 0;</div><div>&nbsp; OutputPLabel.Margins.Left = 10;</div><div>&nbsp; OutputPLabel.Margins.Right = 0;</div><div>&nbsp; OutputPLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#808080');</div><div>&nbsp; OutputPLabel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; OutputPLabel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; OutputPLabel.clProSettings.BorderWidth = 2;</div><div>&nbsp; OutputPLabel.clProSettings.FontSize = 12;</div><div>&nbsp; OutputPLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; OutputPLabel.clProSettings.FontHorzAlign = palcenter;</div><div>&nbsp; OutputPLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; OutputPLabel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; OutputPLabel.clProSettings.IsRound = True;</div><div>&nbsp; OutputPLabel.clProSettings.RoundHeight = 10;</div><div>&nbsp; OutputPLabel.clProSettings.RoundWidth = 10;</div><div>&nbsp; OutputPLabel.SetclProSettings(OutputPLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; CopyPButton = MainForm.AddNewProButton(BottomPanel,'CopyPButton','KOPYALA');</div><div>&nbsp; CopyPButton.Align = alMostRight;</div><div>&nbsp; CopyPButton.Width = 80;</div><div>&nbsp; CopyPButton.Height = 30;</div><div>&nbsp; CopyPButton.Margins.Top = 0;</div><div>&nbsp; CopyPButton.Margins.Bottom = 0;</div><div>&nbsp; CopyPButton.Margins.Left = 10;</div><div>&nbsp; CopyPButton.Margins.Right = 10;</div><div>&nbsp; CopyPButton.clProSettings.FontColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; CopyPButton.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; CopyPButton.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; CopyPButton.clProSettings.BorderWidth = 2;</div><div>&nbsp; CopyPButton.clProSettings.FontSize = 12;</div><div>&nbsp; CopyPButton.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; CopyPButton.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; CopyPButton.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; CopyPButton.clProSettings.IsFill = True;</div><div>&nbsp; CopyPButton.clProSettings.IsRound = True;</div><div>&nbsp; CopyPButton.clProSettings.RoundHeight = 5;</div><div>&nbsp; CopyPButton.clProSettings.RoundWidth = 5;</div><div>&nbsp; CopyPButton.SetclProSettings(CopyPButton.clProSettings);</div><div>}</div><div>&nbsp;&nbsp;</div><div>{</div><div>&nbsp; MainForm=TclForm.Create(self);</div><div>&nbsp; MainForm.SetFormColor('#000000', '#000000', clGNone);</div><div>&nbsp; MainForm.FormWaiting.Visible = False;</div><div>&nbsp; MainForm.BtnFormMenu.Visible = False;</div><div>&nbsp; MainForm.BtnGoBack.Visible = False;</div><div><br></div><div>&nbsp; ClRTSetProperty(MainForm,'ClientWidth',700);</div><div>&nbsp; ClRTSetProperty(MainForm,'ClientHeight',500);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainPPanelV;</div><div>&nbsp; BaslikPLabelV;</div><div>&nbsp; AyarlarPanelV;</div><div>&nbsp; SwitchPPanelV;</div><div>&nbsp; SwitchLabelPPanelV;</div><div>&nbsp; ButtonsPanelV;</div><div>&nbsp; InputPEditV;</div><div>&nbsp; BottomPanelV;</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.AddNewEvent(UppercaseSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(LowercaseSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(NumbersSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(SymbolsSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(AllSymbolsSwitch,tbeOnClick,'CChecker');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.AddNewEvent(LengthCombo,tbeOnChange,'CChecker');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.AddNewEvent(CreatePButton,tbeOnClick,'WritePass');</div><div>&nbsp; MainForm.AddNewEvent(GetFilePButton,tbeOnClick,'');</div><div>&nbsp; MainForm.AddNewEvent(CopyPButton,tbeOnClick,'');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.Run;</div><div>}</div>]]>
   </description>
   <pubDate>Tue, 23 Sep 2025 11:16:27 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1196&amp;PID=2556#2556</guid>
  </item> 
  <item>
   <title><![CDATA[ProLabel&#039;ın Textini Değiştiremiyorum : https://resmim.net/cdn/2025/09/22/j3yTzx.png ...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1196&amp;PID=2553#2553</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=344">M-Guney</a><br /><strong>Konu:</strong> 1196<br /><strong>Gönderim Zamanı:</strong> 22&nbsp;Eylül&nbsp;2025 Saat 09:51<br /><br /><a href="https://resmim.net/cdn/2025/09/22/j3yTzx.png%20" target="_blank" rel="nofollow">https://resmim.net/cdn/2025/09/22/j3yTzx.png</a>
<div><br></div>]]>
   </description>
   <pubDate>Mon, 22 Sep 2025 09:51:11 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1196&amp;PID=2553#2553</guid>
  </item> 
  <item>
   <title><![CDATA[ProLabel&#039;ın Textini Değiştiremiyorum : Bu hatay&#305; al&#305;yorum. ]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1196&amp;PID=2552#2552</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=344">M-Guney</a><br /><strong>Konu:</strong> 1196<br /><strong>Gönderim Zamanı:</strong> 22&nbsp;Eylül&nbsp;2025 Saat 09:50<br /><br /><img src="" border="0" /><br>Bu hatayı alıyorum.]]>
   </description>
   <pubDate>Mon, 22 Sep 2025 09:50:35 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1196&amp;PID=2552#2552</guid>
  </item> 
  <item>
   <title><![CDATA[ProLabel&#039;ın Textini Değiştiremiyorum : /*OutputPLabel.Text= CreatePass(chars,passLength);Bu...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1196&amp;PID=2551#2551</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=344">M-Guney</a><br /><strong>Konu:</strong> 1196<br /><strong>Gönderim Zamanı:</strong> 22&nbsp;Eylül&nbsp;2025 Saat 09:48<br /><br /><img src="" border="0" /><br><br><br>/*<div><br></div><div>OutputPLabel.Text= CreatePass(chars,passLength);<br>Bu satırda Pro Labelın Textini Değiştiremiyorum.</div><div><br></div><div><br></div><div>*/<br><br><div>var</div><div>&nbsp; text,chars: string;</div><div>&nbsp;&nbsp;</div><div>&nbsp; UseUppercase: Boolean;</div><div>&nbsp; UseLowercase: Boolean;</div><div>&nbsp; UseNumbers: Boolean;</div><div>&nbsp; UseSymbols: Boolean; //switch</div><div>&nbsp; AllSymbols: Boolean;// Use extended symbols</div><div>&nbsp; passLength: Integer; // TCLComboBox</div><div><br></div><div>&nbsp;</div><div>&nbsp; MainForm:TclForm;</div><div>&nbsp; MainPPanel, AyarlarPanel, SwitchPPanel, SwitchLabelPPanel, ButtonsPanel, BottomPanel : TclProPanel;</div><div>&nbsp; InputPEdit : TclProEdit;</div><div>&nbsp; CreatePButton, GetFilePButton, CopyPButton : TClProButton;</div><div>&nbsp; BaslikPLabel, OutputPLabel, UppercaseLabel, LowercaseLabel, NumbersLabel, SymbolsLabel, AllSymbolsLabel : TClProLabel;</div><div>&nbsp; UppercaseSwitch, LowercaseSwitch, NumbersSwitch, SymbolsSwitch, AllSymbolsSwitch : TclSwitch;</div><div>&nbsp; LengthCombo : TCLComboBox;</div><div>&nbsp;&nbsp;</div><div>&nbsp; encryptedValue: string;</div><div>&nbsp; decryptedValue: string;</div><div>&nbsp;&nbsp;</div><div>function CreateCharSet:String</div><div>var</div><div>&nbsp; availableChars,UppercaseChars,LowercaseChars: String;</div><div>&nbsp; NumberChars,SymbolChars,ExtendedSymbols,AllSymbolChars :String;</div><div>{</div><div>&nbsp; UppercaseChars= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';</div><div>&nbsp; LowercaseChars= 'abcdefghijklmnopqrstuvwxyz';</div><div>&nbsp; NumberChars= '0123456789';</div><div>&nbsp; SymbolChars = '!@#$%^&amp;*()_+-={}&#091;&#093;|:;,.?';</div><div>&nbsp; AllSymbolChars = '!"#$%&amp;()*+,-./:;&lt;=&gt;?@&#091;\\&#093;^_`{|}~';</div><div>&nbsp;&nbsp;</div><div>&nbsp; if (UseUppercase == True) {</div><div>&nbsp; &nbsp;Insert(UppercaseChars,availableChars,Length(availableChars));</div><div>&nbsp; }else if (UseLowercase == True) {</div><div>&nbsp; &nbsp; Insert(UseLowercase,availableChars,Length(availableChars));</div><div>&nbsp; }else if (UseNumbers == True) {</div><div>&nbsp; &nbsp; Insert(UseNumbers,availableChars,Length(availableChars));</div><div>&nbsp; }else if (UseSymbols == True) {</div><div>&nbsp; &nbsp; Insert(UseSymbols,availableChars,Length(availableChars));</div><div>&nbsp; }else if (AllSymbols == True) {</div><div>&nbsp; &nbsp; Insert(AllSymbolChars,availableChars,Length(availableChars));</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; //ShowMessage(availableChars);</div><div>&nbsp; Result = availableChars;</div><div>&nbsp; /*</div><div>&nbsp; while(Length(password)&lt;=passLength){</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; }</div><div>&nbsp; */</div><div>}&nbsp;&nbsp;</div><div><br></div><div>function CreatePass(availableChars: String; passLength: Integer):String</div><div>var</div><div>&nbsp; tempPass : String;</div><div>&nbsp; tempChar: Char;</div><div>&nbsp; i, randint: Integer;</div><div>&nbsp; //Upperint,Lowerint,Numberint,Symbolint,Extendedint,Allint: Integer;</div><div>&nbsp; {</div><div>&nbsp; i=0;</div><div>&nbsp; &nbsp; while(i&lt;=passLength){</div><div>&nbsp; &nbsp; &nbsp; randint = clMath.GenerateRandom(0,passLength);</div><div>&nbsp; &nbsp; &nbsp; tempChar = Copy(availableChars,randint,1);</div><div>&nbsp; &nbsp; &nbsp; Insert(tempChar,tempPass,Length(tempPass));</div><div>&nbsp; &nbsp; &nbsp; i=i+1;</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; Result = tempPass;</div><div>}&nbsp;</div><div>void WritePass{</div><div>&nbsp; // Backendin çağrılıp şifrenin oluşturulma kısmı</div><div>&nbsp; chars = CreateCharSet;</div><div>&nbsp; OutputPLabel = ' ';</div><div>&nbsp; OutputPLabel.Text= CreatePass(chars,passLength);</div><div>&nbsp; //ShowMessage(OutputPLabel.Text+ "=&gt; "+ CreatePass(chars,passLength));</div><div>}</div><div><br></div><div><br></div><div>void CChecker{</div><div>&nbsp; if(UppercaseSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; UseUppercase = True;</div><div>&nbsp; }else if(LowercaseSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; UseLowercase = True;</div><div>&nbsp; }else if(NumbersSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; UseNumbers = True;</div><div>&nbsp; }else if(SymbolsSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; UseSymbols = True;</div><div>&nbsp; }else if(AllSymbolsSwitch.IsChecked == True){</div><div>&nbsp; &nbsp; AllSymbols = True;</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; if( passLength &lt;&gt; LengthCombo.ItemIndex){</div><div>&nbsp; &nbsp; passLength = LengthCombo.ItemIndex;</div><div>&nbsp; }</div><div><br></div><div>}</div><div><br></div><div><br></div><div>/*</div><div>{</div><div><br></div><div>//ShowMessage(UppercaseChars);</div><div>/// Şifreleme&nbsp; AES Encryption</div><div>//https://www.docs.clomosy.com/AES_Encryption</div><div>&nbsp; UseUppercase = True;</div><div>&nbsp; chars = CreateCharSet;</div><div>&nbsp; text = CreatePass(chars,8);</div><div>&nbsp; ShowMessage(text);</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; /*</div><div>&nbsp; text = 'Muhammed Süleyman Güney';</div><div>&nbsp; //text = 'QWEUYSDNASKD@gmail.com';</div><div>&nbsp; encryptedValue = Clomosy.ProjectEncryptAES(text);</div><div>&nbsp; //ShowMessage('Encrypted Value: 'Insert(,encryptedValue);</div><div><br></div><div>&nbsp; decryptedValue = Clomosy.ProjectDecryptAES(encryptedValue);</div><div>&nbsp; //ShowMessage('Decrypted Value: 'Insert(,decryptedValue);</div><div>&nbsp; /</div><div>}</div><div>*/</div><div><br></div><div><br></div><div>&nbsp;</div><div>void MainPPanelV // Ana Panel (En Dış Panel)</div><div>{</div><div>&nbsp; MainPPanel=MainForm.AddNewProPanel(MainForm,'MainPPanel');</div><div>&nbsp; MainPPanel.Align = alCenter;</div><div>&nbsp; MainPPanel.Width = 370;</div><div>&nbsp; MainPPanel.Height = 330;</div><div>&nbsp; MainPPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; MainPPanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; MainPPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; MainPPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; MainPPanel.clProSettings.IsRound = True;</div><div>&nbsp; MainPPanel.SetclProSettings(MainPPanel.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void AyarlarPanelV // Ayarlar İçin Genel Panel</div><div>{</div><div>&nbsp; AyarlarPanel=MainForm.AddNewProPanel(MainPPanel,'AyarlarPanel');</div><div>&nbsp; AyarlarPanel.Align = alMostTop;</div><div>&nbsp; AyarlarPanel.Width = 330;</div><div>&nbsp; AyarlarPanel.Height = 230;</div><div>&nbsp; AyarlarPanel.Margins.Top = 10;</div><div>&nbsp; AyarlarPanel.Margins.Left = 10;</div><div>&nbsp; AyarlarPanel.Margins.Right = 10;</div><div>&nbsp; AyarlarPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; AyarlarPanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; AyarlarPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; AyarlarPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; AyarlarPanel.clProSettings.IsRound = True;</div><div>&nbsp; AyarlarPanel.SetclProSettings(AyarlarPanel.clProSettings);</div><div>}</div><div><br></div><div>void SwitchPPanelV // Switch Paneli ve Switchler</div><div>{</div><div>&nbsp; SwitchPPanel=MainForm.AddNewProPanel(AyarlarPanel,'SwitchPPanel');</div><div>&nbsp; SwitchPPanel.Align = alMostLeft;</div><div>&nbsp; SwitchPPanel.Width = 60;</div><div>&nbsp; SwitchPPanel.Height = 200;</div><div>&nbsp; SwitchPPanel.Margins.Top = 10;</div><div>&nbsp; SwitchPPanel.Margins.Bottom = 10;</div><div>&nbsp; SwitchPPanel.Margins.Left = 10;</div><div>&nbsp; SwitchPPanel.Margins.Right = 10;</div><div>&nbsp; SwitchPPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; //SwitchPPanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; //SwitchPPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; SwitchPPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; SwitchPPanel.clProSettings.IsRound = True;</div><div>&nbsp; SwitchPPanel.SetclProSettings(SwitchPPanel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; UppercaseSwitch = MainForm.AddNewSwitch(SwitchPPanel,'UppercaseSwitch');</div><div>&nbsp; UppercaseSwitch.Align = alTop;</div><div>&nbsp; UppercaseSwitch.Height = 30;</div><div>&nbsp; UppercaseSwitch.Width = 150;</div><div>&nbsp; UppercaseSwitch.Margins.Right = 10;</div><div>&nbsp; UppercaseSwitch.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; LowercaseSwitch = MainForm.AddNewSwitch(SwitchPPanel,'LowercaseSwitch');</div><div>&nbsp; LowercaseSwitch.Align = alTop;</div><div>&nbsp; LowercaseSwitch.Height = 50;</div><div>&nbsp; LowercaseSwitch.Width = 150;</div><div>&nbsp; LowercaseSwitch.Margins.Right = 10;</div><div>&nbsp; LowercaseSwitch.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; NumbersSwitch = MainForm.AddNewSwitch(SwitchPPanel,'NumbersSwitch');</div><div>&nbsp; NumbersSwitch.Align = alTop;</div><div>&nbsp; NumbersSwitch.Height = 50;</div><div>&nbsp; NumbersSwitch.Width = 150;</div><div>&nbsp; NumbersSwitch.Margins.Right = 10;</div><div>&nbsp; NumbersSwitch.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; SymbolsSwitch = MainForm.AddNewSwitch(SwitchPPanel,'SymbolsSwitch');</div><div>&nbsp; SymbolsSwitch.Align = alTop;</div><div>&nbsp; SymbolsSwitch.Height = 50;</div><div>&nbsp; SymbolsSwitch.Width = 150;</div><div>&nbsp; SymbolsSwitch.Margins.Right = 10;</div><div>&nbsp; SymbolsSwitch.Margins.Bottom = 10;</div><div>&nbsp;&nbsp;</div><div>&nbsp; AllSymbolsSwitch = MainForm.AddNewSwitch(SwitchPPanel,'AllSymbolsSwitch');</div><div>&nbsp; AllSymbolsSwitch.Align = alTop;</div><div>&nbsp; AllSymbolsSwitch.Height = 50;</div><div>&nbsp; AllSymbolsSwitch.Width = 150;</div><div>&nbsp; AllSymbolsSwitch.Margins.Right = 10;</div><div>&nbsp; AllSymbolsSwitch.Margins.Bottom = 10;</div><div>}</div><div><br></div><div>void SwitchLabelPPanelV // Switch Paneli ve Labeller</div><div>{</div><div>&nbsp; SwitchLabelPPanel=MainForm.AddNewProPanel(AyarlarPanel,'SwitchLabelPPanel');</div><div>&nbsp; SwitchLabelPPanel.Align = alLeft;</div><div>&nbsp; SwitchLabelPPanel.Width = 115;</div><div>&nbsp; SwitchLabelPPanel.Height = 200;</div><div>&nbsp; SwitchLabelPPanel.Margins.Top = 10;</div><div>&nbsp; SwitchLabelPPanel.Margins.Bottom = 10;</div><div>&nbsp; SwitchLabelPPanel.Margins.Left = 0;</div><div>&nbsp; SwitchLabelPPanel.Margins.Right = 10;</div><div>&nbsp; SwitchLabelPPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; //SwitchLabelPPanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; //SwitchLabelPPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; SwitchLabelPPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; SwitchLabelPPanel.clProSettings.IsRound = True;</div><div>&nbsp; SwitchLabelPPanel.SetclProSettings(SwitchLabelPPanel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; UppercaseLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'UppercaseLabel','Uppercase');</div><div>&nbsp; UppercaseLabel.Align = alTop;</div><div>&nbsp; UppercaseLabel.Width = 100;</div><div>&nbsp; UppercaseLabel.Height = 30;</div><div>&nbsp; UppercaseLabel.Margins.Top = -2;</div><div>&nbsp; UppercaseLabel.Margins.Bottom = 6;</div><div>&nbsp; UppercaseLabel.Margins.Left = 0;</div><div>&nbsp; UppercaseLabel.Margins.Right = 0;</div><div>&nbsp; UppercaseLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; UppercaseLabel.clProSettings.FontSize = 15;</div><div>&nbsp; UppercaseLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; UppercaseLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; UppercaseLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; UppercaseLabel.SetclProSettings(UppercaseLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; LowercaseLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'LowercaseLabel','Lowercase');</div><div>&nbsp; LowercaseLabel.Align = alTop;</div><div>&nbsp; LowercaseLabel.Width = 100;</div><div>&nbsp; LowercaseLabel.Height = 30;</div><div>&nbsp; LowercaseLabel.Margins.Top = 0;</div><div>&nbsp; LowercaseLabel.Margins.Bottom = 6;</div><div>&nbsp; LowercaseLabel.Margins.Left = 0;</div><div>&nbsp; LowercaseLabel.Margins.Right = 0;</div><div>&nbsp; LowercaseLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; LowercaseLabel.clProSettings.FontSize = 15;</div><div>&nbsp; LowercaseLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; LowercaseLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; LowercaseLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; LowercaseLabel.SetclProSettings(LowercaseLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; NumbersLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'NumbersLabel','Sayılar');</div><div>&nbsp; NumbersLabel.Align = alTop;</div><div>&nbsp; NumbersLabel.Width = 100;</div><div>&nbsp; NumbersLabel.Height = 30;</div><div>&nbsp; NumbersLabel.Margins.Top = 0;</div><div>&nbsp; NumbersLabel.Margins.Bottom = 7;</div><div>&nbsp; NumbersLabel.Margins.Left = 0;</div><div>&nbsp; NumbersLabel.Margins.Right = 0;</div><div>&nbsp; NumbersLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; NumbersLabel.clProSettings.FontSize = 15;</div><div>&nbsp; NumbersLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; NumbersLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; NumbersLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; NumbersLabel.SetclProSettings(NumbersLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; SymbolsLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'SymbolsLabel','Semboller');</div><div>&nbsp; SymbolsLabel.Align = alTop;</div><div>&nbsp; SymbolsLabel.Width = 100;</div><div>&nbsp; SymbolsLabel.Height = 30;</div><div>&nbsp; SymbolsLabel.Margins.Top = 0;</div><div>&nbsp; SymbolsLabel.Margins.Bottom = 0;</div><div>&nbsp; SymbolsLabel.Margins.Left = 0;</div><div>&nbsp; SymbolsLabel.Margins.Right = 0;</div><div>&nbsp; SymbolsLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; SymbolsLabel.clProSettings.FontSize = 15;</div><div>&nbsp; SymbolsLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; SymbolsLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; SymbolsLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; SymbolsLabel.SetclProSettings(SymbolsLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; AllSymbolsLabel = MainForm.AddNewProLabel(SwitchLabelPPanel,'AllSymbolsLabel','Bütün Semboller');</div><div>&nbsp; AllSymbolsLabel.Align = alBottom;</div><div>&nbsp; AllSymbolsLabel.Width = 105;</div><div>&nbsp; AllSymbolsLabel.Height = 30;</div><div>&nbsp; AllSymbolsLabel.Margins.Top = 0;</div><div>&nbsp; AllSymbolsLabel.Margins.Bottom = -2;</div><div>&nbsp; AllSymbolsLabel.Margins.Left = 0;</div><div>&nbsp; AllSymbolsLabel.Margins.Right = 0;</div><div>&nbsp; AllSymbolsLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; AllSymbolsLabel.clProSettings.FontSize = 15;</div><div>&nbsp; AllSymbolsLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; AllSymbolsLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; AllSymbolsLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; AllSymbolsLabel.SetclProSettings(AllSymbolsLabel.clProSettings);</div><div>}</div><div><br></div><div>void ButtonsPanelV // Combobox ve Butonlar Paneli</div><div>var i : Integer;</div><div>{</div><div>&nbsp; ButtonsPanel=MainForm.AddNewProPanel(AyarlarPanel,'ButtonsPanel');</div><div>&nbsp; ButtonsPanel.Align = alMostRight;</div><div>&nbsp; ButtonsPanel.Width = 140;</div><div>&nbsp; ButtonsPanel.Height = 200;</div><div>&nbsp; ButtonsPanel.Margins.Top = 10;</div><div>&nbsp; ButtonsPanel.Margins.Bottom = 10;</div><div>&nbsp; ButtonsPanel.Margins.Left = 0;</div><div>&nbsp; ButtonsPanel.Margins.Right = 10;</div><div>&nbsp; //ButtonsPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; //ButtonsPanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; ButtonsPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; ButtonsPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; ButtonsPanel.clProSettings.IsRound = True;</div><div>&nbsp; ButtonsPanel.SetclProSettings(ButtonsPanel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; LengthCombo = MainForm.AddNewComboBox(ButtonsPanel,'LengthCombo');</div><div>&nbsp; LengthCombo.Align = alMostTop;</div><div>&nbsp; LengthCombo.Width = 150;</div><div>&nbsp; LengthCombo.Margins.Top = 0;</div><div>&nbsp; LengthCombo.Margins.Left = 10;</div><div>&nbsp; LengthCombo.Margins.Right = 10;</div><div><br></div><div>&nbsp; for(i=0 to 24){</div><div>&nbsp; &nbsp; LengthCombo.AddItem(IntToStr(i),IntToStr(i));</div><div>&nbsp; }</div><div>&nbsp;&nbsp;</div><div>&nbsp; CreatePButton = MainForm.AddNewProButton(ButtonsPanel,'CreatePButton','OLUŞTUR');</div><div>&nbsp; CreatePButton.Align = alTop;</div><div>&nbsp; CreatePButton.Width = 130;</div><div>&nbsp; CreatePButton.Height = 40;</div><div>&nbsp; CreatePButton.Margins.Top = 35;</div><div>&nbsp; CreatePButton.Margins.Bottom = 10;</div><div>&nbsp; CreatePButton.Margins.Left = 10;</div><div>&nbsp; CreatePButton.Margins.Right = 10;</div><div>&nbsp; CreatePButton.clProSettings.FontColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; CreatePButton.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; CreatePButton.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; CreatePButton.clProSettings.BorderWidth = 2;</div><div>&nbsp; CreatePButton.clProSettings.FontSize = 15;</div><div>&nbsp; CreatePButton.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; CreatePButton.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; CreatePButton.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; CreatePButton.clProSettings.IsFill = True;</div><div>&nbsp; CreatePButton.clProSettings.IsRound = True;</div><div>&nbsp; CreatePButton.clProSettings.RoundHeight = 5;</div><div>&nbsp; CreatePButton.clProSettings.RoundWidth = 5;</div><div>&nbsp; CreatePButton.SetclProSettings(CreatePButton.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; GetFilePButton = MainForm.AddNewProButton(ButtonsPanel,'GetFilePButton','DOSYA ÇIKART');</div><div>&nbsp; GetFilePButton.Align = alTop;</div><div>&nbsp; GetFilePButton.Width = 130;</div><div>&nbsp; GetFilePButton.Height = 40;</div><div>&nbsp; GetFilePButton.Margins.Top = 0;</div><div>&nbsp; GetFilePButton.Margins.Bottom = 0;</div><div>&nbsp; GetFilePButton.Margins.Left = 10;</div><div>&nbsp; GetFilePButton.Margins.Right = 10;</div><div>&nbsp; GetFilePButton.clProSettings.FontColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; GetFilePButton.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; GetFilePButton.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; GetFilePButton.clProSettings.BorderWidth = 2;</div><div>&nbsp; GetFilePButton.clProSettings.FontSize = 15;</div><div>&nbsp; GetFilePButton.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; GetFilePButton.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; GetFilePButton.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; GetFilePButton.clProSettings.IsFill = True;</div><div>&nbsp; GetFilePButton.clProSettings.IsRound = True;</div><div>&nbsp; GetFilePButton.clProSettings.RoundHeight = 5;</div><div>&nbsp; GetFilePButton.clProSettings.RoundWidth = 5;</div><div>&nbsp; GetFilePButton.clProSettings.WordWrap = True;</div><div>&nbsp; GetFilePButton.SetclProSettings(GetFilePButton.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void BaslikPLabelV</div><div>{</div><div>&nbsp; BaslikPLabel = MainForm.AddNewProLabel(MainPPanel,'BaslikPLabel','Ayarlar');</div><div>&nbsp; BaslikPLabel.Align = alMostTop;</div><div>&nbsp; BaslikPLabel.Width = 30;</div><div>&nbsp; BaslikPLabel.Height = 30;</div><div>&nbsp; BaslikPLabel.Margins.Top = 10;</div><div>&nbsp; BaslikPLabel.Margins.Bottom = 0;</div><div>&nbsp; BaslikPLabel.Margins.Left = 145;</div><div>&nbsp; BaslikPLabel.Margins.Right = 0;</div><div>&nbsp; BaslikPLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; BaslikPLabel.clProSettings.FontSize = 20;</div><div>&nbsp; BaslikPLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; BaslikPLabel.clProSettings.FontHorzAlign = palLeading;</div><div>&nbsp; BaslikPLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; BaslikPLabel.SetclProSettings(BaslikPLabel.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void InputPEditV</div><div>{</div><div>&nbsp; InputPEdit = MainForm.AddNewProEdit(AyarlarPanel,'InputPEdit','ŞİFRELEMEK İSTENİLEN VERİ');</div><div>&nbsp; InputPEdit.Align = alMostTop;</div><div>&nbsp; InputPEdit.Width = 370;</div><div>&nbsp; InputPEdit.Height = 30;</div><div>&nbsp; InputPEdit.Margins.Top = 10;</div><div>&nbsp; InputPEdit.Margins.Left = 10;</div><div>&nbsp; InputPEdit.Margins.Right = 10;</div><div>&nbsp; InputPEdit.clProSettings.FontColor = clAlphaColor.clHexToColor('#808080');</div><div>&nbsp; InputPEdit.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; InputPEdit.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; InputPEdit.clProSettings.BorderWidth = 2;</div><div>&nbsp; InputPEdit.clProSettings.FontSize = 40;</div><div>&nbsp; InputPEdit.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; InputPEdit.clProSettings.FontHorzAlign = palcenter;</div><div>&nbsp; InputPEdit.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; InputPEdit.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; InputPEdit.clProSettings.IsRound = True;</div><div>&nbsp; InputPEdit.clProSettings.RoundHeight = 10;</div><div>&nbsp; InputPEdit.clProSettings.RoundWidth = 10;</div><div>&nbsp; InputPEdit.SetclProSettings(InputPEdit.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void BottomPanelV // En Alt Label ve Kopyala Butonu</div><div>{</div><div>&nbsp; BottomPanel=MainForm.AddNewProPanel(MainPPanel,'BottomPanel');</div><div>&nbsp; BottomPanel.Align = alMostBottom;</div><div>&nbsp; BottomPanel.Width = 330;</div><div>&nbsp; BottomPanel.Height = 30;</div><div>&nbsp; BottomPanel.Margins.Top = 10;</div><div>&nbsp; BottomPanel.Margins.Bottom = 10;</div><div>&nbsp; BottomPanel.Margins.Left = 10;</div><div>&nbsp; BottomPanel.Margins.Right = 10;</div><div>&nbsp; BottomPanel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; //BottomPanel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; //BottomPanel.clProSettings.BorderWidth = 2;</div><div>&nbsp; BottomPanel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; BottomPanel.clProSettings.IsRound = True;</div><div>&nbsp; BottomPanel.SetclProSettings(BottomPanel.clProSettings);</div><div><br></div><div>&nbsp; OutputPLabel = MainForm.AddNewProLabel(BottomPanel,'OutputPLabel','ŞİFRELEME SONUCU');</div><div>&nbsp; OutputPLabel.Align = alMostLeft;</div><div>&nbsp; OutputPLabel.Width = 230;</div><div>&nbsp; OutputPLabel.Height = 30;</div><div>&nbsp; OutputPLabel.Margins.Top = 0;</div><div>&nbsp; OutputPLabel.Margins.Bottom = 0;</div><div>&nbsp; OutputPLabel.Margins.Left = 10;</div><div>&nbsp; OutputPLabel.Margins.Right = 0;</div><div>&nbsp; OutputPLabel.clProSettings.FontColor = clAlphaColor.clHexToColor('#808080');</div><div>&nbsp; OutputPLabel.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; OutputPLabel.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; OutputPLabel.clProSettings.BorderWidth = 2;</div><div>&nbsp; OutputPLabel.clProSettings.FontSize = 19;</div><div>&nbsp; OutputPLabel.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; OutputPLabel.clProSettings.FontHorzAlign = palcenter;</div><div>&nbsp; OutputPLabel.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; OutputPLabel.clProSettings.IsFill = True;&nbsp;</div><div>&nbsp; OutputPLabel.clProSettings.IsRound = True;</div><div>&nbsp; OutputPLabel.clProSettings.RoundHeight = 10;</div><div>&nbsp; OutputPLabel.clProSettings.RoundWidth = 10;</div><div>&nbsp; OutputPLabel.SetclProSettings(OutputPLabel.clProSettings);</div><div>&nbsp;&nbsp;</div><div>&nbsp; CopyPButton = MainForm.AddNewProButton(BottomPanel,'CopyPButton','KOPYALA');</div><div>&nbsp; CopyPButton.Align = alMostRight;</div><div>&nbsp; CopyPButton.Width = 80;</div><div>&nbsp; CopyPButton.Height = 40;</div><div>&nbsp; CopyPButton.Margins.Top = 0;</div><div>&nbsp; CopyPButton.Margins.Bottom = 0;</div><div>&nbsp; CopyPButton.Margins.Left = 10;</div><div>&nbsp; CopyPButton.Margins.Right = 20;</div><div>&nbsp; CopyPButton.clProSettings.FontColor = clAlphaColor.clHexToColor('#424242');</div><div>&nbsp; CopyPButton.clProSettings.BackgroundColor = clAlphaColor.clHexToColor('#ebebeb');</div><div>&nbsp; CopyPButton.clProSettings.BorderColor = clAlphaColor.clHexToColor('#000000');</div><div>&nbsp; CopyPButton.clProSettings.BorderWidth = 2;</div><div>&nbsp; CopyPButton.clProSettings.FontSize = 15;</div><div>&nbsp; CopyPButton.clProSettings.FontVertAlign = palcenter;</div><div>&nbsp; CopyPButton.clProSettings.FontHorzAlign = palCenter;</div><div>&nbsp; CopyPButton.clProSettings.TextSettings.Font.Style = &#091;fsBold&#093;;</div><div>&nbsp; CopyPButton.clProSettings.IsFill = True;</div><div>&nbsp; CopyPButton.clProSettings.IsRound = True;</div><div>&nbsp; CopyPButton.clProSettings.RoundHeight = 5;</div><div>&nbsp; CopyPButton.clProSettings.RoundWidth = 5;</div><div>&nbsp; CopyPButton.clProSettings.WordWrap = True;</div><div>&nbsp; CopyPButton.SetclProSettings(CopyPButton.clProSettings);</div><div>}</div><div>&nbsp;</div><div>void UppercaseSwitchV</div><div>{</div><div>&nbsp; UppercaseSwitch = MainForm.AddNewSwitch(MainForm,'UppercaseSwitch');</div><div>&nbsp; UppercaseSwitch.Align = alLeft;</div><div>&nbsp; UppercaseSwitch.Height = 50;</div><div>&nbsp; UppercaseSwitch.Width = 150;</div><div>}</div><div>&nbsp;&nbsp;</div><div>{</div><div>&nbsp; MainForm=TclForm.Create(self);</div><div>&nbsp; //MainForm.SetFormBGImage('https://resmim.net/cdn/2025/09/19/jkKF0o.png');</div><div>&nbsp; MainForm.SetFormColor('#000000', '#000000', clGNone);</div><div>&nbsp; MainForm.FormWaiting.Visible = False;</div><div>&nbsp; MainForm.BtnFormMenu.Visible = False;</div><div>&nbsp; MainForm.BtnGoBack.Visible = False;</div><div><br></div><div>&nbsp; ClRTSetProperty(MainForm,'ClientWidth',700);</div><div>&nbsp; ClRTSetProperty(MainForm,'ClientHeight',500);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainPPanelV; // Ana Panel Çağırma (En Dış Panel)</div><div>&nbsp; BaslikPLabelV; // Ayarlar Başlığı</div><div>&nbsp; AyarlarPanelV; // Yapılacak Ayarların Paneli</div><div>&nbsp; SwitchPPanelV; // Switchler İçin Çağrılan Panel</div><div>&nbsp; SwitchLabelPPanelV; // Switchler İçin Panel İçinde Labeller Çağırma</div><div>&nbsp; ButtonsPanelV; // Butonlar İçin Panel ve Butonlar Çağırma</div><div>&nbsp; InputPEditV; // En Üstte Input Editi Çağırma</div><div>&nbsp; BottomPanelV; // En Alt Label ve Kopyala Butonu Çağırma</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Switchler İçin Event Kodları</div><div>&nbsp; MainForm.AddNewEvent(UppercaseSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(LowercaseSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(NumbersSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(SymbolsSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(AllSymbolsSwitch,tbeOnClick,'CChecker');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.AddNewEvent(LengthCombo,tbeOnChange,'CChecker');</div><div>&nbsp; /*</div><div>&nbsp; // Backendin çağrılıp şifrenin oluşturulma kısmı</div><div>&nbsp; chars = CreateCharSet;</div><div>&nbsp; OutputPLabel = ' ';</div><div>&nbsp; OutputPLabel = CreatePass(chars,passLength);</div><div>&nbsp; */</div><div>&nbsp;&nbsp;</div><div>&nbsp;&nbsp;</div><div>&nbsp; // Butonlar İçin Event Kodları</div><div>&nbsp; MainForm.AddNewEvent(CreatePButton,tbeOnClick,'WritePass'); // Kodu Oluşturma Butonu</div><div>&nbsp; MainForm.AddNewEvent(GetFilePButton,tbeOnClick,''); // Dosya Çıkartma Butonu</div><div>&nbsp; MainForm.AddNewEvent(CopyPButton,tbeOnClick,''); // Şifre Kopyalama Butonu</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.Run;</div><div>}</div><div>/*</div><div>{</div><div>&nbsp; MainForm=TclForm.Create(self);</div><div>&nbsp; //MainForm.SetFormBGImage('https://resmim.net/cdn/2025/09/19/jkKF0o.png');</div><div>&nbsp; MainForm.FormWaiting.Visible = False;</div><div>&nbsp; MainForm.BtnFormMenu.Visible = False;</div><div>&nbsp; MainForm.BtnGoBack.Visible = False;</div><div><br></div><div>&nbsp; ClRTSetProperty(MainForm,'ClientWidth',700);</div><div>&nbsp; ClRTSetProperty(MainForm,'ClientHeight',500);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainPPanelV; // Ana Panel Çağırma (En Dış Panel)</div><div>&nbsp; BaslikPLabelV; // Ayarlar Başlığı</div><div>&nbsp; AyarlarPanelV; // Yapılacak Ayarların Paneli</div><div>&nbsp; SwitchPPanelV; // Switchler İçin Çağrılan Panel</div><div>&nbsp; InputPEditV; // En Üstte Input Editi Çağırma</div><div>&nbsp; InputPEdit = CreatePass(chars,8); /// pass length</div><div>&nbsp; OutputPLabelV; // Üstte Output Labeli Çağırma</div><div>&nbsp;&nbsp;</div><div>&nbsp; passLength = 8;//LengthCombo.ItemIndex();</div><div>&nbsp; &nbsp; //ShowMessage(UppercaseChars);</div><div>/// Şifreleme&nbsp; AES Encryption</div><div>//https://www.docs.clomosy.com/AES_Encryption</div><div>&nbsp; //UseUppercase = True;</div><div>&nbsp; //ShowMessage('Chars: '+chars);</div><div>&nbsp; //text = CreatePass(chars,8);</div><div>&nbsp; //ShowMessage('Password: '+text);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.AddNewEvent(UseUppercaseSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(UseLowercaseSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(UseNumbersSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(UseSymbolsSwitch,tbeOnClick,'CChecker');</div><div>&nbsp; MainForm.AddNewEvent(AllSymbolSwitch,tbeOnClick,'CChecker');</div><div>&nbsp;&nbsp;</div><div>&nbsp; chars = CreateCharSet;</div><div>&nbsp; OutputPLabel = ' ';</div><div>&nbsp; OutputPLabel = CreatePass(chars,8);</div><div>&nbsp;&nbsp;</div><div>&nbsp; MainForm.Run;</div><div>}</div><div><br></div><div><br></div><div>*/</div><div><br></div></div>]]>
   </description>
   <pubDate>Mon, 22 Sep 2025 09:48:36 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1196&amp;PID=2551#2551</guid>
  </item> 
 </channel>
</rss>