Buchempfehlung
Mikrocomputertechnik mit Controllern der Atmel AVR-RISC-Familie
Mikrocomputertechnik mit Controllern der Atmel AVR-RISC-Familie
Umfassend, aber leicht verständlich führt dieses Buch in die Programmierung von ATMEL AVR Mikrocontrollern ein. [Mehr Infos...]
FreeBASIC-Chat
Es sind Benutzer im FreeBASIC-Chat online.
(Stand:  )
FreeBASIC bei Twitter
Twitter FreeBASIC-Nachrichten jetzt auch über Twitter erhalten. Follow us!

fb:porticula NoPaste

Info
Info / Hilfe
Liste
Übersicht / Liste
Neu
Datei hochladen
Suche
Quellcode suchen
Download
Dateidownload

Nützliche Functionen, die bis jetzt Fehlten

Uploader:MitgliedAndT
Datum/Zeit:05.11.2007 12:25:27

function val2bin (vaule as integer) as string
    dim tconv as string = bin(vaule)
    function = tconv
end function

function val2hex (vaule as integer) as string
        function = hex(vaule)
end function

function bin2val (binaer as string) as integer
    dim as string tconv = "&b" + binaer
    Function =  VAL(tconv)
end function

function bin2hex (binaer as string) as string
    dim as string tconv = "&b" + binaer
    function = val2hex(val(tconv))
end function

function hex2val (hexcode as string) as integer

    function = val("&h" + hexcode)
end function

function hex2bin (hexcode as string) as string
    dim as string tconv = "&h" + hexcode
    function = val2bin(val(tconv))
end function