|
More site info...
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.
|
|
|
|
|
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:
|
Top authors during last week:
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...
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.
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?
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
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 ...
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...
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...
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
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::
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?
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....
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...
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...
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 ...
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
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 ...
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?
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
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
|
|
Hot threads for last week on 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
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...
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
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?
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
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!
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
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
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
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?
|
|