Search results for query: *

  • Users: Simke
  • Order by date
  1. Simke

    How to use button click command

    How can i save my screen so i can give the questionform to other people? because i am making a test creator for teachers. teacher has to login and then he gets a layout to create tests, and when students login they get to chose from a test. but how can i code that the pupils get the test the...
  2. Simke

    How to use button click command

    ok thx, it works now
  3. Simke

    How to use button click command

    Thank you very much, i understand now. But now i have another problem :) during the sub Vraag1() i want to make the Button1 invisible but when i ad Button1.visible = False to the public sub Vraag1() it gives a error: name Button1 is not declared. I tried to ad "Dim Button1 As New...
  4. Simke

    How to use button click command

    It still doesn't work. AddHandler Button1.Click, AddressOf Button_Click the button gives error: "Name Button_Click is not declared" Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.click Vraag1() End Sub "Button1" gives error: "Handles...
  5. Simke

    How to use button click command

    ok, thx, gonna test it now (the project is already canceled btw, it was for me endwork of school, but i didnt went to school today because i am ill, and now my endwork partner tells me we have a other endwork :'( all my work for nothing)
  6. Simke

    How to use button click command

    With this code i add the button to my form Function Knop1() Dim Button1 AsNew Button Button1.Location = New Point(30, 40) Button1.Size = New Size(160, 24) Button1.Text = "Klik hier voor vraag 1." Me.Controls.Add(Button1) EndFunction but when i want to this, it won't do a thing: --> Here...
Back
Top