Search results for query: *

  1. A

    Date MaskedTextBox

    I have simple MaskedTextBox designed to enter dates with the format mm/dd/yy. My code is Dim dteCurrent As Date = Now Me.mtxtKeyDate.Text = dteCurrent ...very simple, the result is: 61/22/006_ That means that it reads 6/12/2006, I need 06/12/2006. How can I add that zero that...
  2. A

    telephone formatting

    maskbox.dll is it true that i can load a file maskbox.dll and then drag it into the form?? if so, where can i download that file?
  3. A

    ID and password using a DataBase

    Db I'm using Access
  4. A

    ID and password using a DataBase

    http://www.geocities.com/alex_ea_2f/image.JPG, here is my image of how my application looks like, and here is the code, I still have the problem with SqlCommand. Thanks for your help 'Connection to the database Dim conn As String = "OleDbConnection1" 'Creates a new sql connection Dim...
  5. A

    ID and password using a DataBase

    SqlConnection It does not let me dubbug because SqlConnection is not declared. do I have to create a public method or the code has to be loaded on main method?
  6. A

    ID and password using a DataBase

    I have two textboxes designed for an ID and a password. This form is connected to a database that contains a table with ID's a passwords. The form also has a button and a hidden image. If the ID and passwords matches correctly with the information on the database, after clicking the button the...
  7. A

    telephone formatting

    How can I make a text box to be formatted (###)###-####. Is it possible to do it just like is done in access?
  8. A

    Counter control loop

    I need some help with a simple problem. I created a project with a label control "0" and a button control. I Added instructions to a button click handler, so that every time the button is pressed the number in the control increases by 1. Basicalley what I need is a counter that gives me the...
Back
Top