I have a 3910 cordless phone connected to a R6 partner and it has stopped aquiring link. When you press talk it just blinks aquiring link then the display goes blank.... Any suggestions? I have checked all connections to the base even changed ports and cycled power.
--Todd
TechnicalUser...
I am working on a FE/BE with replicated access database in 2 states. I need to programaticly find where the user logged into either which server athuinticated their user name or therir current windows network domain. I know I can use environ to get user name ect. but I need to know where they...
Got an access FE/linked tables to a SQL BE running across ad VPN T1 at server end and Cable at my home where I am testing the FE. When I am local to the network it runs fine. But across the net it has a 30-40 second lag when I open or go to the next/previous record. I was wondering what...
? export your tables forms ect to a new db and try to recreate it there...
--Todd
TechnicalUser pretending to be a programmer(shhh… the boss doesn’t know yet)
But unless you have some code in the forms oncurrent event if you change records the boxes will not refresh to the correct state.
--Todd
TechnicalUser pretending to be a programmer(shhh… the boss doesn’t know yet)
in the tools menu, under database utilities choose compact and repair. it should reset your autonumbers. BUT you shouldnt depend on the numbers being consecutive as during daily use (deleting records ect...) it will get out of sync.
and if you are in a multi user DB this will be even worse...
Sorry for the delay. I was not able to get to my computer till now! What exactly dosent work? when you click on the check box for title 5 then what happens? (add a stop command and look to see which way in the if statment it is going, also hover over the field names in the debugger (after it...
so in your forms on focus event you need to check the value of the check marks, and set the visible property of the memo field accordingly.
ex.
if ElecInspReview.Value = 0 then
me.ElecInspReviewNotes.visible=false
else
me.ElecInspReviewNotes.visible=true
end if
also add...
So then you need to use access security
Check out ms FAQ on access security http://support.microsoft.com/default.aspx?scid=kb;en-us;207793
--Todd
TechnicalUser pretending to be a programmer(shhh… the boss doesn’t know yet)
I found the following in access HELP searching for autokeys...
Assign an action or set of actions to a key
You can assign an action (action: The basic building block of a macro; a self-contained instruction that can be combined with other actions to automate tasks. This is sometimes called...
I used the code from the following website.... http://www.accessvba.com/showthread.php?s=&threadid=9623&goto=nextoldest it works great. I distribute icons, images(for reports without embeding them) and for distributing fonts.) But if you are looking for an aplication icon, what I did was make a...
do You need the link table manager or would code to link your tables be just as good??
Private Function ReconnectTables() As Boolean
On Error Resume Next
Dim tdf As DAO.TableDef
Dim dbs As DAO.Database
Dim StrPath As String
Dim strConnect As String
Set dbs =...
Thanks Duane, It isnt just text though... I was hoping MI*&^#*FT made some things easy for us.
--Todd
TechnicalUser pretending to be a programmer(shhh… the boss doesn’t know yet)
Search is not working so I can look for this so sorry if it is already covered.
Is there a way to import a word document into a new report or is there a third party tool to do this? I have a bunch of word documents I want to make reports to fill information from the database but dont want to...
sorry about that. I thought it was there but it is only for DataAccessPages.
--Todd
TechnicalUser pretending to be a programmer(shhh… the boss doesn’t know yet)
try
Application.ScreenUpdating = False
'your import code here
Application.ScreenUpdating = True
--Todd
TechnicalUser pretending to be a programmer(shhh… the boss doesn’t know yet)
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.