Flickering Screen
Nov 7, 2006Hi,
I used a tab control in a form. However, when I move the mouse over the form, the form flickers.
Has anyone ever experienced the same problem?
Thank you,
B
Hi,
I used a tab control in a form. However, when I move the mouse over the form, the form flickers.
Has anyone ever experienced the same problem?
Thank you,
B
:confused: i am using MS Access 2003 on WinXP. i have attached my sample database. when viewed in form view, notice that the form will flicker on mouse over. why is this happening? is there a solution to solve this annoying problem? please explain in details how i can solve this problem as i am new to access. thanx in advance :)
View 1 Replies View RelatedHi
I am using the following Code on the OnCurrent Event of my form. The Problem is , in Access XP or 2000 it works Great but in Access 2003 it starts flickering, unless we bring the cursor to any field of the subform
Private Sub Form_Current()
On Error GoTo Err_Form_Current
If Me.RecordsetClone.RecordCount > 1 Then
Me.ScrollBars = 3
Else
Me.ScrollBars = 0
End If
Exit_Form_Current:
Exit Sub
Err_Form_Current:
MsgBox err.Description
Resume Exit_Form_Current
End Sub
Hello... again...
I'm having a problem with what looks like a form refresh.
My form has a single drop down box, when that's updated, the whole form is visable and resized etc.
Depending on the criteria in the dropdown box, up to 20 text boxes are updated using a DLookUp.
Everytime something is done (like ticking a checkbox or pressing a button) in the form, the 20 text boxes blink, and it's really... really... REALLY annoying me and my colleagues!
I've tried converting them to labels and using code to update them, but that didn't seem to do the trick.
I could put the info in the query where the form gets its data, but the form is for data entry, which i cannot do with a linked query.
Any help or suggestions would be superb!
I have tried to make a login screen, I have also searched for information and tried some of the examples but, I just can't get one to work.
Is there someone or somewhere where I can get information on how to build one step by step in simple easy instructions....(access 2003).
Also, how do you get access to open all the windows, tables, queries etc in full screen mode.
I have expaneded them and shut it down and then reopened it but they still want to open out of full screen mode.
Thanks, everyone has been a great help in creating my first Access program.
Hi All,
I am learning heaps and constantly wrestling with access, this is a good thing. However at the moment i recently added tabs to my form to restructure the appearance and content and thus far i am happy and its working fine. Except that moving the mouse cursor accross the from causes controls and textboxes to flicker / refresh. I find this annoying and given all the effort going into the presentation of the application i have done.
Is there anyway to eleviate this, is there something i have done wrong perhaps.
I wish to host various controls and inputs from other tables on the other tabs. Will this complicate things or should 1 form with its Tab controls be particular to 1 table........ or can / should a form serve as an input or display to several tables? Is this a bad database practice?
thanks for any assistance you may be able to provide.
Is there a way to stop the controls from flickering when the timerevent fires?
What doesn't work:
Code:
Application.Echo False
Docmd.Echo False
TimerEvent on the current form
TimerEvent on a different form
Using Windows API:
Code:
Private Declare Function SetTimer Lib "user32" etc
Private Declare Function KillTimer Lib "user32" etc
Each of these events flicker the controls on my forms. The effect is worse when the form background contains a picture.
Hello all,
I have this splash screen, which welcomes all the users. It has an OK command button that exits the screen, and a checkbox that says "Do not show this screen again". I still do not have the code behind the checkbox. Thus I was wondering if there is a way where I could entirelly close or "get rid" of the splash screen until the user loggs in again. Because right now there is no code behind it, so everybody that checks it and click OK, leaves the screen. But they can still open it, if they select the "splash form".
i have spash screen that runs for about 10 seconds, would like to reduce to about 4 seconds any ideas
seee script below.
Option Compare Database
Option Explicit
Private Sub Form_Close()
DoCmd.OpenForm "Switchboard"
End Sub
Private Sub Form_Timer()
On Error GoTo Err_Form_Timer
DoCmd.Close
Exit_Form_Timer:
Exit Sub
Err_Form_Timer:
MsgBox Err.Description, , "ASSETSonTRACK"
Resume Exit_Form_Timer
End Sub
Private Sub Command21_Click()
On Error GoTo Err_Command21_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Switchboard"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command21_Click:
Exit Sub
Err_Command21_Click:
MsgBox Err.Description
Resume Exit_Command21_Click
End Sub
Private Sub Command23_Click()
On Error GoTo Err_Command23_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Switchboard"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command23_Click:
Exit Sub
Err_Command23_Click:
MsgBox Err.Description
Resume Exit_Command23_Click
End Sub
Hi all,
I was wondering if it is possible to use a splash screen in the middle of your program? Ex. Can I have a splash screeen to display at the beginning of my database and then have another splash screen open during my program. If i click on a command button to display a form, cause I have a splash screen appear before that form load?
Is till possible while using Data Access Pages as well?
thanks in advance
Hi,
I searched in this form and on the internet on how to display a form in Full screen; however, I could not find an answer that worked.
Does anyone knows how to display forms full screen please?
Thank you,
B
Hi, i want to add security into my database, but i dont want to use the built-in workgroup security.
Is it possible to create a login screen that will allow different access rights depending on the username? If so can sum1 please help me with the code?
Cheers Guys :)
hey
i build a navigation screen
the problem : i want to activate this in the tools-operation , but i can't (i dont see the name of the navigation screen there ...
is there a way to put more then 8 button's operation in a navigation screen ?
View 8 Replies View Relatedi am editing the user interface for operators.
here is the issue:
operators are entering data but sometimes forget to put the part serial number. they then go to the entry.
this is what i want to do:
the operator will not be able to go the next screen (complete the entry) unless they enter the part serial number. where and what should i enter that will prevent the issue?
much thanks.
How to I get the screen to show the top of the form?
Solid lines and xs show what is shown on the screen.
This is used for bigger resolutions. I am modifying the layout of the forms depending on the screen resolution.
Also what is the highest resolution anyone has seen an access database running at?
Auto resize and Auto Centre are both already set to no.
Using access 2000. There are no scroll bars on the form.
--------
|.........|
|.........|
|.........|
_______
|xxxxxxx|
|xxxxxxx|
|xxxxxxx|
|xxxxxxx|
|xxxxxxx|
_______
|.........|
|.........|
|.........|
--------
I have a button on a form which closes the form and opens a different one. This causes the screen to "flash" as one is closed, the main menu becomes visible very briefly and then the new form opens.
In Microsoft Excel I used to use the VBA code:
Application.ScreenUpdating = False
to prevent this and only allow the final state to be displayed. I've tried this with Access and it doesn't seem to work.
Is there an equivalent?
Gary
Is there a way a form can resize themselves depending on the screen resolution different computers use??
View 3 Replies View RelatedI have a form that has a bar down the left side of my form that is right next to the navaigation bar. It has a arrow pointing toward the form. If I click on it nothing happens. Don't know what it is and would like to get rid of it if possible.
View 2 Replies View RelatedI've had a search and can't find anything along these lines...
I've got some code which plays about with reports and it looks awful when it's running - is there an equivalent of Excel's "Application.ScreenUpdating = False" functionality in Access (2000)?
Dave
Hi, I hope someone can help! I have purchased a programme that operates using MS Access. The software loads and functions perfectly on my desktop computer, when I put it onto my laptop, it loads but when I agree to the terms and conditions a switchboard should open but all I get is a grey blank screen with only file, window and help. I did have Nortons 2005 internet suite on it but I have removed that thinking it had something to do with that, restarted my computer removed and reloaded the software and the same happens. I think there is something wrong with the settings on the laptop or some form of script blocking. I am absolutesly exasperated. Please help with any suggestions as I know that the software is functioning and I know that Access is functioning and obviously Access thinks it is displaying everything or there would be an error box. Please help!!
Danni
I have learned how to create animated command buttons within a form. This works out great, but this brought on new ideas.
Currently, all I have is a stand alone picture (our logo) that is stored in the same directory as the db and to my knowledge this has nothing to do with access at all (other then it pulling the .bmp). I would like our Logo to be animated (simple rotating) during the Intro Splash screen.
Is this a possible task?
John
I only want the active screen on the toolbar. and all other screens like the DB screen and forms that are not active to be hidden on the toolbar.
I hope you can understand it. else i wil make a screendump of what i want.
hi,
i am a new memebr so i want to say hello to everyone, anyways i have created a database in microsoft access and have created a login screen where i have created different users and given them different access rights and permission in using my database, and that all works fine when i log on to the database from where the computer i created all these rights i get a login screen where the user enters the username and pass and then that opens up the database and allows the to view parts of the database which they are allowed to however my problem is this...
it works fine on the computer i created these access using the security (user-level security wizard) feature in microsoft access but when i open the database on a different computer it doesnt bring up a user login screen, meaning it lets anyone access the database etc so what do i do??? please help
regards rix :eek: :confused:
I couldnt find a search facility to see if this had been covered before, so apologies if it has been answered before.
I have created an application in Access (2002) which from the users side of things will start in a form and give them no access to the back end.
Unfortunately, it is entirely possible that different users will have their screens set at different resolutions and so the application will be unusable on some and too small on others.
I was wondering if it was possible for access to automatically resize according to the users screen resolution.
I have searched the MS Knowledge Base and help files etc, but I think it is looking less likely that it is possible. Creating 5 or 6 different versions for different screen resolutions would be a none option.
Thanks for reading.
Taker
Hello,
How can I make my DB dectect the users computer screen resolution and adjust my forms and reports to it?
What is hapening is that is I make the DB on 1024/168 and than the user uses 800/600 the forms and reports look huge..... Is there a way to fix this automaticaly?