Click here to Skip to main content
15,913,288 members
Home / Discussions / C#
   

C#

 
GeneralRe: Threading query Pin
deep719-Dec-06 1:36
deep719-Dec-06 1:36 
GeneralRe: Threading query Pin
Pete O'Hanlon19-Dec-06 2:02
mvePete O'Hanlon19-Dec-06 2:02 
AnswerRe: Threading query Pin
althamda19-Dec-06 1:24
althamda19-Dec-06 1:24 
GeneralRe: Threading query Pin
deep719-Dec-06 1:38
deep719-Dec-06 1:38 
QuestionCode to convert Pin
quiteSmart19-Dec-06 1:01
quiteSmart19-Dec-06 1:01 
AnswerRe: Code to convert Pin
Pete O'Hanlon19-Dec-06 1:21
mvePete O'Hanlon19-Dec-06 1:21 
GeneralRe: Code to convert Pin
quiteSmart19-Dec-06 1:28
quiteSmart19-Dec-06 1:28 
GeneralRe: Code to convert Pin
Pete O'Hanlon19-Dec-06 2:33
mvePete O'Hanlon19-Dec-06 2:33 
To get you started, here's a rough copy:

string raw_key = value.Substring(value.IndexOf("|") + 1);
string offset = raw_key.Substring(raw_key.IndexOf("|") + 1);
string key = raw_key.Substring(0, raw_key.IndexOf("|"));
string hex_cryp_data = value.Substring(0, value.IndexOf("|"));
string[] split = hex_cryp_data.Split('^');
foreach (string item in split)
{
	Console.WriteLine(item);
}

It doesn't have in your calls to the hex_convert functions, but you should be able to get an idea of how it works from this.


the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer

Deja View - the feeling that you've seen this post before.

GeneralRe: Code to convert Pin
quiteSmart19-Dec-06 2:39
quiteSmart19-Dec-06 2:39 
GeneralRe: Code to convert Pin
ednrgc19-Dec-06 2:34
ednrgc19-Dec-06 2:34 
QuestionHow to modify a PDF formular, which is already created. [modified] Pin
shfaye19-Dec-06 0:49
shfaye19-Dec-06 0:49 
AnswerRe: How to modify a PDF formular, which is already created. [modified] Pin
shfaye19-Dec-06 0:56
shfaye19-Dec-06 0:56 
QuestionWindows Service User Account Credentials Pin
ekynox19-Dec-06 0:46
ekynox19-Dec-06 0:46 
AnswerRe: Windows Service User Account Credentials Pin
~~~Johnny~~~19-Dec-06 2:21
~~~Johnny~~~19-Dec-06 2:21 
GeneralRe: Windows Service User Account Credentials Pin
ekynox19-Dec-06 9:45
ekynox19-Dec-06 9:45 
GeneralRe: Windows Service User Account Credentials Pin
~~~Johnny~~~19-Dec-06 9:55
~~~Johnny~~~19-Dec-06 9:55 
QuestionRegarding LineCounterAddin Pin
harryyadav19-Dec-06 0:41
harryyadav19-Dec-06 0:41 
AnswerRe: Regarding LineCounterAddin Pin
Paul Conrad25-Dec-06 18:29
professionalPaul Conrad25-Dec-06 18:29 
QuestionFiles in printer queue Pin
sujanakar18-Dec-06 23:59
sujanakar18-Dec-06 23:59 
AnswerRe: Files in printer queue [modified] Pin
althamda19-Dec-06 0:10
althamda19-Dec-06 0:10 
AnswerRe: Files in printer queue Pin
Pete O'Hanlon19-Dec-06 1:59
mvePete O'Hanlon19-Dec-06 1:59 
GeneralRe: Files in printer queue Pin
Martin#19-Dec-06 2:16
Martin#19-Dec-06 2:16 
GeneralRe: Files in printer queue Pin
Pete O'Hanlon19-Dec-06 2:44
mvePete O'Hanlon19-Dec-06 2:44 
GeneralRe: Files in printer queue Pin
Martin#19-Dec-06 2:50
Martin#19-Dec-06 2:50 
GeneralRe: Files in printer queue Pin
Pete O'Hanlon19-Dec-06 5:10
mvePete O'Hanlon19-Dec-06 5:10 

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.