Click here to Skip to main content
15,918,617 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Cryptography Pin
Dave Kreskowiak9-Feb-05 16:39
mveDave Kreskowiak9-Feb-05 16:39 
GeneralProblem in Sql Command Pin
sriwirko8-Feb-05 15:58
sriwirko8-Feb-05 15:58 
GeneralRe: Problem in Sql Command Pin
Member 13063378-Feb-05 17:25
Member 13063378-Feb-05 17:25 
GeneralRe: Problem in Sql Command Pin
sriwirko8-Feb-05 19:44
sriwirko8-Feb-05 19:44 
GeneralRe: Problem in Sql Command Pin
Just Greeky Creek9-Feb-05 0:23
Just Greeky Creek9-Feb-05 0:23 
GeneralRe: Problem in Sql Command Pin
Anonymous9-Feb-05 4:37
Anonymous9-Feb-05 4:37 
GeneralHex from Integer.... Pin
pittuck8-Feb-05 10:51
pittuck8-Feb-05 10:51 
GeneralRe: Hex from Integer.... Pin
rwestgraham8-Feb-05 14:11
rwestgraham8-Feb-05 14:11 
If you are absolutely sure your input data is all in the form of text ASCII characters, and does not contain binary data, you can convert an ASCII character into it's ASCII integer code, and then convert the integer to Hex format. But the hex will not be in the "0x41" format - you'll just get a "41".

For example:

txtMyTextBox.Text = (Hex(Asc("A")))

will display "41" in the textbox.

The functions will only work with a single character. If you have data in a string you can convert it into an array of characters using the String.ToCharArray function then enumerate each character to convert it to Hex.

Good Luck

Robert
GeneralRe: Hex from Integer.... Pin
pittuck8-Feb-05 20:21
pittuck8-Feb-05 20:21 
GeneralFont Size Pin
kingcobra01288-Feb-05 9:57
kingcobra01288-Feb-05 9:57 
GeneralRe: Font Size Pin
Christian Graus8-Feb-05 10:48
protectorChristian Graus8-Feb-05 10:48 
GeneralCopying rows between two data views Pin
asifmaniar8-Feb-05 9:46
asifmaniar8-Feb-05 9:46 
GeneralMaster-Detail Grid question Pin
jvalescu8-Feb-05 9:07
jvalescu8-Feb-05 9:07 
GeneralReference Variables, Byref, and IEnumerator Pin
Mike the Red8-Feb-05 6:52
Mike the Red8-Feb-05 6:52 
GeneralAuto BCC Pin
8-Feb-05 0:34
suss8-Feb-05 0:34 
GeneralRe: Auto BCC Pin
Dave Kreskowiak8-Feb-05 6:31
mveDave Kreskowiak8-Feb-05 6:31 
GeneralRe: Auto BCC Pin
Just Greeky Creek9-Feb-05 0:37
Just Greeky Creek9-Feb-05 0:37 
GeneralRe: Auto BCC Pin
Dave Kreskowiak9-Feb-05 2:01
mveDave Kreskowiak9-Feb-05 2:01 
GeneralConvert vb6 to vb.net tool is needed Pin
?!?8-Feb-05 0:31
?!?8-Feb-05 0:31 
GeneralRe: Convert vb6 to vb.net tool is needed Pin
Dave Kreskowiak8-Feb-05 1:16
mveDave Kreskowiak8-Feb-05 1:16 
GeneralRe: Convert vb6 to vb.net tool is needed Pin
?!?8-Feb-05 1:50
?!?8-Feb-05 1:50 
GeneralRe: Convert vb6 to vb.net tool is needed Pin
Dave Kreskowiak8-Feb-05 3:14
mveDave Kreskowiak8-Feb-05 3:14 
GeneralRe: Convert vb6 to vb.net tool is needed Pin
Basavaraj P.Umadi12-Feb-05 0:24
Basavaraj P.Umadi12-Feb-05 0:24 
GeneralRe: Convert vb6 to vb.net tool is needed Pin
Member 13063378-Feb-05 17:28
Member 13063378-Feb-05 17:28 
Questionconnect vb6 with access2000?? Pin
a_yosef7-Feb-05 23:09
a_yosef7-Feb-05 23:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.