How is the "System.Diagnostics.Process.GetCurrentProcess.Id" different from the GetCurrentProcessId API (Kernel32.dll)?
I'm trying to convert code from VB6 to VB.NET and supposedly GetCurrentProcess.Id (.NET) is the equivalent of GetCurrentProcessId API, but it doesn't work. I placed both in my...
I know how to hide/unhide tables:
For Each tdf In CurrentDb.TableDefs
tdf.Attributes = dbHiddenObject
Next tdf
but queries,
For Each qdf In CurrentDb.QueryDefs
qdf.Attributes = dbHiddenObject
Next qdf
does not work.
Can this be done with VBA ? If so, how ?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.