Click here to Skip to main content
15,924,452 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to clean up start menu when uninstall Pin
xjsun24-Feb-06 10:55
xjsun24-Feb-06 10:55 
QuestionSQLServer connection Pin
ytubis24-Feb-06 8:00
ytubis24-Feb-06 8:00 
AnswerRe: SQLServer connection Pin
BlackDice24-Feb-06 8:08
BlackDice24-Feb-06 8:08 
GeneralRe: SQLServer connection Pin
ytubis24-Feb-06 8:17
ytubis24-Feb-06 8:17 
GeneralRe: SQLServer connection Pin
BlackDice24-Feb-06 8:50
BlackDice24-Feb-06 8:50 
AnswerRe: SQLServer connection Pin
Felipe Dalorzo24-Feb-06 8:48
Felipe Dalorzo24-Feb-06 8:48 
GeneralRe: SQLServer connection Pin
Felipe Dalorzo24-Feb-06 8:52
Felipe Dalorzo24-Feb-06 8:52 
Questionvb to c# Pin
superPaul10124-Feb-06 6:54
superPaul10124-Feb-06 6:54 
how about this one.. this one might be difficult....

Private Function Decrypt_Key(ByVal bProductKey() As Byte) As String
Dim ilByte As Long
Dim ilKeyByte As Long
Dim nCur As Integer
Dim RetKey As New System.Text.StringBuilder

Dim bKeyChars() As Char = {"B", "C", "D", "F", "G", "H", "J", "K", "M", "P", "Q", "R", "T", "V", "W", "X", "Y", "2", "3", "4", "6", "7", "8", "9"}

For ilByte = 24 To 0 Step -1
nCur = 0
For ilKeyByte = 14 To 0 Step -1
nCur = nCur * 256 Xor bProductKey(ilKeyByte)
bProductKey(ilKeyByte) = Int(nCur / 24)
nCur = nCur Mod 24
Next ilKeyByte
RetKey.Insert(0, bKeyChars(nCur))
If ilByte Mod 5 = 0 AndAlso ilByte <> 0 Then RetKey.Insert(0, "-")
Next ilByte
Return RetKey.ToString
End Function

thank you!!

Im am SUPER P
AnswerRe: vb to c# Pin
Judah Gabriel Himango24-Feb-06 7:03
sponsorJudah Gabriel Himango24-Feb-06 7:03 
GeneralRe: vb to c# Pin
superPaul10124-Feb-06 7:07
superPaul10124-Feb-06 7:07 
GeneralRe: vb to c# Pin
Judah Gabriel Himango24-Feb-06 7:12
sponsorJudah Gabriel Himango24-Feb-06 7:12 
GeneralRe: vb to c# Pin
superPaul10124-Feb-06 7:17
superPaul10124-Feb-06 7:17 
GeneralRe: vb to c# Pin
Judah Gabriel Himango24-Feb-06 7:46
sponsorJudah Gabriel Himango24-Feb-06 7:46 
GeneralRe: vb to c# Pin
superPaul10124-Feb-06 8:04
superPaul10124-Feb-06 8:04 
GeneralRe: vb to c# Pin
Judah Gabriel Himango24-Feb-06 8:28
sponsorJudah Gabriel Himango24-Feb-06 8:28 
GeneralRe: vb to c# Pin
superPaul10124-Feb-06 21:48
superPaul10124-Feb-06 21:48 
AnswerRe: vb to c# Pin
shabonaa25-Feb-06 0:29
shabonaa25-Feb-06 0:29 
QuestionAccessing a C API from C#/VB Pin
DEWright_CA24-Feb-06 6:48
DEWright_CA24-Feb-06 6:48 
AnswerRe: Accessing a C API from C#/VB Pin
leppie24-Feb-06 6:55
leppie24-Feb-06 6:55 
AnswerRe: Accessing a C API from C#/VB Pin
Dave Kreskowiak24-Feb-06 9:19
mveDave Kreskowiak24-Feb-06 9:19 
QuestionUsing the local area network with c# Pin
imads124-Feb-06 6:21
imads124-Feb-06 6:21 
NewsRe: Using the local area network with c# Pin
leppie24-Feb-06 6:50
leppie24-Feb-06 6:50 
Questionplease convert this to c# code Pin
superPaul10124-Feb-06 4:58
superPaul10124-Feb-06 4:58 
AnswerRe: please convert this to c# code Pin
Dario Solera24-Feb-06 5:03
Dario Solera24-Feb-06 5:03 
AnswerRe: please convert this to c# code Pin
Judah Gabriel Himango24-Feb-06 5:06
sponsorJudah Gabriel Himango24-Feb-06 5:06 

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.