User Profile

Collapse

Profile Sidebar

Collapse
josh wood
josh wood
Last Activity: Dec 10 '11, 02:27 PM
Joined: Oct 31 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • josh wood
    started a topic Read from dictionary

    Read from dictionary

    I have a program that looks up words in a dictionary. The dictionary is in the form of a text file with one word per line. I have tried
    Code:
    If TextBox.Text.Contains(Dictionary.ReadLine()) Then 
    MsgBox("This contains a word", MsgBoxStyle.Information, "Info")
    end if
    however it only looks at the first line of the dictionary, not every line. Any ideas on how to make it read each line individually. By the way,...
    See more | Go to post

  • josh wood
    started a topic Substitution Cipher Solver

    Substitution Cipher Solver

    I am trying to make a substitution cipher solver in vb.net but whenever I try to solve a cipher text using methods other than shift it goes back to the original. This is the code I have so far
    Code:
    Dim Ctl As Control, nAsc As Int16
            For Each Ctl In Panel2.Controls
                If TypeOf (Ctl) Is TextBox Then
                    nAsc = Asc(Microsoft.VisualBasic.Left(Ctl.Name, 1))
                    If Reverse.Checked
    ...
    See more | Go to post
    Last edited by josh wood; Nov 14 '11, 06:00 PM. Reason: I forgot to attach the files

  • nothing, I have no idea how to go about this and I can't find anything on the internet
    See more | Go to post

    Leave a comment:


  • how to make a vigenere cipher solver in vb.net?

    I am making a cipher solver in vb.net 2008 and I have made it solve ciphers for most ciphers but I can't make it do vigenere. I have got three textboxes named "EncryptionVige nere", "SolutionVigene re" and "Key" and a button called "SolveVigen ere"

    Note this is not a homework project
    See more | Go to post

  • josh wood
    started a topic email reader fail

    email reader fail

    I am trying to create an email reader in vb.net 2008 but when I use the following code I get an error message saying
    "Unable to read data from the transport connection: An established connection was aborted by the software in your host machine."

    Code:
    Imports System.Net.Sockets
    Imports System.Text
    Public Class Home
    
        Private Sub GetMailButton_Click(ByVal sender As System.Object,
    ...
    See more | Go to post

  • josh wood
    started a topic Change the size of textbox

    Change the size of textbox

    I am making a webbrowser in vb.net 2008 and I want to adjust the size of the address bar when the form resizes. I have buttons and seperators around it that adds up to 606 pixels wide. So how do I make the address bar resize to fit the toolstrip when the form resizes?
    See more | Go to post
No activity results to display
Show More
Working...