Search results

  1. G

    UserName

    Hi calvin, I just want the NT username. Is this do-able If it makes a difference, I have this stored a module. Private Declare Function GetComputerNameA Lib "kernel32" (ByVal lpBuffer As String, nSize As Long) As Long Private Declare Function GetUserName Lib "advapi32.dll" Alias...
  2. G

    UserName

    Can someone tell where I need to insert the Username. I want the DB to insert the user who is generating the comments in the comments memo field. How do I get the to automatically insert the current user.? Me.Comments = Me.Comments & vbCrLf & " Date of Comment:" & Date & " - " &...
  3. G

    Staffing schedule

    Does anyone have or know where I can get my paws on a staffing schedule. A db that allows staff to enter the days they are going to be away, then they select the type of on eg holiday and Training. I need to be able run a report that will allow manager to see who is going to be away on certains...
  4. G

    Values from the multi tables on field list

    kako si, Im not sure if I understand your question but here goes. Do you mean to say that then you are entering data the values arent storing in the table. If this is the case, i could be because you have unbound fields in your form. Change the contol source of the fields to the names where...
  5. G

    .visible attribute per record? (not entire form)

    Just a suggestion. Place this in the after update of the comboBox and OnCurrent of the form. If me.ComboBoxName = "Check" or "ACH" then Me.YourFieldName.Visible = False ' if you dont want it be seen else Me.YourFieldNane.Visible = True End If
  6. G

    Select value in comboBoxes to filter records

    So thats what it is called....Cheers bud! I hope I wont be here all day searching..hehe
  7. G

    Select value in comboBoxes to filter records

    I not sure how to explain this but here goes. I have created a form that 3 or more combo boxes and a subform with all the data from a tbl called tblLocationSpecies . When a selection has been made from the LookUptables, I want to click a run query button to find all the records that match the...
Back
Top Bottom