Search results

  1. S

    multi choise questions code

    Dears please I need your help !!!!!
  2. S

    multi choise questions code

    Thanks To FoFa and Mile-O-Phile Main problem, How I save ALL ansewers. T4 as a result page. When I answer 100 Questions, in the result page(T4) I get save only last answer but should I have all answer. To FoFa About value is ok work perfectly I get score for any right answer in T1. To...
  3. S

    multi choise questions code

    Hi for all I have multi choise questions Form when I choose the answer on all groubs by option button, I want save all answer in text(T4) , My problem I get one answer only for last choose at the last groub in the text(T4) The Main answer text is ( CORRECT ANSWER or WRONG ANSWER AND THE...
  4. S

    option code

    thank you so much WayneRyan and Pat Hartman you and Pat Hartman are right "Each option group stores a single value" My form MULTI-CHOISE QUESTION for students so I like code to store score in tabel, when I have three groub like G1 incloud op1 op2 op3 G2 incloud op1 op2 op3 G3 incloud op1...
  5. S

    option code

    thanks can i use 0.1 or 0.01 for value as adiffernt value (three columns in the table to hold a value) I dont understand If you can explain more
  6. S

    option code

    thank you so much Pat Hartman If you have any way to use 0 value for all options EXCEPT one option =1 in each groub.
  7. S

    option code

    HI FOR ALL NEED OPTION CODE Three option groubs G1 G2 G3 each groub has three options A B C, and text with option, all options have value = 1 I want each option selected add with other seletc I need code for result addition in T1 and text in T2, textbox ( T1, T2) Regards;
  8. S

    Flash Memory Disk changed when I use it in other computer

    thanks to Pat Hartman and KenHigg. Dear KenHigg is it easy to remap my pc?
  9. S

    Flash Memory Disk changed when I use it in other computer

    Hi for all Flash Memory Disk changed when I use it in other computer so I made link tabel to flash memory disk name's (H) in my Home Copmuter then I used it in Work Computer but the disk name became (G) so I can't open the data .
  10. S

    code for options

    thank you so much Tony Hine i make like this code but I have error in line number 10 became red color ((MsgBox “Error In Case”)) also when I select option from first frame and second frame I did not get the total value in the text(T1). Private Sub Frame0_AfterUpdate() Select Case Frame0...
  11. S

    code for options

    How I make code for options First selection: option1 = 0.4 option2 = 0.5 option3 = 0.6 Second selection Option4 = 0.4 option5 = 0.5 option6 = 0.6 The user selects one option from first selection and one option from second selection then the result come in textbox
  12. S

    make the form protect all records unless newest 8 records

    I use this code but I have error 0n line 1 and 10 with yellow and and red color. Private Sub Form_Current() Me.RecordsetClone.MoveLast If Me.CurrentRecord <= Me.RecordsetClone.RecordCount - 8 Then Me.AllowEdits = False ' Me!YourS.Form.AllowEdits = False Else...
  13. S

    make the form protect all records unless newest 8 records

    Hi dears Can I make the form protect all records unless newest 8 records
  14. S

    password become star

    thank you so much can you explain how I set the fields Input Mask to Password?
  15. S

    password become star

    hi Jack thank you so much can you explain more
  16. S

    password become star

    when I write a password , I like it become star please amend this code: Private Sub Form_Open(Cancel As Integer) If InputBox("Enter you Password", "For conformation") <> "aaafffjjj" Then DoCmd.CancelEvent MsgBox " Error passport", 64, "For Conformation" Else DoCmd.OpenForm "Fphone" End If...
  17. S

    Voice Property

    VOICE PROPERTY I have access data base program for employee and country code information The customers call to ask for employee phone number and country code the operator will answer the phone then press the bottom to give the number by computer
  18. S

    Voice Property

    Hi dear Do I find the VOICE PROPERTY in ms access to make the program answer by telephone .
  19. S

    missing record by empty textbox search

    Hi In the form When I make search or enter for searching, and textbox was empty suddenly I miss record no.1, when I make search again with empty textbox I miss record no. 2, and continue the same problem Thank you
  20. S

    Save Or Delete By Buttons Only

    I get this code form your example: ________________________________ Option Compare Database Dim booFormLock As Boolean Private Sub cmdCancel_Click() Me.Undo booFormLock = True DoCmd.Close acForm, Me.Name End Sub Private Sub cmdConfirm_Click() DoCmd.RunCommand acCmdSaveRecord...
Back
Top Bottom