Search results for query: *

  1. V

    how to play audio file???

    FilePath = OpenFileDialog1.FileName AxMediaPlayer1.Open(OpenFileDialog1.FileName)
  2. V

    using ARROW KEYS

    Mouse Clicks and Keyboard events I made another thead but that one was very vague. I want to do the following: On F8 click then run a function; on the function i want it to do this Arrow key left Arrow key down (If there is a way to hold down the left arrow key for 5 seconds, other wise i...
  3. V

    using ARROW KEYS

    Ok i want to figure out how to make a program that automatically uses arrow keys and clicks. I'm not trying to cheat or anything and it's perfectly legitimate because this isn't even a 'real' game that counts for anything. But it still is a game lol. http://www.xgenstudios.com/play/stickrpg...
  4. V

    Help with group boxes/radio buttons

    I know but I want a procedure that clears ALL BUTTONS CHECKED, including the one that is checked.
  5. V

    Help with group boxes/radio buttons

    Thanks, that solved my problem... I know I could have put them all in one group box but I didn't want to, I wanted to FIGURE it out this way. It was rather a DESIGNER CHOICE lawl... Thanks though, I understand kinda but can you explain (i know it's basically the same) but a procedure that...
  6. V

    Help with group boxes/radio buttons

    Sorry to post again but my friend told me this would go through all the radio buttons I have on the form and uncheck them, but it doesn't work; Dim ctrl As Control For Each ctrl In Me.Controls If TypeOf (ctrl) Is RadioButton Then DirectCast(ctrl, RadioButton).Checked = False End If Next
  7. V

    Help with group boxes/radio buttons

    I don't want them all checked at the same time, but rather only ONE out of all the 22 in 6 different group boxes to be checked at one time. I see what you're discribing but is there a way I can just uncheck all the 22 radio buttons in the 6 different group boxes with a button? I know I could...
  8. V

    Help with group boxes/radio buttons

    I have 6 group boxes and among them 22 radio buttons total. I either want to be able to: At least use one button to uncheck all the buttons ( i know i could do this a long way, but I want to know an easy way to do it ), or be able to only allow one of the radio buttons among the 6 group...
  9. V

    Using Multiple Forms in VB.NET

    It depends on what version of Vb.net you are using... In 2005 version (newest) you can just do FORMNAME.Show() but in Vb.net (vb 7) you have to declare the form as a new form... then do form.show
  10. V

    Form refresh help

    Me.Refresh() ......?
  11. V

    [Help] trying to read what is on site

    I fixed this problem now! You can delete this topic.
  12. V

    [Help] trying to read what is on site

    not sure what u mean but if i do www.randomrune.com/auth/valid.php?username=BOB&password=BOB see how it returns "Welcome" and if i do www.randomrune.com/auth/valid.php?username=BOB&password=BOB90384093 It returns "invalid" I want it to read that response...
  13. V

    Looking for a little direction

    There are many C code to VB code converters.. Try google and search for one ;) No idea if you can put C into VB alone :S
  14. V

    [Help] trying to read what is on site

    Yes, i have used the 'search' button. I am a beginner and coding in Visual Basic.net (Visual Studio 2005 Beta) I am making a login application that detects if access is granted via internet The link of which I am doing this is; "www.randomrune.com/auth/valid.php?username=" &...
Back
Top