IP to Decimal converter

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 10099
Joined: Fri Feb 19, 2010 10:17 am

IP to Decimal converter

Post by richmond62 » Sun May 14, 2017 9:28 am

IPD.png
10 minutes work.
IP to Decimal Converter.livecode.zip
Here's the stack.
(15.1 KiB) Downloaded 310 times

Ledigimate
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 132
Joined: Mon Jan 14, 2013 3:37 pm

Re: IP to Decimal converter

Post by Ledigimate » Tue May 23, 2017 10:37 pm

Thank you Richmond.

I thought it might be useful if the decimal number could also be converted back to an IP address, so I gave it a try:

Code: Select all

   set the itemdelimiter to "."
   if fld "DEK" is an integer then
      put fld "DEK" into tNum
      put tNum div (256^3) into fld "EYEPEE"
      subtract fld "EYEPEE" * (256^3) from tNum
      put "." & tNum div (256^2) after fld "EYEPEE"
      subtract item 2 of fld "EYEPEE" * (256^2) from tNum
      put "." & tNum div 256 after fld "EYEPEE"
      subtract item 3 of fld "EYEPEE" * 256 from tNum
      put "." & tNum after fld "EYEPEE"
    end if
- Gerrie
010100000110010101100001011000110110010100111101010011000110111101110110011001010010101101010100011100100111010101110100011010000010101101001010011101010111001101110100011010010110001101100101

richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 10099
Joined: Fri Feb 19, 2010 10:17 am

Re: IP to Decimal converter

Post by richmond62 » Wed May 24, 2017 5:01 pm

Well Ledgitimate/Gerrie there is no earthly reason why you shouldn't
download my stack, put your script into a new button, bung your
name on the front (next to mine if
you want to be fair) and re-uploading it.

Ledigimate
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 132
Joined: Mon Jan 14, 2013 3:37 pm

Re: IP to Decimal converter

Post by Ledigimate » Thu May 25, 2017 8:33 pm

Okay, here it is :D

- Gerrie
Attachments
IP to Decimal Converter.livcode.zip
Here's the stack with the new button.
(20.95 KiB) Downloaded 250 times
010100000110010101100001011000110110010100111101010011000110111101110110011001010010101101010100011100100111010101110100011010000010101101001010011101010111001101110100011010010110001101100101

Post Reply