Recent content by Oflores23

  1. O

    OptionButton Property Disable

    Solution: The frame was getting focus before disabled the button. You can't disable controls if they are focus, this wasn't the same case, because the focus was on the frame, not in the button, but it happened the same way, I just needed to re-focus in other place.
  2. O

    OptionButton Property Disable

    Hi guys. I have an option group or "frame", and inside I have 4 buttons (Option Buttons). They are called: opt_mtto opt_elec opt_qlty opt_complete So I was selecting the property of each button to Enable = False, so when my form load they will be Disabled. But, I didn't to be coding each...
  3. O

    Access - Query when DataSelected

    Ok: I Have 3 tables: this are my Relationships. (Sorry I can't Post LInks".) h t t p : / / Imgur.com / Mctu89d This is my design form of my frm_bitacora h t t p : / / imgur.com / xCgDULb We can see in my MainForm, that I have a combobox, and a subform, in the part below in "Form Footer"...
  4. O

    Access - Query when DataSelected

    htt p ://i.stack.imgur.com/EL9LF.jpg I only need that when I click on a row, depending on the ID_Report it has, my fields get the values from the Id_report selected.
  5. O

    Access - Query when DataSelected

    What I am trying to make is a Program where I can change the status of my machines, for example, I have my machines Online, and I can see them in my datasheet. When one machine is down, I selected it from my datasheet, and then I would create a button like "Edit" then I will say the failure...
  6. O

    Access - Query when DataSelected

    I have a Form, with a SubForm as Continous Form in DataSheet. Main form: frm_bitacora SubForm: sfrm_bitacora When I select a row from sfrm_bitacora I have the code: 1. Private Sub Form_Click() 2. MsgBox Me.id_report.Value 3. End Sub So it shows me the value from the fieldname from the...
  7. O

    Access - Get subForm datasheet value of row

    Solution: http //imgur.com/gikNKPc I just write: Referred from: http //access.mvps.org/access/forms/frm0031.htm MsgBox Me!zfrmStatus.Form!txt_machine_name.Value and it brings the value from the selected row. Thanks for the HelP!
  8. O

    Access - Get subForm datasheet value of row

    My main form is zfrmMain, my subform is zfrmStatus, inside this subform, I have 3 textbox, txt_machine_name, txt_status, txt_lastregister. So if i'm in my MainForm, and I click in my subform row 2; then I click on my button that it's on my main form, how can I get the value. private sub...
  9. O

    Access - Get subForm datasheet value of row

    I have a subform which is created with textbox and some command button in the top of the window, so this will simulate like a Datagrid. http: // imgur.com/MpIpksT This is how it looks my datagrid when it fills from a Query. http: // imgur.com/kxAS8Ff What I want is when I select a row...
Back
Top Bottom