I have an a textarea, which allows for a double click, and when double clicked will launch a secondary form passing a userid. That userid is then passed to a query, which will run and return data to the secondary form as the control source. This works 99% of the time, but in the rarity the secondary form will be blank, and I can not discover why!
These are the basics that may (or may not) help diagnose what is causing my problem.
And the basics for form2Code:Private Sub grrrrrr_DblClick() Dim cid As Integer cid = List0 gCurrentIndex = List0.ListIndex DoCmd.OpenForm "form2", acNormal, , "masterinfo.employeeID=" & cid DoCmd.Close acForm, "form1", acSaveNo End Sub
--getuserinfo is a query which returns data for id 9999 just the form is blank?
RecordSource = getuserinfo
Filter = masterinfo.employeeID = 9999