<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'symmetrical number- palindrome' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'symmetrical number- palindrome' posted on the 'Delphi and Kylix' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 20:26:53 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 20:26:53 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>symmetrical number- palindrome</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/421042/421042/symmetrical-number--palindrome/</link>
      <description>Hi :)&lt;br /&gt;
I'm using delphi 7. I'm trying to make a progamme where i could check if number is palindrome (symmetrical ... for example 123 -isnt palindrome 2345432 - is palindrome)....  (number input in edit1) and label say me (for example) 'yes this number is palindrome !' or 'no this number isnt palindrome') ... what i need is one edit, one button(all commands) and label ... this isnt hard to do (i know) but i am amateur and i need it a lot :) thx and sorry for my english... what i need is complete command for it .... muhuhee&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/421042/421042/symmetrical-number--palindrome/</guid>
      <pubDate>Tue, 18 Jan 2011 13:46:44 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>Re: symmetrical number- palindrome</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/421042/421096/re-symmetrical-number--palindrome/#421096</link>
      <description>The following function will help:&lt;br /&gt;
&lt;br /&gt;
Function ISPolindrome(Num:Integer): Boolean;&lt;br /&gt;
Var  &lt;br /&gt;
  J : Integer;&lt;br /&gt;
  Str1,Str2,Str3 : String;&lt;br /&gt;
  &lt;br /&gt;
Begin &lt;br /&gt;
  Str(Str1,Num);&lt;br /&gt;
  Str2 := Copy(Str1,1,Length(Str1) div 2);&lt;br /&gt;
  Delete(Str1,1,Length(Str1) div 2);&lt;br /&gt;
  If Length(Str1)&amp;lt;&amp;gt;Length(Str2) then&lt;br /&gt;
  Begin&lt;br /&gt;
    Str3 := Str1[1];&lt;br /&gt;
    Delete(Str1,1,1);&lt;br /&gt;
  End;&lt;br /&gt;
  If Str1 = Str2 then&lt;br /&gt;
   TmpValue = True else TmpValue := False;&lt;br /&gt;
&lt;br /&gt;
  IsPolinDrome = TmpValue;&lt;br /&gt;
End;&lt;br /&gt;
Darkwing Duck aka DWduck signing off :)</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/421042/421096/re-symmetrical-number--palindrome/#421096</guid>
      <pubDate>Thu, 20 Jan 2011 06:45:08 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
  </channel>
</rss>