Search results for query: *

  1. D

    Inheriting information from another form

    Hey I understand that the principals are the same but it does not work is it something to do with the if statement or something like that because it will work fine when I tell it to get text from somewhere for example: Me.lblStory.Text = Me.lblStory.Text.Replace("8", frmText.txt8.Text) Any...
  2. D

    Inheriting information from another form

    hey thanks for your help with that got a new problem though I got that other program to work fine thanks to the code on that site. But now I am trying to make a program where the user can select from one of three radio buttons and then click ok after which a new form with a label box on it will...
  3. D

    Including the .NET Framework in your setup

    hey guys um I have been trying get it to deploy .net framework 2.0 in that way but it never works I get always get an the following error "Error 2 The install location for prerequisites has not been set to 'component vendor's web site' and the file 'DotNetFX\instmsia.exe' in item...
  4. 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
  5. 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
  6. 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...
  7. D

    Search controls text

    Hey thanks for the info I was hoping you might be able to show me how the code would look if when somone types into a text box "Mark" and then lblMark becomes visible Thanks
  8. 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...
  9. 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...
  10. D

    If statements that look at more then one variable

    Hey guys problem solved thanks for all your help :):)
  11. D

    If statements that look at more then one variable

    Hey Ok what I am trying to do is build a learning resource program for English students. The basic Idea is that the user must assemble an essay buy selecting 3 preprogrammed paragraph such as a introduction a body and a conclusion that they want to use in their essay they do this by selecting...
  12. D

    If statements that look at more then one variable

    Hey guys thanks for all your help on this just to clarify though. There are 27 different posibilities because the radio buttons are split into three groups of three and the order in which you select radio buttons from each group directly affects what label I want to show. :)
  13. 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