Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

draginvoke5

Members
  • Posts

    103
  • Joined

  • Last visited

    Never

draginvoke5's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I was wondering if anyone could help me still.
  2. Its Illegal to get it for free, but if you really want to you can get it as a torrent from torrent sites. I would give a link but it is illegal like I said.
  3. So I fixed the other problem because of another member named Ryo, and after I got some sleep I fixed it and then I did a little tweaking and now I got this error: No value given for one or more required parameters. And its a OleDbException error. and this is the code for Login: ``` Dim connString As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\Tammie\AppData\Local\Microsoft\VisualStudio\11.0\Databases\userDB.accdb" Dim myConnection As OleDbConnection = New OleDbConnection Dim da As OleDbDataAdapter Dim strSQL As String Dim ds As DataSet Dim firstName As String Dim userName As String strSQL = "SELECT tblUsers.firstName FROM tblUsers " strSQL = strSQL & "WHERE (tblUsers.userName = '" & (Me.TextBox1.Text) & "' " strSQL = strSQL & "And tblUsers.userPassword = '" & (Me.TextBox2.Text) & "'" strSQL = strSQL & "And tblUsers.Email = '" & (Me.TextBox3.Text) & "' );" myConnection.ConnectionString = connString da = New OleDbDataAdapter(strSQL, myConnection) ds = New DataSet da.Fill(ds, "users") myConnection.Close() For Each rowTest In ds.Tables(0).Rows firstName = rowTest("FirstName").ToString Next If userName "" Then MessageBox.Show("Welcome " & userName & "!") Else MessageBox.Show("Please check Username and Password.") End If ``` And this line is highlighted: ``` da.Fill(ds, "users") ``` Not sure if this is needed but here is the code for registration: ``` Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim strSQL As String Dim objCmd As New OleDbCommand strSQL = "INSERT INTO tblUsers(userName, userPassword, Email) " strSQL = strSQL & "VALUES('" & (Me.TextBox1.Text) & "', '" & (Me.TextBox2.Text) & "','" & (Me.TextBox3.Text) & "');" Dim Con = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\Tammie\AppData\Local\Microsoft\VisualStudio\11.0\Databases\userDB.accdb") Con.Open() objCmd = New OleDbCommand(strSQL, Con) objCmd.ExecuteNonQuery() Con.Close() MessageBox.Show("You have successfully registered. Please login.") Form1.Show() Me.Hide() End Sub ``` Thanks in advance for your help ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png)
  4. So I was doing a little coding and It's 5 AM where I am and I haven't gotten any sleep since 2 days ago so I'm pretty sure the answer is right in front of me but I'm to tired and I can't find it…. So here is the code: ``` Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim connString As String = "Provider=Microsoft.ACE.OLEDB.12.0;DataSource=C:\Users\Tammie\AppData\Local\Microsoft\VisualStudio\11.0\Databases\Users.accdb" Dim myConnection As OleDbConnection = New OleDbConnection Dim da As OleDbDataAdapter Dim strSql As String Dim ds As DataSet Dim firstName As String strSql = "SELECT tblUsers.firstName FROM tblUsers" strSql = strSql & "WHERE (tblUsers.Username = '" & (Me.TextBox1.Text) & "' " strSql = strSql & "And tblUsers.Password = '" & (Me.TextBox2.Text) & "');" myConnection.ConnectionString = connString da = New OleDbDataAdapter(strSql, myConnection) ds = New DataSet da.Fill(ds, "Users") myConnection.Close() For Each rowTest In ds.Tables(0).Rows firstName = rowTest("FirstName").ToString Next If firstName "" Then MessageBox.Show("Welcome " & firstName & "!") Else MessageBox.Show("Please check user name and password.") End If End Sub ``` The error is on this line; ``` da.Fill(ds, "Users") ``` and it says this: OleDbException was unhandled. So I'm pretty sure I'll get a response soon and that will be that. So thanks in advance!
  5. Port forward if trying to connect to another sever like your friends. Or a Sekaru said if the server is not up it will not connect.
  6. draginvoke5

    [EA] MiniMap

    Thank you very much for this Ertzel! I really appreciate it ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png)
  7. Try re-installing the runtimes files found here: http://jcsnider.freemmorpgmaker.com/Eclipse%20Runtime%20Files%20Installer.exe
  8. Your images are broken ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png)
  9. > Yeah sorry I didn't think about a year and a half into the future when I wrote this :]. You, are a comedy genius.
  10. > Server Side , modConstant > > Find this > > ``` > > Public Const ITEM_SPAWN_TIME As Long = 30000 ' 30 seconds > > ``` > > Replace it with > > ``` > > Public Const ITEM_SPAWN_TIME As Long = 0 ' 0 second > > ``` Now I'm no programmer but I think that this will make the item not spawn at all. Although I could be wrong.
  11. Thanks, bro. I really appreciate it!
  12. > How did you add your elf race, since thats not one of the default races. You may have added something wrong in there. I just created a warp spell and it worked fine for me. What I think it is, is that he made his classes as races and he changed the class requirement of the elf and somehow there is a bug or something and the classes got switched and he can't figure out how to fix it. I, honestly don't think its a bug but he could be misunderstanding the class requirement gig, but you never know, it could be a bug.
  13. Hey Joyce, this is why I love you ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png)
  14. Okay so the pickup button is space. And hopefully those fixes will be in there soon.
×
×
  • Create New...