Search results for query: *

  1. S

    Sudoku

    still around lol I'm glad to see you were able to finish a working version miterss, and I'm sorry you found my version um, incomprehensible. I admit, recursion and multithreading are somewhat advanced topics to throw at someone new at programming. When you have tackled recursion, you might...
  2. S

    Sudoku

    what can VB make? VB .NET can produce programs that use every aspect of the Windows operating system, so yes, it can make all those game types you spoke of. BUT.... VB .NET isnt suited well for rich game development tho - there is just so many "framework" things you need for the big games -...
  3. S

    Sudoku

    looks like all of freewebs is down right now... yes, as a worker I've often (but not always) done what the boss asked me to do. I prefer contact work try freewebs link later, when the www.freewebs.com site will come up in your browser
  4. S

    Sudoku

    Update: solves remaining puzzle on the fly! changed it so it can solve the puzzle as it appears in an many ways possible through recursion, rather than just show the solution it came up with in the first place. this way, a player can test to see if their input yields an unsolvable puzzle, and...
  5. S

    Sudoku

    oh yeah.... this program doesnt force the user to complete the puzzle the same way that it way built originally - some puzzles have more than one solution all it does is check to see if the user put in a valid entry based on the rules - no repeats in any column, row or containing block and...
  6. S

    Sudoku

    yes juggalo.... great minds think alike juggalo... the sudokugenerator class was just a quick proof of concept thing but it worked, so... now the SudokuGenerator class spits out two arrays in its Completed event; a 9x9 for values and a 9x9 boolean for a "mask" that picks intLeastBlanks to...
  7. S

    Sudoku

    its funny... hmmm, i had a completely different take on this... to not have a solution done when the seeds were populated.... to randomly generate a completed puzzle, how about this brute force method threadable class? the code is pretty short. Idea is, loop on the rows, and columns. At...
  8. S

    Sudoku

    some Sodoku help hehehe re the "planted cells", they are in gray and can't be selected, a checkmark is possible, but i dont think it's necessary The Solve button not working isnt a glitch, it's just sitting there, waiting for you to program a "solution" routine that can solve any sodoku...
  9. S

    how do anyone create a game in vb.net?

    Games in VB.Net You might want to take a look at this too, you can use it to create cool games with much less effort... http://msdn.microsoft.com/coding4fun/coolapplications/KPL/default.aspx one supernice feature is that it can show you .Net code for what you just did
  10. S

    Sudoku

    some soduko help (continued) i looks like the Code blocks have some very important spaces removed (don't know how that happened) but the zip file attachment will be fine here is a screenshot
  11. S

    Sudoku

    some Sodoku help I found your post looking for grid formatting help, of all things and since this game always interested me, i decided to code up at lease a user played version. Did it last night, it uses a dataset and bound grids with custom columns for "enabled = false" for seed cells, and...
Back
Top