Search results for query: *

  1. Roberto

    Problem with multiple forms

    I've gone with the multiple ListBoxes set to show and hide on the one form. My project can move forward now so thankyou very much both of you for your help on this.
  2. Roberto

    Problem with multiple forms

    I've tried: FormB.Show FormA.Close But i get WindowsApplication1.FormA cannot refer to itself through its default instance; Use 'Me' instead I change it to FormB.Show Me.Close This gets rid of the error but then the program just ends
  3. Roberto

    Problem with multiple forms

    Hi, i'm building an application with 26 forms with a list of items on each page sorted by letter, so have FormA, FormB, FormC etc. There are buttons the user clicks to open whichever letter they want. I want to be able to open the Form and close the previous one at the same time. I've played...
  4. Roberto

    New Project ListView/Listbox?

    Hi, i am still quite new to VB.Net and am starting a new project, a front end for an emulator, just wanted a little advice about the best way to go about this. I've played about with a ListBox and want it to look like that with two images for each game (Title screen and Screenshot) There seems a...
  5. Roberto

    Timer Problem

    Still no joy, i've entered all the code you said (i think) Getting an 'End Of Statement Expected' error in the Timer2 Tick Event highlighted in red, but otherwise okay. Public Class Form1 Private TotalQuestionCount As Integer = 0 Private QuestionInterval As Integer = 5 Private...
  6. Roberto

    Timer Problem

    Followed your instructions this is what i did, no result with the code in action but i suspect i made a mistake instituting your code: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Timer1 = New Timer() Timer1.Interval =...
  7. Roberto

    Timer Problem

    Hi i can't work out how to solve this and am at my wits end with it. I'm experimenting with a times table tester that asks the user a question, waits 2 seconds then gives the answer and validates it against the user entered value. This i've got working, but i want to then clear all the boxes and...
  8. Roberto

    For...Next + Timer Issue

    I have three textboxes, when the Start button is pressed the program throws a multiplication question at the user. This is linked to a timer that waits and answers the question, then checks it against the user's answer. When clicking start i wanted the process to run ten times i.e. ten questions...
  9. Roberto

    For...Next + Timer Issue

    Hi, trying to get my For...Next loop to work, what am i not doing? I don't have any build errors but nothing happens. Still a newbie to VB.Net and struggling to understand loads. Would appreciate anyone's help on this. PrivateSub Form1_Load(ByVal sender As System.Object, ByVal e As...
  10. Roberto

    Timer Problem

    Cheers Mafro, thanks for your time and help. this should be enough to get me on my way now. Rob
  11. Roberto

    Timer Problem

    Yeah, that's it. It's been driving me mad today, hope to hear from you tomorrow. Rob
  12. Roberto

    Timer Problem

    All i've got so far are the workings of the buttons, end result will be started by clicking the button. Couldn't come up with a way to include a timer though: PrivateSub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStart.Click txtNumber1.Text =...
  13. Roberto

    Timer Problem

    i'm having trouble adding a timer to my program. It is a simple maths program with three TextBoxes. I would like the questions appearing in timed succession: 2 x 4 = 8 etc. The 2 when a 'Start' button is clicked, then a user selected length in seconds, then the same delay for the user to enter...
  14. Roberto

    Help With Calculating Weight

    Yeah, that's it. Code worked perfectly. Thanks for your time and help.
  15. Roberto

    Help With Calculating Weight

    Hi, having a problem working out how to convert Stone and Pounds to Pounds e.g. 10st 13lbs - 153lbs. Or in a textBox: 10.13 Started with: txtWeightResult.Text = Val(txtWeight.Text * 14) + Val(txtWeight2.Text) This works but i want a single TextBox to return the result instead. I think...
  16. Roberto

    Slipstreaming program installation

    I have loads of programs on CD and floppy from the last ten years of use. My project is to create a program compilation disc now that i have a DVD burner finally! Can i streamline the installation of each program to include the serial numbers that came with them, and edit program...
Back
Top