|
More site info...
|
|
Forum profile page for access on http://bytes.com.
This report page is the aggregated overview from a single forum: access, located on the Message Board at http://bytes.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "access" on the Message Board at http://bytes.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on access:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
119
|
265
|
711
|
|
Post:
|
447
|
938
|
2,534
|
|
|
access Posting activity graph:
|
Top authors during last week:
user's latest post:
Use the windows user name and...
Published (2009-11-26 12:33:00)
Quote: Originally Posted by topher23 Obviously, my predecessor convinced our management that this was an acceptable risk, as this method was implemented on at least 16 different databases before I took over, and is still in place for many of them. It's hard to tell from this which you have the more respect for :D
user's latest post:
Calculating next x anniversary...
Published (2009-11-25 20:26:00)
I see your point, OB. I need to rethink this with a solution that will work. I don't know what I was thinking earlier.
user's latest post:
Unsure about a part of a code...
Published (2009-11-28 00:07:00)
The period character is simply used as a separator between the table name and the field name. In SQL, the [ ] characters are not required unless you need to delimit a table or field name with spaces in it. So imagine I have a table named myTable and it had field1, field2, field3. I can select all three fields by writing Expand | Select | Wrap | Line Numbers SELECT Field1, Field2, Field3 FROM myTable...
user's latest post:
User Function with input...
Published (2009-11-25 13:29:00)
Ok, like Linq said, we still don't know what you are doing. But I can tell you what to do to get the results you are looking for, what you need to do: 1. Assume you have a text box named txtYear 2. Create another text box and go to its properties and put " =DaysInYear([txtYear]) " in the control source field. (no double quotes!) 3. Keep this code with the tweak I put in: Expand | Select | Wrap | Line Numbers...
user's latest post:
Make a button on a tab control...
Published (2009-11-28 00:03:00)
Well, I'm exhausted. I've tried to see if there was a way to send a mouse click through sendkeys, and I found some stuff on it, but nothing beat this problem. Topher23, I did see the button get full focus, but then get pulled back as you described. It leads me to believe that the web browser control might have some other event after the documentComplete that is pulling the focus back. I've tried to figure out what that event...
user's latest post:
Disable ribbon, office button...
Published (2009-11-25 14:28:00)
I like that idea dpminusa. I will try that. I don't know how to set a macro to a keyboard combination but I'd like to try to figure it out on my own before I ask a question on it. Thanks!
user's latest post:
Excel: VBA code that look for...
Published (2009-11-28 00:06:00)
I've taken the liberty to modify the Code and output the Results (Matches) to the 1st Column of Sheet3. Just make sure that you have 3 Worksheets named: Sheet1, Sheet2, and Sheet3 in order for the Revised Code to work properly. Expand | Select | Wrap | Line Numbers Dim rng_1 As Range Dim rng_2 As Range Dim rngRef_1 As Range...
user's latest post:
Locking Records in MS Access 2003
Published (2009-11-26 10:34:00)
First off, there is no need to have the same code for each checkbox appear in the OnClick event and the AfterUpdate event. One or the other will do! Secondly, because you're apparently (from your description) doing this on a Continuous or Datasheet View Form, you need to use, for each appropriate control Me.PRAWhat3.Enabled = False Me.PRAWhat3.Locked = True or Me.PRAWhat3.Enabled = True Me.PRAWhat3.Locked = False in order for the...
user's latest post:
Use data entry form to scroll...
Published (2009-11-25 22:25:00)
Great explanation, nsbecker--helps me not only to understand why I was getting the error, also helps me visualize what the procedures themselves mean/are doing, so I can select the ones I need in the future. Thanks, all!
user's latest post:
How do you put an image in...
Published (2009-11-24 15:43:00)
Yeah you can remove the scrollbars, record navs, all that. I did this quite a while ago, but I remember it was a pain to set up the subreports initially. The whole reasoning behind using the subform/subreport, I believe, was that the code I used to call the stored image out of the tables was all self-contained within that object, and I wouldnt have to recreate any of it on another report or form. Although, I do believe I had to call instances...
|
|
|
|
Latest active threads on access::
Started 1 day, 7 hours ago (2009-11-29 15:03:00)
by ADezii
You can set a ' Trap ' for that specific Error (5843), then display a descriptive Message Box indicating to the User that no Matches were found: Expand | Select | Wrap | Line Numbers Public Function pfnGetSynonyms(strWord As String) As Variant
On Error GoTo Err_pfnGetSynonyms
'Returns an array of Synonyms words
'Requires refererence to Microsoft Word 10.0 Object ...
Started 5 days, 10 hours ago (2009-11-25 12:27:00)
by ChipR
Controls on tabs are referred to the same way as controls on the main form. You should be able to use from main form code: Expand | Select | Wrap | Line Numbers cmdAddNote.SetFocus
Started 5 days, 6 hours ago (2009-11-25 16:27:00)
by rtilson
I figure it out by replacing the MOD with INT - MOD(n-d) excel and n MOD d access but it doesn't work so I replaced with n-d*INT(n/d)
=Round(([NAD27_76_NORTHING]-5148000)*1.000440935 +48000, IIf([NAD27_76_NORTHING]-1*Int([NAD27_76_NOR THING]/1)=0,0,3))
Started 5 days, 6 hours ago (2009-11-25 16:28:00)
by ChipR
You could probably use: Expand | Select | Wrap | Line Numbers Replace(Me.filter, "Lookup_", "")
Started 5 days, 8 hours ago (2009-11-25 14:26:00)
by Frinavale
I could be wrong but I think this problem has to do with your Where statement you have: Expand | Select | Wrap | Line Numbers
AND ((M_Notes.NoteType)=2) AND ((M_Notes.NoteStatus)=Yes
If the NoteStatus is not Yes or NoteType is not 2, then the record won't meet the criteria.
-Frinny
Started 1 day, 8 hours ago (2009-11-29 14:04:00)
by Dan2kx
Don't mean to throw to many questions up at once... BUT....
If there is only 1 record in the continuous detail, it doesnt update, similarly if there are two the last one does not update and so on,
How can i ensure all the relevant records update?
Started 5 days, 6 hours ago (2009-11-25 16:28:00)
by ChipR
Are you filtering the report based on the value selected in the combo box? How? You are going to have to give us more information about how the report is "generated".
Started 3 days, 15 hours ago (2009-11-27 06:56:00)
by ADezii
Here is the basic Logic that you would need to compare every Value in Sheet1 within the Range $A$2:$F$1000 to every Value in Sheet2 for the same Range. Keep in mind that this is a very CPU intensive process since it involves approximately 36,000,000 iterations of the Nested Loops (approximately 2 minutes). Expand | Select | Wrap | Line Numbers Dim rng_1 As Range
Dim rng_2...
Started 4 days, 12 hours ago (2009-11-26 10:34:00)
by missinglinq
First off, there is no need to have the same code for each checkbox appear in the OnClick event and the AfterUpdate event. One or the other will do!
Secondly, because you're apparently (from your description) doing this on a Continuous or Datasheet View Form, you need to use, for each appropriate control Me.PRAWhat3.Enabled = False
Me.PRAWhat3.Locked = True
or Me....
|
|
Hot threads for last week on access::
Started 5 days, 10 hours ago (2009-11-25 12:27:00)
by ChipR
Controls on tabs are referred to the same way as controls on the main form. You should be able to use from main form code: Expand | Select | Wrap | Line Numbers cmdAddNote.SetFocus
Started 1 week, 1 day ago (2009-11-22 07:06:00)
by AdamOnAccess
I have an access form with a web browser control and I'm trying to enable it to resize with the form. The code causes the web browser control to shink and grow to the exact dimensions of the form, and leaves space at the top for the rest of the access form... Expand | Select | Wrap | Line Numbers
Private Sub Form_Resize()
On Error GoTo ResizeError
'resize the ...
Started 3 days, 15 hours ago (2009-11-27 06:56:00)
by ADezii
Here is the basic Logic that you would need to compare every Value in Sheet1 within the Range $A$2:$F$1000 to every Value in Sheet2 for the same Range. Keep in mind that this is a very CPU intensive process since it involves approximately 36,000,000 iterations of the Nested Loops (approximately 2 minutes). Expand | Select | Wrap | Line Numbers Dim rng_1 As Range
Dim rng_2...
Started 1 week, 4 days ago (2009-11-19 14:10:00)
by ajalwaysus
What I have done in the past, and I don't know if there is a better way, but I UNION ALL the values I want together.
First, I created a dummy table called DUAL (it's an oracle thing), that has only one column and no values in it.
Second, I write my query as such: Expand | Select | Wrap | Line Numbers SELECT "Blue" FROM DUAL
UNION ALL
SELECT DISTINCT ...
Started 6 days, 7 hours ago (2009-11-24 15:43:00)
by ajalwaysus
As long it is as you say, it should simply be this: Expand | Select | Wrap | Line Numbers INSERT INTO [Table 3] ([Part Number], [Data 1], [Data 2], [Data 3])
SELECT [Table 1].[Part Number]
, [Table 1].[Data]
, [Table 1].[Data 1]
, [Table 1].[Data 2]
, [Table 2].[Data 3]
FROM [Table 1], [Table 2]
WHERE...
Started 1 day, 8 hours ago (2009-11-29 14:04:00)
by Dan2kx
Don't mean to throw to many questions up at once... BUT....
If there is only 1 record in the continuous detail, it doesnt update, similarly if there are two the last one does not update and so on,
How can i ensure all the relevant records update?
Started 6 days, 17 hours ago (2009-11-24 05:24:00)
by arvarunar
Got the answer!
For anyone else who needs this, posting the query that worked:
UPDATE TrendSheet INNER JOIN TrendMaster ON TrendSheet.Branch=TrendMaster.Branch SET April_Joined = DCount("[EmployeeID]","TrendMaster","[Joined_Perio d]='April")
Thanx!
Started 5 days, 10 hours ago (2009-11-25 12:29:00)
by ajalwaysus
Are you allowing them to input the year in one field and showing the number of days in another, or are you trying to change the value in the same text box that they just entered the year in?
This may be your problem, if that is the case. I don't think you can overwrite a value while that value is being used to calculate another value.
I could be way off, but let us know.
-AJ
Started 5 days, 8 hours ago (2009-11-25 14:26:00)
by Frinavale
I could be wrong but I think this problem has to do with your Where statement you have: Expand | Select | Wrap | Line Numbers
AND ((M_Notes.NoteType)=2) AND ((M_Notes.NoteStatus)=Yes
If the NoteStatus is not Yes or NoteType is not 2, then the record won't meet the criteria.
-Frinny
Started 1 week, 2 days ago (2009-11-21 04:11:00)
by ajalwaysus
Quote:
Originally Posted by iheartvba Hi,
I have upgraded to SQL Server Express 2005 and now my Delete Querey which was made in MS Access Query Builder is not working. It doesn't give any error it just doesn't work:
If its of any use the SQL in the query is : Expand | Select | Wrap | Line Numbers DELETE tblCollections.MDCollectionID, ...
|
|