Recent content by vexatu

  1. V

    Multiple choices

    If I don't put the choices in the option group, then I must put them free in the form. So when I check an answer (let's say that I check answer number 3), it records the answer number with the value "-1" in the table tblTest, field Answered. That instead of 3, my answer ? Any idea ?
  2. V

    Multiple choices

    Hi. Problem 1: I created an Option Group with 3 checkbox option buttons. Above those options is a question that can have multiple choices. For example for question: "How it is ?" The answering options are: "1) Big", "2) Red", "3) Tidy". I want to could check 2 and 3. Well the problem is that I...
  3. V

    Question Add new record via VB

    As you said, boblarson. The BIG meesage has come: A text box saying: Overflow. Solve it. I changed Dim cod_numeric As String because the field CNP where is stored cod_numeric has Text as datatype, because on Integer datatype i can't store big numbers like: 1900213100195 Ty. It was helpful.
  4. V

    Question Add new record via VB

    Any help please ?;)
  5. V

    Question Add new record via VB

    Very good. Now I have another problem. Code:Private Sub cmdGradeTest_Click() Dim strSQL1 As String strSQL1 = "insert into Examene (CNP, DataExamen, Punctaj) Values (1900213100195, #2/13/2009#, 26)" DoCmd.RunSQL strSQL1 End SubWith above code, it is added a new record in table...
  6. V

    Question Add new record via VB

    Thank you. It works fine Private Sub Command2_Click() Dim strSQL1 As String strSQL1 = "insert into Table1 (Calendar, Mark) Values (#29-Aug-2009#, 24)" DoCmd.RunSQL strSQL1 End Sub When I press the button, it records a new value in the Table1. Good for now! But before record it, a...
  7. V

    Question Add new record via VB

    Hi, I have a database with one Table and one Form. The table "Table1" fields: ID (AutoNumber), Date (Date/Time), Mark (Number) In Form "Form1" is a button. When I press the button I want to add a new record in table "Table1" with these values: "26-Aug-2009" and "21" for Date and Mark...
  8. V

    Sum Update

    Hi, I can't get to the solution of my problem. I have a database with a table "Intrebari" (contains N questions, answers, correct answer) and a temp table "tblTest" (contains questions M questions randomly generated from "Intrebari", and remember your ANSWERED OPTION). The DB also has a form...
  9. V

    Countdown timer

    Thank you missinglinq. It works.
  10. V

    Countdown timer

    Yes, I searched before and I found this: http://www.access-programmers.co.uk/forums/showthread.php?t=77713 But is not helping me because the script is made iterate only 3 times. Just download that zip from link and take a look. I need one for 30 minute, or more. Understand me ? :p
  11. V

    Countdown timer

    Hello, I want to make a form, with a countdown timer then close itself. Let's say that when I opened the form, a countdown timer displays the number of "n" seconds/minutes left until the form will close, and after "n" second/min the form closes. Could anyone help me step by step, please ?
Back
Top Bottom