Click here to Skip to main content
15,886,963 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Taking Snapshot of any form of project at run time... Pin
il_masacratore26-Feb-07 21:28
il_masacratore26-Feb-07 21:28 
QuestionDatagridview Numeric Column : Plz Help Pin
priya_p23326-Feb-07 18:43
priya_p23326-Feb-07 18:43 
Questionto connect VB with MATLAB Pin
PoulomiGanguli26-Feb-07 17:26
PoulomiGanguli26-Feb-07 17:26 
QuestionHow To Delete All Files In Folder Pin
lone_wolf35126-Feb-07 17:20
lone_wolf35126-Feb-07 17:20 
AnswerRe: How To Delete All Files In Folder Pin
Dave Kreskowiak27-Feb-07 4:27
mveDave Kreskowiak27-Feb-07 4:27 
QuestionHashing Pin
Radiit26-Feb-07 17:15
Radiit26-Feb-07 17:15 
AnswerRe: Hashing Pin
Colin Angus Mackay26-Feb-07 22:11
Colin Angus Mackay26-Feb-07 22:11 
AnswerRe: Hashing Pin
kubben27-Feb-07 3:21
kubben27-Feb-07 3:21 
If you are using Visual Studio 2005 which is .net 2.0 you can do this if you can use MD5:
Dim data(DATA_SIZE) As Byte

' This is one implementation of the abstract class MD5.
Dim md5 As New MD5CryptoServiceProvider()

Dim result As Byte() = md5.ComputeHash(data)

Still it would be better to use SHA1. It is a stronger hash. Anyway that code looks like this:
Dim data(DATA_SIZE) As Byte
Dim result() As Byte

Dim sha As New SHA1CryptoServiceProvider()
' This is one implementation of the abstract class SHA1.
result = sha.ComputeHash(data)

If you are using .net 1.1 there aren't any framework libraries you can use. There are some third party tools, but you would most likely have to pay for them.

Hope that helps.
Ben
Questionprinter option in file menu Pin
veeru1026-Feb-07 17:13
veeru1026-Feb-07 17:13 
QuestionMicrosoft KB-180736 Pin
hhuntman26-Feb-07 16:13
hhuntman26-Feb-07 16:13 
AnswerRe: Microsoft KB-180736 Pin
Dave Kreskowiak27-Feb-07 2:42
mveDave Kreskowiak27-Feb-07 2:42 
QuestionHow to open Excel file? Pin
moomoooomoo26-Feb-07 15:36
moomoooomoo26-Feb-07 15:36 
AnswerRe: How to open Excel file? Pin
Krish - KP26-Feb-07 23:18
Krish - KP26-Feb-07 23:18 
Questionvb.net update query how to Pin
JustmeNick26-Feb-07 11:21
JustmeNick26-Feb-07 11:21 
AnswerRe: vb.net update query how to Pin
Guffa26-Feb-07 21:38
Guffa26-Feb-07 21:38 
GeneralRe: vb.net update query how to Pin
JustmeNick27-Feb-07 4:16
JustmeNick27-Feb-07 4:16 
AnswerRe: vb.net update query how to Pin
Guffa27-Feb-07 6:25
Guffa27-Feb-07 6:25 
QuestionRounding a number in VB.NET Pin
harveyhanson26-Feb-07 10:12
harveyhanson26-Feb-07 10:12 
AnswerRe: Rounding a number in VB.NET Pin
Christian Graus26-Feb-07 10:24
protectorChristian Graus26-Feb-07 10:24 
AnswerRe: Rounding a number in VB.NET Pin
The ANZAC26-Feb-07 10:30
The ANZAC26-Feb-07 10:30 
GeneralRe: Rounding a number in VB.NET Pin
Christian Graus26-Feb-07 10:33
protectorChristian Graus26-Feb-07 10:33 
AnswerRe: Rounding a number in VB.NET Pin
JUNEYT26-Feb-07 11:17
JUNEYT26-Feb-07 11:17 
GeneralRe: Rounding a number in VB.NET Pin
TwoFaced26-Feb-07 11:55
TwoFaced26-Feb-07 11:55 
GeneralRe: Rounding a number in VB.NET Pin
Christian Graus26-Feb-07 12:39
protectorChristian Graus26-Feb-07 12:39 
GeneralRe: Rounding a number in VB.NET Pin
TwoFaced26-Feb-07 12:56
TwoFaced26-Feb-07 12:56 

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.