No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Re: Im not familiar with this "OleDbDataReader" product but I'll take a stab in the dark; could it possibly be some Windows7 setting that you've overlooked with regards to list arrangement? | |
Re: Im not sure if that's a problem with VB or the images that you have; Im more inclined to believe that its the images that you load into your VB form. If you have access to photoshop, try that to remove the white background. If you're still having trouble, let … | |
I'm a beginner student learning Visual Basic 2010, and im trying to create an auction countdown timer in my form but I'm not sure how to do it. The countdown timer Im interested in would be similar to the ones found in BeezID or Swoopco, where the timer continuously counts … | |
Re: Im a beginner VB-er too, so I know what you're going through Rookanga. Im not sure what you mean by how to put the radio buttons in the groupbox (you can do it in design time, put a groupbox onto the form then drag the radio buttons into the group … | |
Re: If i understood you correctly, all you have to do with the addButton_clicked event is this [CODE] Private Sub addButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles addButton.Click ListBox1.Items.Add(TextBox1.Text) End Sub [/CODE] Then for the numeric validation for the textbox, simply check with an if statement, example: [CODE] If … |