Search results for query: *

  • Users: teamdad
  • Content: Threads
  • Order by date
  1. T

    Button Counter

    Please bear with me on this, I have a cognative disability and am trying to write a program to help myself with doing everyday tasks. I'm doing a pretty good job so far but ran into some problems on this one part. I'm using Visual Basic 2008 Express Edition. On my Form1 I have ten individual...
  2. T

    Validate results unique random

    I'm currently using the code below to create random numbers from a button click, I need something in my code to ensure that numbers are not duplicated. For example the range is 0 to 30 picking 3 numbers in 1 play. It should give results like 1-2-3 for example and not duplicate any number like...
  3. T

    Populate form 2 from form 1 results

    Below are the guts of my program, I need to somehow get the results of my calculations with the code below on frmMain to be displayed in frmDisplay in a listbox named ListBoxDisplay. I have commented my code so it's easier to understand. Any code help is appreciated. Public Sub...
  4. T

    Code check needed

    My code below will debug without errors, it just doesn't show the msgbox's like it should when the user clicks on the specific nodes. Anyone know how to get this fixed? I'm new to .NET and sorry if this is a simple answer/fix but I need to know what to do. Public Class Form1 Dim Tc3p1 As...
  5. T

    Treeview help needed

    I have a Treeview with 5 nodes on it, Tc3p1 is the name & tag of the specific node I want the user to click on in my treeview to run the code below. It should show the output to the Label1 that I also have on the form. My code isn't working at all and I need a full working code example like I...
  6. T

    What treeview node was selected?

    Still learning vb.net 2005 and was needing to know how to determine what treeview node was selected so I can fire an event. What I have so far is below and it don't work. Each of my nodes have unique names so I can tell them apart pretty easily. Working code examples are best for me since i'm...
  7. T

    Budget Program

    I am wanting to try my hand at writing a somewhat simple household budget program and haven't found anything on the Internet about writing software like this. Anyone have good links to example programs, source code or maybe something to get me started in the right direction? Thanks in advance.
  8. T

    Working with delimited files

    This may be dificult but here goes. I have a delimited file that I need to read/open in a RichTextBox that I have on a program, it looks like Windows Notepad. Once the file is opened in the program it needs to filter out what I don't want and just focus on what I do want. In the program it...
Back
Top