Results 1 to 3 of 3

Thread: converting decimal to hex

  1. #1

    Thread Starter
    Member
    Join Date
    Dec 2002
    Location
    long island, new york
    Posts
    32

    converting decimal to hex

    is there any kind of function or formula for converting a decimal value do a hexidecimal value?

  2. #2
    Frenzied Member KayJay's Avatar
    Join Date
    Jul 2001
    Location
    Chennai
    Posts
    1,849
    The HEX() function.
    VB Code:
    1. Private Sub Command1_Click()
    2. Dim intVal As Integer
    3. intVal = 24568
    4. MsgBox Hex(intVal)
    5. End Sub
    HTH

    "Brothers, you asked for it."
    ...Francisco Domingo Carlos Andres Sebastian D'Anconia

  3. #3
    PowerPoster
    Join Date
    Jun 2001
    Location
    Trafalgar, IN
    Posts
    4,141
    VB Code:
    1. MsgBox Hex(255)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width