|
More site info...
Microsoft Access | Forum profile
|
|
Forum profile page for Microsoft Access on http://www.dbforums.com.
This report page is the aggregated overview from a single forum: Microsoft Access, located on the Message Board at http://www.dbforums.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 "Microsoft Access" on the Message Board at http://www.dbforums.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 Microsoft Access:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
127
|
461
|
1,366
|
|
Post:
|
340
|
1,330
|
3,709
|
|
|
Microsoft Access Posting activity graph:
|
Top authors during last week:
user's latest post:
combo box woes
Published (2009-11-24 16:05:00)
I might avoid the Filters command (these never work very well with odd characters). Or don't use it as a variable name! (I'd call it perhaps vFilter or something like that). MSAccess 'might' get confused on the reserved Filter word with Filters. I think what you're trying to do can be done much easier but I'm hoping this is what you're trying to do. A typical opening of a report might be like this (I'm...
user's latest post:
Databases Security for Multiple...
Published (2009-11-24 09:55:00)
also I'd suggest you read, re read, and the read again the Access security FAQ from MSDN Microsoft Access Security FAQ available in the Download Center amd whilst you are at it make sure to you take backups before makig any security changes, its easy to screw things up, and without a backup your are royally screwed
user's latest post:
frmQueriesDialogBox
Published (2009-11-24 02:37:00)
Do I need to redo the box? I don't think it's working when I click on a qry in the list.
user's latest post:
Using Query results in a form?
Published (2009-11-24 10:10:00)
"MS Access will not let me use query fields in my form" ....this is a fundamental error or misunderstanding A form is sourced on a record set. The record set can be a table or a query. Use the design wizard to create a form and source it on the query. If you need the form sourced on the table and also need columns/fields from a query then you make a main form sourced on one, and a subform sourced on the other....
user's latest post:
Object variable not set.
Published (2009-11-20 17:45:00)
No problem. Maybe this thread will someone in the future as well.
user's latest post:
Capture specific data from a...
Published (2009-11-24 02:23:00)
To point you in the right direction, look at the InStr() function to find the first ^, the InStrRev() function to find the second. With those, a little math and the Mid() function, you have your name.
user's latest post:
Opening & Running a VBA in...
Published (2009-11-19 14:51:00)
Funny, it was because I was relying on the assumptions Excel makes about the data, that my import was working for Excel. The problem was fixed by setting the incoming data to whatever format the field was looking for. Basically the API I was getting data from was sending numbers over in a text format, but only sometimes.
user's latest post:
How do I set the value of the...
Published (2009-11-24 11:10:00)
hmm, was playing around and thought I'd change the bound column. Apparently if I Bind to Column 0, it binds to the index, and binding to column 1 uses the first column, my ID field. Strange, as if I do [cmbProperty].[Column](1), I get the second column! Isnt this a bit misleading?
user's latest post:
Can I make one particular text...
Published (2009-11-24 09:29:00)
As stated previously, you're really not very clear as to exactly what you're doing here, or how these "chunks of text" are being selected and inserted. Obviously, Access has to be told what text to place the symbol after. More details are needed.
user's latest post:
Forms that communicate info well
Published (2009-11-24 13:20:00)
Thanks pkstormy! Those are helping me alot! But the real nuts of the problem is after i have searched and found what i want... how do i send that info back to the form that opened the search form?
|
|
|
|
Latest active threads on Microsoft Access::
Started 3 days, 19 hours ago (2009-11-24 15:27:00)
by pkstormy
Not typically done since it's much easier to simply have the functions (in modules) in the same database. Otherwise you make it more complex. I can't say for sure if it's possible (I'm sure there's probably a way somehow but it'll probably be a lot of attempts to get the code right), but again, you make it much more difficult doing it this way.
If your insistent on doing it this way (again...
Started 3 days, 19 hours ago (2009-11-24 16:05:00)
by pkstormy
I might avoid the Filters command (these never work very well with odd characters). Or don't use it as a variable name! (I'd call it perhaps vFilter or something like that). MSAccess 'might' get confused on the reserved Filter word with Filters.
I think what you're trying to do can be done much easier but I'm hoping this is what you're trying to do. A typical opening of a report might be...
Started 3 days, 17 hours ago (2009-11-24 17:33:00)
by Sinndho
They do not move to the top, but close to!. You have to specify the position of a control on a form in Twips , not in inches or in centimetres. 1440 twips = 1 inch, 567 twips = 1 cm.
Started 4 days, 14 hours ago (2009-11-23 20:51:00)
by pkstormy
This doesn't make sense to me. Can you explain futher. Records don't automatically dissappear regardless if they are fields storing hyperlinks or not. Typically you store your hyperlinks into a field in a table. If records dissappear after clicking the hyperlink, you've got bigger issues.
or to open a webpage example:
Dim objXMLHTTP, xml
Set xml = Nothing
Set xml = CreateObject("...
Started 4 days ago (2009-11-24 11:10:00)
by rudeboymcc
hmm, was playing around and thought I' d change the bound column.
Apparently if I Bind to Column 0, it binds to the index, and binding to column 1 uses the first column, my ID field.
Strange, as if I do [cmbProperty].[Column](1), I get the second column!
Isnt this a bit misleading?
Started 4 days, 11 hours ago (2009-11-23 23:22:00)
by pkstormy
Not sure I understand what you're trying to do. If you're looking for a search type form, there are several, several examples in the code bank of search forms to search for data and then return the found record to another form.
Here's one of several: http://www.dbforums.com/6289596-post39.html
or
http://www.dbforums.com/6325742-post63.html
or
http://www.dbforums.com/6342970-...
Started 4 days, 12 hours ago (2009-11-23 23:02:00)
by pkstormy
It would probably be something like this:
me.MyComboboxName.Rowsource = "Select...."
or
Forms!MyFormName!MyComboboxName.Rowsource = "Select...."
or (I will sometimes just set the rowsource to a query name)
me.MyComboboxName.Rowsource = "MyQueryName"
Started 3 days, 22 hours ago (2009-11-24 13:00:00)
by Sam Landy
Instead of typing directly into the datasheet, try letting the user type into unbound text boxes. Make a "Confirm Data" command box to allow the user to signal that he's finished, and then start testing the data control by control. If you detect an error, you can then use messagebox. Don't submit the data to the datasheet until all errors are fixed.
Started 4 days ago (2009-11-24 10:54:00)
by rudeboymcc
Post the SQL here - this will show how the criteria has been written in the code.
Started 4 days, 1 hour ago (2009-11-24 10:10:00)
by NTC
" MS Access will not let me use query fields in my form"
....this is a fundamental error or misunderstanding
A form is sourced on a record set. The record set can be a table or a query.
Use the design wizard to create a form and source it on the query.
If you need the form sourced on the table and also need columns/fields from a query then you make a main form sourced on one, ...
|
|
Hot threads for last week on Microsoft Access::
Started 1 week, 3 days ago (2009-11-18 04:15:00)
by healdem
select my, column, list from mytable
where acolumn not like "~*"
MSysObjects is the table you want
queries can be found by limiting the Type to 5
Started 1 week ago (2009-11-20 17:31:00)
by NTC
there is no such thing as an Access form having a web browser....
Started 1 week ago (2009-11-20 18:10:00)
by Teddy
insert is for inserting data.
select is for reading data.
insert, then select. These are two separate steps.
Started 6 days, 8 hours ago (2009-11-22 02:42:00)
by pkstormy
To show a total in a field, make an unbound field (if you don't want to store the value, otherwise add the sourceboject of the field in your table.)
If it's an unbound field, simply put this in for the sourceobject: =[Job_price]*[Actual_Selling_Price] (or whatever fields you're calculating.) This will automatically update it any time one of the price fields is changed.
If you want to ...
Started 4 days, 22 hours ago (2009-11-23 12:12:00)
by Missinglinq
You're really not very clear as to exactly how you're doing this, but in general it would be something like
Me.ProductName = Me.ProductName & Chr(174)
BTW, what does your thread title have to do with the question posted?
Started 1 week, 2 days ago (2009-11-19 09:08:00)
by kedunc
Thanks healdem, I need to export the query ( or form datasheet view ) as a spreadsheet to others. When I do this the conditional formatting is lost.
Is there a way to export from access to another file format ( excel ) and keep condiitonal formatting ?
Quote:
Originally Posted by healdem
consider using conditional ...
Started 1 week, 1 day ago (2009-11-19 11:36:00)
by lolarennt
Chris,
Correct me if I am wrong, but you are never INSERTING data in the new live table, right? You are only UPDATING the live table with information from the archive table, if the reference number matches with a number in the archive table.
And then, if you find a match, you want to grab the latest information from the archive table, and update the live table with that. Is that about ...
Started 1 week, 1 day ago (2009-11-19 19:04:00)
by NTC
If Me.[Status] Like "Closed" Then
Me.[Resolution_ETA] = Now()
End If
is it Resolution_ETA or Resolution ETA ?? down't throw in an underscore if it isn't in the actual name of the field/control
Started 4 days, 19 hours ago (2009-11-23 15:13:00)
by nckdryr
Welcome to the forums
I imagine you'll need some sort of custom string parser function to return the name, and then just use the Now() function to get the current time. Could you supply a sample data that you would get from the card reader? Obviously, it would be annonymized data ( John Smith, XXXX XXXX...), but just to give us an idea of what is being sent from the reader to the machine.
Started 4 days, 20 hours ago (2009-11-23 15:10:00)
by nckdryr
Welcome to the forums.
Have you considered just making a form in Access and letting the user enter in the data there? This is, after all, what forms are basically made for (i.e. allowing the user to interact with the data, such as entering records).
|
|