Need Helps..
Oct 31, 2007
Hello everyone .. help me please..I am really new in Access.
Currently, i create one query; there i use " AS " keyword for example: Month(date) as month. Later, i wanna create another query which is to update some values of the month. When trying to execute the update code for the month, i always get the error message: month field not updatable. I wonder what's wrong with that. If is not updatable, could you give me some solutions?
Thanks in advance
View Replies
Jun 22, 2006
Hi all,
Dim vAns As Variant
vAns = MsgBox("Are you sure you want to delete this record?", vbQuestion + vbYesNo, "Delete")
If vAns = vbYes Then
DoCmd.DoMenuItem acFormBar, acEditMenu, 8, , acMenuVer70
DoCmd.DoMenuItem acFormBar, acEditMenu, 6, , acMenuVer70
DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
I'm trying to create a delete function. First, it prompt me whether i want
to delete this record
vAns = MsgBox("Are you sure you want to delete this record?", vbQuestion + vbYesNo, "Delete")
However, after i click 'Yes". Another prompt will pop up and ask me whether i want to delete this record. This prompt is not this prompt vAns = MsgBox("Are you sure you want to delete this record?", vbQuestion + vbYesNo, "Delete")
I think it is access built-in prompt. my qn is that is there any way to prevent the 2nd prompt from being pop up?
Thank you
View 2 Replies
View Related
Apr 27, 2006
I cannot implement search function for my database through List Box Wizard
; it doesn't have option that "Find a record on my form based on the value I selected in my List Box".......
Who can tell me why......
If i don't use this wizard, is there any way that i can implement search function??
Thank you!!
View 12 Replies
View Related
Oct 24, 2006
Hello all!
I have been searching online for the past couple of days for a thorough tutorial that aids the user to make his/her own detailed database based on example data (that does not necessarily have to be adhered to) supplied as the tutorial progresses.
As a student participating in an advanced computing class, I feel that this would benefit me as I can do as the steps ask and see how certain things are done. I am not a complete Access mug... I have a basic knowledge of the fundamentals, but stumbling accross an in-depth tutorial that details all of the standard features (tables, queries, forms etc) along with possibly some example modules would be excellent and beneficial.
All I have found so far is various snippets - "SQL basics" and "Macros: what they do and how to implement them" for example - these miss the bigger picture I am looking for. Surely a step-by-step tutorial on "Designing and working a fully-featured database from the gound up" is not that rare!
Thanks in advance for any help. :)
View 5 Replies
View Related
Apr 27, 2006
Who can tell me why I don't have following option in the Combo Box Wizard?
"FIND A RECORD ON MY FORM BASED ON THE VALUE I SELECTED IN MY
COMBO BOX"
I am appreciate!
View 2 Replies
View Related
Apr 18, 2007
4/11/2007 1:01:28 AM
4/12/2007 2:02:52 AM
4/13/2007 4:21:30 AM
4/14/2007 2:22:21 AM
4/15/2007 3:34:53 AM
4/16/2007 4:02:37 AM
4/17/2007 5:03:15 AM
4/18/2007 7:17:34 AM
I need some helps
I have a table with date + time, how can I query so that it retrieve a 7 days range from today and go back ti 7 days
i though this should work (it works if the the table has date only no time)
Between Date() And DateAdd("d",-7,Date())
thanks
View 2 Replies
View Related