Search results for query: *

  1. T

    Button Counter

    Great job!! works like a charm but I noticed when I was debugging my program that the string that is built doesn't reset or clear itself. If I push button1 one time it counts the number as 1 press but when I clear the results to do another calculation and press button1 again it counts the number...
  2. T

    Button Counter

    Thank you so much!! my simple 2 year project is almost done and your suggestion works great but I have one little thing left. Your code uses the name of the button "button1, button2 etc..." but I need it to use the buttons text or make each buttons name a variable or something. Let me explain...
  3. T

    Button Counter

    String Help I got my buttons to work with the code below but if say button1 isn't pushed and just button2 is pushed I don't want my messagebox to show the variable or it's text if the button hasn't been pushed. It should just show the information for the buttons that have been pushed. How can I...
  4. 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...
  5. 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...
  6. 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...
  7. T

    Code check needed

    Hard to explain what i'm trying to do.... but use a treeview as like a main menu of sorts. Depending on what node on the treeview the user clicks it will do some other event in the program. It's not the traditional treeview that shows files etc...
  8. 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...
  9. 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...
  10. 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...
  11. 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.
  12. 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