Search results for query: *

  1. G

    convert access database to/from xml file

    yea, converting a database table to an xml sheet was real easy with a dataset....just workin on going from an xml sheet to a database now Ok, i got it...forget this thread now...thanks
  2. G

    convert access database to/from xml file

    Does anyone have code that converts an xml file into a database? I googled it and found stuff but if anyone has vb.net code that would do it, can you let me know? Thanks
  3. G

    Inheritance/implementing

    I had an idea of the difference...but that really clarified any questions I had. I really appreciate your help guys. Thanks again. Hope you don't mind too much answering my newb questions.
  4. G

    Inheritance/implementing

    You can't have Public can you? It says it extends the BaseTest. Public Class Test Inherits BaseTest Implements ITestInterface Would it just be? Class Test Inherits BaseTest Implements ITestInterface
  5. G

    Inheritance/implementing

    If you have a class that needs to inherit from another class, and implement a different class, how would the first like look like(obviously not Public Class Form1) This is how you implement, but how do you inherit and implement? I tried lookin it up but couldn't figure it out. Public Class TV...
  6. G

    Need help with logic for Tictactoe game!

    yup, turns out that's what I needed....a little boost. Thanks again for that, i was able to finish up the rest logic.
  7. G

    Need help with logic for Tictactoe game!

    You don't know how much i appreciate this. I just need a jump start on this...i'm going to work on it and let you know how it goes. Thanks, Joe
  8. G

    Need help with logic for Tictactoe game!

    I appreciate your help here. I did try to think it through before coding, i'm just real inexperienced with this. This is what i was working on, right now it's only testing for the first line. It picks out a winner if the whole line is marked with the same letter. Now i just need to figure out...
  9. G

    Need help with logic for Tictactoe game!

    They were useful, but all they did was hardcode the possible winning solutions. I have to put the check in a for loop or something because i never know what the user will pick as for the game size. Coule be 3x3, 4x4, 5x5, 6x6, 7x7, 8x8, 9x9, or 10x10. So i can't hardcode all the solutions in...
  10. G

    Need help with logic for Tictactoe game!

    I'm sorry to bring this back up, but i really have no clue how to test for a winner when the user picks the amount of squares. I have no problem testing for a regular 3 by 3 game. But part 2 of the project is to be able to have the player chose how many squares between 3 and 10. Please let me...
  11. G

    Need help with logic for Tictactoe game!

    Hey thanks for the link. I took a look and it looks like they used a bunch of if statements as well with hardcoded numbers....i'm going to look at the other links now.
  12. G

    Need help with logic for Tictactoe game!

    I appologize if this is not the right spot for this thread, but i think it is. I'm new to vb.net. And I'm using 2003. Ok, i have a vb.net homework to make a tictactoe game. There's two parts, the first is to make a normal 3x3 game. The second is to make it so the user can select form 3x3 to...
  13. G

    Msgbox doesn't show text...help?

    You guys are great...thanks a lot for that, i'm just getting started with vb.net and that was really buggin me for a little while....anyway, it was the patch that i needed....just incase anyone else needs it, i got the patch from here...
  14. G

    Msgbox doesn't show text...help?

    Thanks for replying....i don't think it's code related....even if it's something simple like this: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click MsgBox("hello") End Sub a blank message box shows up..... but if i run it on one of...
  15. G

    Msgbox doesn't show text...help?

    Hey, when I used a msgbox or a text label in my windows app, it doesn't show the text. Last night i was messing with framework updates and what not, and the text on my msgbox showed up once. Then i went to sleep, woke up, tried it again, and its back to not showing up. Do you think this is...
Back
Top