Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Microsoft Access Development | Forum profile

Forum profile page for Microsoft Access Development on http://www.devarticles.com. This report page is the aggregated overview from a single forum: Microsoft Access Development, located on the Message Board at http://www.devarticles.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 Development" on the Message Board at http://www.devarticles.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.

Site: Dev Articles Forums - Programming Help and Tutorials for all developmenttechnologies - Microsoft Access Development (site profile, domain info devarticles.com)
Title: Microsoft Access Development
Url: http://forums.devarticles.com/microsoft-access-...
Users activity: 15 post per thread
Forum activity: 7 active threads during last week
 

Posting activity on Microsoft Access Development:

  Week Month 3 Months
Threads: 7 39 102
Post: 13 56 157
 

Microsoft Access Development Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
dykebert
3
user's latest post:
Parameters from VBA
Published (2009-12-09 14:24:00)
So the correct code lines are any of the following: 1. qryTemp.Parameters("StartDate") = StartDate qryTemp.Parameters("EndDate") = EndDate 2. qryTemp.Parameters("StartDate") = Date qryTemp.Parameters("EndDate") = Date 3.* qryTemp.Parameters(1) = StartDate qryTemp.Parameters(2) = EndDate 4.* qryTemp.Parameters(1) = Date qryTemp.Parameters(2) = Date * NOTE: [AgentID] is...
Merkava
3
user's latest post:
Parameters from VBA
Published (2009-12-09 15:25:00)
Quote: Originally Posted by dykebert So the correct code lines are any of the following: 1. qryTemp.Parameters("StartDate") = StartDate qryTemp.Parameters("EndDate") = EndDate 2. qryTemp.Parameters("StartDate") = Date qryTemp.Parameters("EndDate") = Date 3.* qryTemp.Parameters(1) = StartDate qryTemp.Parameters(2) = EndDate 4.* qryTemp.Parameters(1) = Date...
Krystyne
2
user's latest post:
MS Access Query Date Range
Published (2009-12-09 23:11:00)
I don't care how it's done as long as it can be done. Remember, I'm new to this so may need more instructions than 'add this to your database'
Cobramods
1
user's latest post:
Search function throughout a...
Published (2009-12-05 04:02:00)
ok i am very new to access and tend to learn most things with a hands on head first trial and error basis. what i have done is created a very simplified database for my work (i sell engines and gearboxes for cars) i have a front end fairly complete just needing a few tweaks to take care of everything i need. what i am having a problem with is creating an either search box or button to allow me 3 months down the line, if a customer has a...
AlanSidman
1
user's latest post:
Search function throughout a...
Published (2009-12-05 18:37:00)
Look at this tutorial. I think it will answer your first question http://www.datapigtechnologies.com/flashfiles/buildcustomfilter.html
dof2001
1
user's latest post:
Access to SQL
Published (2009-12-07 13:19:00)
Hi, my department wants to migrate our Db to SQL 2005. I have few question that i have before we start teh process. I am th emost technical in my department and i just have no idea; 1.- Do we need any type of software to connect to the server, w ehave peole from diferent geos that will need to connect to the SQL server 2.- Can we uase access 2003 to connect to the SQL server 3.- What would be the necesary step to complet this migration We...
Shumaker
1
user's latest post:
Mysql migration autonumber
Published (2009-12-11 08:17:00)
Use Dbload to migrate Access to MySQL database.. Find Here : www(.)dbload(.)com
WarriorMCB
1
user's latest post:
Find as you type help
Published (2009-12-11 13:50:00)
Hi DBer's I'm currently using the find as you type module from allen browne and all is working fine until i added a subform. What i need to f-a-u-t to do is list he subform fields in the combo box in the header. I've tried typoing the subform name in the OnLoad but nada. Is there a way to do this as I'm stumped. Tahnks again MCB
 

Latest active threads on Microsoft Access Development::

Dev Articles Forums - Programming Help and Tutorials for all developmenttechnologies
Started 8 months, 3 weeks ago (2009-03-27 13:14:00)  by trek46
I have recently started doing this and I found that if I put in a refresh command in the fields being filled in works like a charm. I put this in the first name field on the after update event. It's worked so far. Quote: Originally Posted by cferriby hello i just migrated an access backend to MySQL for performance and size reasons. I have a form that will ...
Thread:  Show this thread (4 posts)   Thread info: Mysql migration autonumber Size: 996 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Refresh the screen after entering :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
Dev Articles Forums - Programming Help and Tutorials for all developmenttechnologies
Started 1 week ago (2009-12-09 11:16:00)  by dykebert
This is doable in VBA, but unless the 7 days are all in the same week (i.e. no Friday to Monday comparisons), I don't know of a way to do it in just SQL. Is VBA OK?
Thread:  Show this thread (3 posts)   Thread info: MS Access Query Date Range Size: 237 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: MS Access Query Date Range :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
Dev Articles Forums - Programming Help and Tutorials for all developmenttechnologies
Started 1 week ago (2009-12-09 11:53:00)  by dykebert
In the future, including the actual query would be helpful. Basically you are mixing apples and oranges. The .Parameter property refers to the Parameters that are defined in your query. So the statement: qryTemp.Parameter(StartDate) = Date Means that your query has a Parameter this is named the date "12/01/07" Correct use of this property would be either ...
Thread:  Show this thread (5 posts)   Thread info: Parameters from VBA Size: 788 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Parameters from VBA :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
Dev Articles Forums - Programming Help and Tutorials for all developmenttechnologies
Started 1 week, 4 days ago (2009-12-05 18:37:00)  by AlanSidman
Look at this tutorial. I think it will answer your first question http://www.datapigtechnologies.com/flashfiles/bu ildcustomfilter.html
Thread:  Show this thread (2 posts)   Thread info: Search function throughout a database in access 2007? Size: 208 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Search function throughout a database in access 2007? :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
Dev Articles Forums - Programming Help and Tutorials for all developmenttechnologies
Started 2 weeks ago (2009-12-02 10:40:00)  by dykebert
ummmm OK I think I got it, but I want to make sure. It looks like the code you provided takes the values that are in fields on a form and puts them into an e-mail. 1. Is this correct? 2. What version of Access are you using? 3. When you say datafields do you mean fields (columns) in a single record or multiple records (rows). Do you have a single record (row) and ...
Thread:  Show this thread (2 posts)   Thread info: Report to email Size: 625 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Report to email :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
Dev Articles Forums - Programming Help and Tutorials for all developmenttechnologies
Started 2 weeks, 2 days ago (2009-11-30 13:22:00)  by mmh38
We tried doing something along these lines in our Access database to handle part number creation and we never really got it working to our satisfaction. What we found was that this was more trouble than it was worth. We ended up going with a third-party part numbering system from part-numbering.com. It's not a free service, but it's very cheap relative to the amount of effort we were ...
Thread:  Show this thread (3 posts)   Thread info: Creating Part Numbers Size: 857 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Creating Part Numbers :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
Dev Articles Forums - Programming Help and Tutorials for all developmenttechnologies
Started 2 weeks, 2 days ago (2009-11-30 10:29:00)  by dykebert
OK I've got a couple of questions: 1. Are the Primary and secondary satellites ALWAYS identified the same way? (i.e. for a TCA event between satellites A & B is A always Primary and B always Secondary?) 2. This would be very in easy if VBA, but while doable in SQL it will probably take a couple of different queries, so is a VBA solution acceptable? 3. Can multiple TCA ...
Thread:  Show this thread (5 posts)   Thread info: Counting dates if they are not within 15 minutes Size: 539 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Counting dates if they are not within 15 minutes :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
 

Hot threads for last week on Microsoft Access Development::

Microsoft Access Development
Started 1 week ago (2009-12-09 11:53:00)  by dykebert
In the future, including the actual query would be helpful. Basically you are mixing apples and oranges. The .Parameter property refers to the Parameters that are defined in your query. So the statement: qryTemp.Parameter(StartDate) = Date Means that your query has a Parameter this is named the date "12/01/07" Correct use of this property would be either ...
Thread:  Show this thread (5 posts)   Thread info: Parameters from VBA Size: 788 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Parameters from VBA :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
Microsoft Access Development
Started 1 week ago (2009-12-09 11:16:00)  by dykebert
This is doable in VBA, but unless the 7 days are all in the same week (i.e. no Friday to Monday comparisons), I don't know of a way to do it in just SQL. Is VBA OK?
Thread:  Show this thread (3 posts)   Thread info: MS Access Query Date Range Size: 237 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: MS Access Query Date Range :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."
Microsoft Access Development
Started 8 months, 3 weeks ago (2009-03-27 13:14:00)  by trek46
I have recently started doing this and I found that if I put in a refresh command in the fields being filled in works like a charm. I put this in the first name field on the after update event. It's worked so far. Quote: Originally Posted by cferriby hello i just migrated an access backend to MySQL for performance and size reasons. I have a form that will ...
Thread:  Show this thread (4 posts)   Thread info: Mysql migration autonumber Size: 996 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Refresh the screen after entering :: Microsoft Access Development :: Dev Articles Forums - Programming Help and Tutoria..."

This page was found by:   214735267 access