Search results for query: *

  • Users: duelchamp1
  • Content: Threads
  • Order by date
  1. D

    Replace text

    Hi guys Does any one know how to make it so that when the user clicks a button it will replace the text in a label with the contents of a text boxs this is what I got so far: Me.lbl1.Text.Replace("1", frmText.NuNameTB.Text) Thanks
  2. D

    executable file

    Hey Can anyone tell me how I can make a executable file out of my vb program that is stand alone (it wont rely on .net Framework) thanks Duelchamp1
  3. D

    Inheriting information from another form

    Hey Basicly I am making a story writing reasorce for english students. where they type in so information into textboxs and then click go after which a new form opens with a basic storyline in it. This story line has gaps in it which I want to fill with the text they entered into the textboxes...
  4. D

    Search controls text

    Hey Can anyone tell me how to create a search feild that will when the user clicks a button search all the lables on the form and upon finding the right info will make that label visible. Also if anyone knows of a better way to search for then show information I would be happy for the help...
  5. D

    Resetting controls

    Hey guys can anyone tell me how I can make a button that will reset all the radio buttons and labels on a form. here is what I got so far: If lblBody1.Visible = True Then lblBody1.Visible = False End If If lblBody2.Visible = True Then lblBody2.Visible = False End If If lblBody3.Visible...
  6. D

    If statements that look at more then one variable

    Hey Basicaly I am trying to use if statments to make a button that will look at a set of variables and then based on those variables make a certain label visible e.g. if radIntro1.checked = true + if radBody3.checked = true + if radconc1.checked = true Then lblMark3.visible = True So...
Back
Top