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 Forms | Forum profile

Forum profile page for Microsoft: Access Forms on http://www.tek-tips.com. This report page is the aggregated overview from a single forum: Microsoft: Access Forms, located on the Message Board at http://www.tek-tips.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 Forms" on the Message Board at http://www.tek-tips.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: Tek-Tips Forums - Microsoft: Access Forms (site profile, domain info tek-tips.com)
Title: Microsoft: Access Forms
Url: http://www.tek-tips.com/threadminder.cfm?pid=702
Users activity: 26 posts per thread
Forum activity: 80 active threads during last week
 

Posting activity on Microsoft: Access Forms:

  Week Month 3 Months
Threads: 80 245 679
Post: 209 714 1,738
 

Microsoft: Access Forms Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
dhookom
35
user's latest post:
A simple(?) Appointments db...
Published (2009-11-27 23:36:00)
This should work as long as you have set the option when openning to allow code: CODE Private sub Εντολή_Click()    DoCmd.SetWarnings False    DoCmd.Openquery "mydelquery"    DoCmd.SetWarnings True    Me.LBdate.Requery    Me.LBhour.Requery...
cstuart79
27
user's latest post:
Undo Last Action/Back Button
Published (2009-11-24 12:38:00)
any suggestions on what i am doing wrong? Private Sub Command379_Click() If Me.Dirty Then     Me.Undo End If End Sub It does not generate any errors but it does not remove last action performed in subform.  
PHV
13
user's latest post:
Tagging Records in a Continuous...
Published (2009-11-27 23:10:00)
You may consider a command button (in the header or footer section of the subform) dealing with the current record's values. Hope This Helps, PH. FAQ219-2884: How Do I Get Great Answers To my Tek-Tips Questions? FAQ181-2886: How can I maximize my chances of getting an answer?
newestAF
12
user's latest post:
Update textbox with username
Published (2009-11-25 14:01:00)
Great. All's good now. Thanks again.
MajP
10
user's latest post:
Form control to show an offset...
Published (2009-11-25 22:05:00)
Try this demo htt p://www.4s hared.com/ file/15995 2999/fccfd 1b5/Offset Graph.html  
Triacona
8
user's latest post:
Creating a Message box if user...
Published (2009-11-20 09:59:00)
Dear all, Below is a nested loop which because of the case select code beforehand works. Yay it all works, now depending on my selection it will bring up "Please enter date" msgbox. CODE Private Sub Rp_Report_Click() On Error GoTo Err_Rp_Report_Click     Dim stdocname As String     stdocname = ListRP     ...
TheAceMan1
7
user's latest post:
Bug with FindFirst?
Published (2009-11-26 05:24:00)
How are ya Goondu . . . Try: CODE    With rs       .FindFirst "CompanyID = '" & "Chubb" & "'"  'error Chubb-SP              If Not . NoMatch Then...
randy700
6
user's latest post:
Simple form Question on Unbound...
Published (2009-11-20 15:37:00)
         Why not use bound fields.      Your records will all be available and you can      simply add a new record.           However, I'd create a query, rather than base the...
LakotaMan
5
user's latest post:
Probelms customizing Ribbon
Published (2009-11-23 10:03:00)
FancyPrairie, Tried your code --that did the trick! Thanks for your help & have a star. LM
ProgEvalJAA
5
user's latest post:
Error 2950 on Requery Method...
Published (2009-11-24 16:42:00)
I finally discovered the problem. In reviewing the Property Sheet for the ComboBox for Staff Contact, I discovered the Other Tab (the tab right after the Event tab) was missing something. The name StaffContact needed to be filled in here, and it was blank. Once I did that, everything worked perfectly. Thanks to those who attempted to help me.
 

Latest active threads on Microsoft: Access Forms::

Tek-Tips Forums
Started 1 day, 9 hours ago (2009-11-27 23:10:00)  by PHV
You may consider a command button (in the header or footer section of the subform) dealing with the current record's values. Hope This Helps, PH. FAQ219-2884: How Do I Get Great Answers To my Tek-Tips Questions? FAQ181-2886: How can I maximize my chances of getting an answer?
Thread:  Show this thread (4 posts)   Thread info: Tagging Records in a Continuous Form Size: 501 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Tagging Records in a Continuous Form :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 20 hours, 43 minutes ago (2009-11-28 12:00:00)  by dhookom
You can set the Tag property to your "Search MSDN with Bing". Then add code to your Form Open and text box Got Focus like: CODE Private Sub Form_Open(Cancel As Integer) If IsNull(Me.txtDescription) Then Me.txtDescription = Me.txtDescription.Tag End If End Sub Private Sub txtDescription_GotFocus() If Me.txtDescription.Text = Me.txtDescription.Tag Then Me....
Thread:  Show this thread (2 posts)   Thread info: Predefined text to a text field with no data. Size: 1,098 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Predefined text to a text field with no data. :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 3 days ago (2009-11-26 08:19:00)  by sagamw
Well! I am ALMOST there! If I got a more specific problem I will seek for help...
Thread:  Show this thread (15 posts)   Thread info: A simple(?) Appointments db... Size: 148 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: A simple(?) Appointments db... :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 1 month, 3 weeks ago (2009-10-07 20:01:00)  by kzutter
How are you determining the week number? Perhaps if you share the code, we can help you better. Are you using the function DatePart? It has an optional parameter "firstweekofyear", which can be one of four values. I assume you are using the default value of vbFirstJan1 which gives the results you stated, weeks 53 and 1. Setting it to vbFirstFourDays will put both 12/31/2009 and 01/01/2010 in...
Thread:  Show this thread (11 posts)   Thread info: Week 53 and week 1, 2010 Size: 763 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Week 53 and week 1, 2010 :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 3 days, 3 hours ago (2009-11-26 05:24:00)  by TheAceMan1
How are ya Goondu . . . Try: CODE With rs .FindFirst "CompanyID = '" & "Chubb" & "'" 'error Chubb-SP If Not . NoMatch Then Me.Bookmark = rs.Bookmark Else MsgBox "no match" End If End With See Ya! . . . . . . Be sure to see thread181-473997: How To Get Good Answers To Your Questions Worthy Reading! Also ...
Thread:  Show this thread (2 posts)   Thread info: Bug with FindFirst? Size: 1,827 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Bug with FindFirst? :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 3 days, 9 hours ago (2009-11-25 23:07:00)  by dhookom
You might want to try the Requery method rather than Refresh. Duane Hook'D on Access MS Access MVP
Thread:  Show this thread (2 posts)   Thread info: Refresh in code or macro Size: 449 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Refresh in code or macro :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 3 days, 17 hours ago (2009-11-25 15:38:00)  by dhookom
If this was a report, you would have more options. However, on a form, you can use a text box with these properties: Control Source: =String([YourNumericValue],"g") Fore Color: 255 Font Name: Webdings Special Effect: Flate Back Style: Transparent Locked: Yes Enabled: No You may need to adjust the font size and text box width to display the full line. Duane Hook'D on Access MS ...
Thread:  Show this thread (4 posts)   Thread info: Form control to show an offset left/right of center?? Size: 856 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Form control to show an offset left/right of center?? :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 3 days, 19 hours ago (2009-11-25 12:51:00)  by PHV
You may try simply this: Me!Text67 = Environ("USERNAME") Hope This Helps, PH. FAQ219-2884: How Do I Get Great Answers To my Tek-Tips Questions? FAQ181-2886: How can I maximize my chances of getting an answer?
Thread:  Show this thread (8 posts)   Thread info: Update textbox with username Size: 439 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Update textbox with username :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 4 days, 6 hours ago (2009-11-25 01:47:00)  by dhookom
What is your expected result? You are treating Appr like a yes/no field and yet you are displaying values of 1 or -1 when they should be -1 or 0. What are you summing? Duane Hook'D on Access MS Access MVP
Thread:  Show this thread (5 posts)   Thread info: help with a control in a report Size: 573 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: help with a control in a report :: Microsoft: Access Forms :: Tek-Tips Forums"
Tek-Tips Forums
Started 3 days, 21 hours ago (2009-11-25 10:58:00)  by pwise
try Adding an alias to the assigned to name and use the alias
Thread:  Show this thread (4 posts)   Thread info: Query Expression Populates with ID instead of Name Size: 123 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Query Expression Populates with ID instead of Name :: Microsoft: Access Forms :: Tek-Tips Forums"
 

Hot threads for last week on Microsoft: Access Forms::

Microsoft: Access Forms
Started 2 weeks, 4 days ago (2009-11-10 16:12:00)  by dhookom
What do you want? A subform is by definition a control on a main form that generally has a form as its Source Object. "Pop-up" refers to a form that opens separate from any other form. I'm not sure how a subform can be pop-up or what you actually are asking. Duane Hook'D on Access MS Access MVP
Thread:  Show this thread (26 posts)   Thread info: Pop-Up Continous Form for Subform Size: 646 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Pop-Up Continous Form for Subform :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 3 days ago (2009-11-26 08:19:00)  by sagamw
Well! I am ALMOST there! If I got a more specific problem I will seek for help...
Thread:  Show this thread (15 posts)   Thread info: A simple(?) Appointments db... Size: 148 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: A simple(?) Appointments db... :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 5 days, 17 hours ago (2009-11-23 15:25:00)  by RuralGuy
If it is necessary to requery the RowSource of a ComboBox, then do it in the OnEnter or GotFocus event of the control. (RG for short) aka Allan Bunch MS Access MVP acXP ac07 winXP Pro Please respond to this forum so all may benefit
Thread:  Show this thread (10 posts)   Thread info: Error 2950 on Requery Method with Combo Box Size: 314 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Error 2950 on Requery Method with Combo Box :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 3 days, 19 hours ago (2009-11-25 12:51:00)  by PHV
You may try simply this: Me!Text67 = Environ("USERNAME") Hope This Helps, PH. FAQ219-2884: How Do I Get Great Answers To my Tek-Tips Questions? FAQ181-2886: How can I maximize my chances of getting an answer?
Thread:  Show this thread (8 posts)   Thread info: Update textbox with username Size: 439 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Update textbox with username :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 1 week, 1 day ago (2009-11-20 10:20:00)  by dhookom
You can only save design changes in design view. If you have some properties you would like to change, you can store them in a table and then when the form opens, retrieve and set the property values. Duane Hook'D on Access MS Access MVP
Thread:  Show this thread (7 posts)   Thread info: Save form changes with command button Size: 588 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Save form changes with command button :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 1 week, 2 days ago (2009-11-19 22:22:00)  by TheAceMan1
How are ya qitcryn . . . What have you tried? ... What to do is spelled out in the thread! See Ya! . . . . . . Be sure to see thread181-473997: How To Get Good Answers To Your Questions Worthy Reading! Also FAQ181-2886: How can I maximize my chances of getting an answer? Worthy Reading!
Thread:  Show this thread (9 posts)   Thread info: Simple form Question on Unbound textbox Size: 1,384 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Simple form Question on Unbound textbox :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 1 week, 1 day ago (2009-11-20 10:23:00)  by dhookom
You need to move the where clause: CODE SELECT DISTINCT CONTRACT_TERM.AY_related_to_year_term FROM CONTRACT_TERM WHERE CONTRACT_TERM.AY_related_to_year_term NOT IN ('Pending', 'N/A') UNION SELECT "All" FROM CONTRACT_TERM ORDER BY CONTRACT_TERM.AY_related_to_year_term DESC Duane Hook'D on Access MS Access MVP
Thread:  Show this thread (6 posts)   Thread info: listbox row source - exclude values Size: 777 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: listbox row source - exclude values :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 1 week, 2 days ago (2009-11-19 19:44:00)  by dhookom
cstuart79, Do you have a value stored in the row/record that identifies if it should be formatted? What is the reason for the highlight? Is it like just a temporary pointer to a record? Does the row have a primary key field? Duane Hook'D on Access MS Access MVP
Thread:  Show this thread (8 posts)   Thread info: Highlight Row in Continuous Form Size: 632 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Highlight Row in Continuous Form :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 4 days, 17 hours ago (2009-11-24 15:22:00)  by dhookom
Please provide all significant information with your questions. We don't know: -your list box row source -field in form's record source to filter on -data type of field to filter on -form name -list box name Duane Hook'D on Access MS Access MVP
Thread:  Show this thread (5 posts)   Thread info: Listbox as filter to open form Size: 637 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Listbox as filter to open form :: Microsoft: Access Forms :: Tek-Tips Forums"
Microsoft: Access Forms
Started 1 week, 4 days ago (2009-11-17 13:20:00)  by PHV
The reports won't open, instead they print Replace all acViewNormal with acViewPreview Hope This Helps, PH. FAQ219-2884: How Do I Get Great Answers To my Tek-Tips Questions? FAQ181-2886: How can I maximize my chances of getting an answer?
Thread:  Show this thread (13 posts)   Thread info: 2 Comboboxes on form to open different reports Size: 478 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: 2 Comboboxes on form to open different reports :: Microsoft: Access Forms :: Tek-Tips Forums"