Question : Red "X" appears in the icon for a mapped network drive in Windows 7, even though you can successfully access the drive

A red "X" appears in the icon for a mapped network drive in Windows 7, even though you can successfully access the drive, gigabit wired lan.... anyone seen this before i'm getting a few frustrated clients??

Answer : Red "X" appears in the icon for a mapped network drive in Windows 7, even though you can successfully access the drive

I have put this code  - from this queston http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_24858047.html?sfQueryTermInfo=1+form+pop+up

But used it in the on current event of the main form:

  Dim strLinkCriteria As String ' to keep pop up quote items in sync with the quoteID
    Dim stDocName As String
     
    stDocName = "sfrmQuoteCostingItem"
    stLinkCriteria = "[QC_quoteID]=" & Me![txtQ_quoteID]
   
   
    If CurrentProject.AllForms(stDocName).IsLoaded = False Then
          DoCmd.OpenForm stDocName
    End If
    Forms(stDocName).Filter = ""
    Forms(stDocName).Filter = stLinkCriteria
    Forms(stDocName).FilterOn = True


So far so good but I am not sure I will run into difficulties using a pop up form.

Lou
Random Solutions  
 
programming4us programming4us