Click here to Skip to main content
15,921,837 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Disabling the keyboard Pin
Dave Kreskowiak15-Feb-11 2:08
mveDave Kreskowiak15-Feb-11 2:08 
AnswerRe: Disabling the keyboard Pin
Eddy Vluggen11-Feb-11 10:08
professionalEddy Vluggen11-Feb-11 10:08 
AnswerRe: Disabling the keyboard Pin
Bernhard Hiller13-Feb-11 20:44
Bernhard Hiller13-Feb-11 20:44 
Questioncount character frequency Pin
Cool Smith11-Feb-11 3:24
Cool Smith11-Feb-11 3:24 
AnswerRe: count character frequency Pin
Tieske811-Feb-11 4:18
professionalTieske811-Feb-11 4:18 
GeneralRe: count character frequency Pin
Cool Smith11-Feb-11 4:31
Cool Smith11-Feb-11 4:31 
GeneralRe: count character frequency Pin
Tieske811-Feb-11 6:02
professionalTieske811-Feb-11 6:02 
GeneralRe: count character frequency Pin
Dave Kreskowiak11-Feb-11 6:17
mveDave Kreskowiak11-Feb-11 6:17 
All you have to do is read the file into a String, then iterate over the Characters in the string and add them to a Dictionary collection. Since Dictionary is a key/value pair collection, the "key" will be the character you are looking at. The "value" will be the count of those characters. When you go to add the character to the collection, you first see if it is already there, and if so, get it's value and increment it by one. If not, add the new key with a value of 1. Move on the next character...

AnswerRe: count character frequency Pin
Eddy Vluggen11-Feb-11 10:20
professionalEddy Vluggen11-Feb-11 10:20 
GeneralRe: count character frequency Pin
Cool Smith11-Feb-11 22:19
Cool Smith11-Feb-11 22:19 
GeneralRe: count character frequency Pin
Eddy Vluggen11-Feb-11 23:48
professionalEddy Vluggen11-Feb-11 23:48 
GeneralRe: count character frequency Pin
Cool Smith12-Feb-11 0:42
Cool Smith12-Feb-11 0:42 
GeneralRe: count character frequency Pin
Cool Smith12-Feb-11 4:00
Cool Smith12-Feb-11 4:00 
GeneralRe: count character frequency Pin
Eddy Vluggen12-Feb-11 5:43
professionalEddy Vluggen12-Feb-11 5:43 
QuestionStoring Binary Data in SQL Database with VB.NET Pin
Central_IT10-Feb-11 3:31
Central_IT10-Feb-11 3:31 
AnswerRe: Storing Binary Data in SQL Database with VB.NET Pin
Simon_Whale10-Feb-11 3:41
Simon_Whale10-Feb-11 3:41 
QuestionThreading question; cross thread communication/invokation Pin
Tieske89-Feb-11 23:26
professionalTieske89-Feb-11 23:26 
AnswerRe: Threading question; cross thread communication/invokation Pin
Luc Pattyn10-Feb-11 3:46
sitebuilderLuc Pattyn10-Feb-11 3:46 
QuestionRe: Threading question; cross thread communication/invokation Pin
Tieske811-Feb-11 0:14
professionalTieske811-Feb-11 0:14 
AnswerRe: Threading question; cross thread communication/invokation Pin
Luc Pattyn11-Feb-11 0:38
sitebuilderLuc Pattyn11-Feb-11 0:38 
GeneralRe: Threading question; cross thread communication/invokation Pin
Tieske811-Feb-11 2:54
professionalTieske811-Feb-11 2:54 
QuestionGetting Email Address from Exchange Server Pin
Dominick Marciano9-Feb-11 16:49
professionalDominick Marciano9-Feb-11 16:49 
AnswerRe: Getting Email Address from Exchange Server Pin
Eddy Vluggen10-Feb-11 7:22
professionalEddy Vluggen10-Feb-11 7:22 
GeneralRe: Getting Email Address from Exchange Server Pin
Dominick Marciano10-Feb-11 8:19
professionalDominick Marciano10-Feb-11 8:19 
GeneralRe: Getting Email Address from Exchange Server Pin
Eddy Vluggen10-Feb-11 8:41
professionalEddy Vluggen10-Feb-11 8:41 

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.