Re: black jack game for pc
You forgot the Download link.
Re: black jack game for pc
Re: black jack game for pc
Quote:
Originally Posted by
matthewjohn
sorry fixed
Nice game. I think I beat it :D
http://img51.imageshack.us/img51/9597/p212.png
Re: black jack game for pc
Lol nice one how u manage that lol
Sent from my iPhone using Tapatalk
Re: black jack game for pc
Quote:
Originally Posted by
matthewjohn
Lol nice one how u manage that lol
Sent from my iPhone using
Tapatalk
simple cheat engine hack :D
Re: black jack game for pc
Lol nice my first game
Sent from my iPhone using Tapatalk
Re: black jack game for pc
Quote:
Originally Posted by
matthewjohn
Lol nice my first game
Sent from my iPhone using
Tapatalk
You should add an option to save your game (or at least your money).
Re: black jack game for pc
I woundant know how to I only learnt c# a couple of hours ago
Sent from my iPhone using Tapatalk
Re: black jack game for pc
Quote:
Originally Posted by
matthewjohn
I woundant know how to I only learnt c# a couple of hours ago
Sent from my iPhone using
Tapatalk
Here's the VB code I use in my Editors to load/save the Username for the Login Form. You'll have to convert it to C# and change the UsernameTextBox to your Money Label thing. Just change the stuff I put in Red to what you are using in your Source Code.
LOAD:
Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim temp As String = System.IO.Path.GetTempPath
If System.IO.File.Exists(temp & "\360HavenUsername.dat") Then
UsernameTextBox.Text = System.IO.File.ReadAllText(temp & "\360HavenUsername.dat")
End If
End Sub
SAVE: (Put inside of a SaveButton.Click)
Code:
Dim temp As String = System.IO.Path.GetTempPath
System.IO.File.WriteAllText(temp & "\360HavenUsername.dat", UsernameTextBox.Text)
response.Close()
Re: black jack game for pc
Quote:
Originally Posted by
Idlehands88
Here's the VB code I use in my Editors to load/save the Username for the Login Form. You'll have to convert it to C# and change the UsernameTextBox to your Money Label thing. Just change the stuff I put in Red to what you are using in your Source Code.
LOAD:
Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim temp As String = System.IO.Path.GetTempPath
If System.IO.File.Exists(temp & "\360HavenUsername.dat") Then
UsernameTextBox.Text = System.IO.File.ReadAllText(temp & "\360HavenUsername.dat")
End If
End Sub
SAVE: (Put inside of a SaveButton.Click)
Code:
Dim temp As String = System.IO.Path.GetTempPath
System.IO.File.WriteAllText(temp & "\360HavenUsername.dat", UsernameTextBox.Text)
response.Close()
thanks i will give it ago
Re: black jack game for pc
Great job Matthew keep it up :D
Re: black jack game for pc