Search results for query: *

  • Users: ssfftt
  • Content: Threads
  • Order by date
  1. S

    can't delete a record problem

    [solved]can't delete a record problem can anyone help to fix this piece of code for deleting a user in my user table? Private Sub btnUnregister_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnUnregister.Click SqlConnectionUserLogin.Open() 'get...
  2. S

    boolean datatype?

    [solved]boolean datatype? In my MSSQL table "User" there is a column called "gender", should it be a boolean type? In my database manager datatype list, there is no boolean. I tried to set it as "tinyInt" same as the way i did in Interbase stuff. In VB.NET, i have new user registration form...
  3. S

    how to auto generate record ID?

    [solved]how to auto generate record ID? I just learnt how to use "Data form wizard" in VB.NET, on the form, it asks for an ID (which is one of the columns of my User table) as well as values for other columns when adding new record. In real world, user wont have idea on inputing an ID.I have a...
  4. S

    represent a db column value in a textbox

    [solved]represent a db column value in a textbox I have these lines of code to retrieve a specific user from db, this user table contains USERNAME and PASSWORD. the sql selects both USERNAME and PASSWORD. I have a textbox called txtPW, when user click on "retrieve password" button, i want the...
  5. S

    retrieve password function

    --------------------------------------------------------------------------------I am making an user login screen , the login function works fine. Now i need another function which allows user to retrieve password. My idea is that user can click on a button "forgot password?", the application...
  6. S

    forgot password function

    I am making an user login screen , the login function works fine. Now i need another function which allows user to retrieve password. My idea is that user can click on a button "forgot password?", the application will go to database look for match of input user name, if there is no match, gives...
  7. S

    null value?

    [resolved]null value? I am learning this case: http://www.startvbdotnet.com/ado/msaccess.aspx I applied the code in the section of "Data Access using MSAccess" ---> "Sample Code" ---> "Code for retrieving records" , when i click on button1 at run time, it gives error...
  8. S

    a different case of retrieving SQL DB data for login form

    [RESOLVED]a different case of retrieving SQL DB data for login form hi all:I am using VB.NET 2003i have a login form that contains btnLogin, txtLoginName.Text and txtLoginPW.Textalso have a SQL database table contains 2 columns : user and pwon the login frm, i have visually setup...
  9. S

    How to call a form from another from's button click event?

    [RESOLVED] How to call a form from another from's button click event? hi every one, I am new to here and new to VB.NEThere is an easy question:I have frmLogin and frmRegister. on frmLogin i have a button called btnReg.What can i do to display frmRegister and hide frmLogin by clicking on...
Back
Top