Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Win Api Function, know someone ?
palladin
post Jul 15 2005, 08:57 AM
Post #1


Member [Level 3]
******

Group: Members
Posts: 92
Joined: 28-June 05
Member No.: 8,782



I need API or Assembler function (read, fast function) to get Hexadecimal numer of Windows Char, somthing like this:

function GetHexadecimal( s: char ): string;

Know someone this kind function ?!? Need urgent cool.gif


--------------------

Practice is when evrything is work but no one know why.
Theory is when work nothing but evry one know why.
Programmers join Practice with Theory - nothing work and no one know why cool.gif
Go to the top of the page
 
+Quote Post
DeveloperX
post Jul 6 2006, 11:07 AM
Post #2


Advanced Member
*******

Group: Members
Posts: 130
Joined: 21-December 05
Member No.: 15,990



QUOTE
I need API or Assembler function (read, fast function) to get Hexadecimal numer of Windows Char, somthing like this:

function GetHexadecimal( s: char ): string;

Know someone this kind function ?!? Need urgent


I wrote own user function for this problem!
I called it GetHexadecimal for you.
It calling specs is GetHexadecimal( s ), where s is some windows char.
It returns hexadecimal value in string GetHexadecimal( s ): string.

function GetHexadecimal( s: char ): string;
begin
//this function returns a Hexadecimal numer of Windows Char.
//autor Tagiltsev Yuriy
//date of creation: 06/07/2006
result:=inttohex(ord(s));
end;

Please use this function in your programs in function GetHexadecimal( s: char ): string; format.
Actually I know many convertion functions like this!
Or I can write any function more or less that this function GetHexadecimal( s: char )!
And of course CHECK this function and write me about BUGS!!! Post me bugs report...

This post has been edited by DeveloperX: Jul 6 2006, 11:08 AM
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Delphi(1)
  2. Getting List Of Directories And Files Using Php(6)
  3. How To Use A Link To Call Function In Php?(8)
  4. Include File.php?id=something(13)
  5. Did This Hosting Service Support This Function ?(1)
  6. Explode Function Help(1)
  7. Genuine Help With Smtp And Php Mail() Function(3)
  8. Errors With Php Setcookie() And Headers! Please Help!(2)
  9. How Good Is This Data Cleaning Function?(2)
  10. The Extract() Function(6)
  11. Using The / As A Delimiter In The Split Function(2)
  12. Error With Joomla Template(1)
  13. Php - Randomize Web Title(5)
  14. [php] Header Function(2)
  15. [php](simple) Using Functions To Combine Values In A Form(2)
  1. Mail() Clone(5)
  2. The Best Zip Function(1)
  3. Php Explode Function Help(4)
  4. How To Check If Fsockopen Function Is Enabled?(2)
  5. Problem With Where Clause And Max Function(2)
  6. Arrays Outside A Function(3)
  7. Inkscape, A Open Source Vector App That Support Lot Function.(0)
  8. Help: Disable All Buttons Inside A Div Element(8)
  9. User Permission Function [php](3)
  10. Php - Forms, Date And Include(0)
  11. Endif function?(6)
  12. Question Regarding Php Function(12)
  13. PHP Function To Add Previous and Next Page Feature(0)


 



- Lo-Fi Version Time is now: 25th July 2008 - 11:32 PM