|
More site info...
Using Forms | Forum profile
|
|
Forum profile page for Using Forms on http://www.officefrustration.com.
This report page is the aggregated overview from a single forum: Using Forms, located on the Message Board at http://www.officefrustration.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 "Using Forms" on the Message Board at http://www.officefrustration.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 Using Forms:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
172
|
608
|
1,729
|
|
Post:
|
417
|
1,530
|
4,686
|
|
|
Using Forms Posting activity graph:
|
Top authors during last week:
user's latest post:
Textbox: Max Column Value,...
Published (2009-11-08 02:04:00)
On Sat, 07 Nov 2009 23:58:38 GMT, "User via AccessMonster.com" u36225@uwe wrote: I need a textbox to show the highest value of a column within a table, but exclude the values: 000, 994, 995, 996, 997, 998, and 999 Thanks =DMax("[columnname]", "[tablename]", "[columnname] NOT IN ('000', '994', '995', '996', '997', '998',...
Linq Adams via AccessMonster.com
18
user's latest post:
Right and Left Arrow Keys
Published (2009-11-08 17:29:00)
Glad we could help! -- There's ALWAYS more than one way to skin a cat! Answers/posts based on Access 2000/2003 Message posted via http://www.accessmonster.com
user's latest post:
option button to control form query
Published (2009-11-05 22:01:00)
One method is to put both queries in a union query and adding another field for criteria from the Option Group. Like this -- SELECT [Fcd] AS [Field1], [Ged] AS [Field2], [Mxy] AS [Field3] FROM Table1 WHERE [Forms]![MyChoice]![Frame4] = 1 UNION ALL SELECT [Sam] AS [Field1], [Bill] AS [Field2], [Joe] AS [Field3] FROM Table2 WHERE [Forms]![MyChoice]![Frame4] = 2; -- Build a little, test a little. "ehops" wrote: Hello all- I...
user's latest post:
Modifying subform's...
Published (2009-11-06 04:44:00)
"DoDev" wrote in message ... aI am trying to make modifications to the the SQL statement underlying a subform. I make changes using the query builder. However, after I make the changes and save the updates my changes just disappear. This happens regardless of what changes I make, e.g. I tried to add new columns, I tried to add new "where" criteria. After making the changes I close the builder and confirm...
user's latest post:
Create form using query...
Published (2009-11-06 18:29:00)
Smoki - Choose the SQL View while in query design, and copy/paste the code here. -- Daryl S "Smoki" wrote: Yes, I wanted to say that, maybe I just didn't explain that good. But how to send to you my query? Smoki "Daryl S" wrote: Smoki - Are you saying that when you change one record on the form that it updates multiple records in the database? Please post your query (data source), and indicate which...
user's latest post:
Add up all the values in one...
Published (2009-11-06 23:26:00)
Jim Add up a column ... isn't that rather ... spreadsheetly? In a well-normalized relational database table, it might not be so common to add all the values in a field/column for a table. And by the way, the data is in the table, not in the form. If you need to get the sum of all the values in a particular column (e.g., how much did we take in $$ this month?), use a Totals query and use Sum. Good luck! Regards Jeff Boyce Microsoft Access...
Douglas J. Steele[_3_]
10
user's latest post:
change label format based on...
Published (2009-11-06 20:33:00)
Me.Controls("chk" & Right(checkbox.Name,2) & "_Label") -- Doug Steele, Microsoft Access MVP http://I.Am/DougSteele (no e-mails, please!) "night_writer" wrote in message ... I hve a form that has checkboxes for all 50 states. Because individual checks are hard for the user to see, I color the label of the field when the box is checked. When the form is open and a new a box...
BruceM via AccessMonster.com
10
user's latest post:
One Combo Box won't work??
Published (2009-11-06 18:56:00)
I missed that one. You could have put brackets around the field name, but it is better to use a non-reserved word. Allen Browne has a utility for checking such things: http://www.allenbrowne.com/Ap****ueBadWord.html Sklyn wrote: Well, It turns out it is a VERY basic issue.... POSITION is a reserved word.. So i changed all instances to "JobTitle" and it works perfect.. Should have checked that first hey! Thanks people.....
user's latest post:
Automatically populate a field...
Published (2009-11-05 16:07:00)
How is your form set up? Is it a form/subform? Does tblSO_Items have the lineno and sono as fields? "Darrell Childress" wrote in message ... The existing record is in a master table called tblSO_Items. This is a table which contains all line items from all Sales Orders. I am NOT adding anything to this table. The relevant fields in this table are Number, sono, and lineno. I am adding a new record to a table called...
user's latest post:
Create form using query...
Published (2009-11-08 21:47:00)
SELECT POPIS.Tip_opreme, DKP.Lokacija, POPIS.Soba, POPIS.Opis, POPIS.Verzija_IOS, POPIS.U_upotrebi, POPIS.Serijski_broj, [razliciti tipovi opreme].Tip_opreme FROM [razliciti tipovi opreme] INNER JOIN (DKP INNER JOIN POPIS ON DKP.DKP_ID = POPIS.Lokacija) ON [razliciti tipovi opreme].Tip_opreme = POPIS.Tip_opreme WHERE (((POPIS.Tip_opreme)=[Forms]![Pretraga po tipu opreme]![Tip_opreme])) ORDER BY DKP.Lokacija; If this can help anyhow But I will...
|
|
|
|
Latest active threads on Using Forms::
Started 3 days, 22 hours ago (2009-11-06 08:46:00)
by speaton via AccessMonster.com
Hello, again.
No takers for this question?
As far as I can tell, the problem seems to stem from the fact that I am not
referring to the field in the subform correctly in VB. I've tried referring
to it like this:
Forms!frmMainForm![frmSubform Subform].Form.FieldName
This doesn't seem to be correct, but I haven't been able to get any
variations of this to work, either. Can anyone ...
Started 1 day ago (2009-11-09 06:50:00)
by John W. Vinson
On Sun, 8 Nov 2009 18:36:04 -0800, blanch2010
wrote:
I have created a form and added 4 subforms to it. How can you get the tabs
from one form to land in the next form without clicking the next form to
activate it?
Hope I'm explaining myself well?
Thanks
Don
One way to do this is to put an extra unbound textbox on the first subform. It
must be enabled and visible, but you...
Started 2 days, 5 hours ago (2009-11-08 02:04:00)
by John W. Vinson
On Sat, 07 Nov 2009 23:58:38 GMT, "User via AccessMonster.com" u36225@uwe
wrote:
I need a textbox to show the highest value of a column within a table, but
exclude the values: 000, 994, 995, 996, 997, 998, and 999
Thanks
=DMax("[columnname]", "[tablename]", "[columnname] NOT IN ('000', '994',
'995', '996', '997', '998', 999')"
assuming that the column is of Text type. Leave ...
Started 1 day, 7 hours ago (2009-11-09 00:05:00)
by John W. Vinson
On Sun, 8 Nov 2009 11:47:31 -0800 (PST), Tia wrote:
Hello,
i have a list a list of employees along with salaries, in the query i
have calculated the total of package using:
nz([Basic Salary])+nz([Overtime])+nz([Transportation])+nz
([Accomodation])+nz([Meal Allowances])+nz([Others])
i want to calculate the total per day" total package /30" and the
total per hour"total package/30/9"...
Started 4 days, 12 hours ago (2009-11-05 18:49:00)
by Daryl S[_2_]
It sounds like the fields on your form are bound to a table instead of the
query. Check your datasource for the form - it should be the query.
--
Daryl S
"Smoki" wrote:
Hi,
I have question, I want to create form using query. I made a form in which I
choose from one table field, and then the other fields on my form should be
filled in with appropriate row from table.
I...
Started 1 day, 11 hours ago (2009-11-08 19:25:00)
by Tom van Stiphout[_2_] external usenet poster
On Sun, 8 Nov 2009 09:25:01 -0800, Bookmad
wrote:
Attachment fields are only available if you are using the new ACCDB
format. You can convert an MDB to this new format (Office Key
Convert).
-Tom.
Microsoft Access MVP
I want to be able to add jpegs against individual records. Looking at the
Access help pages, it says I need to add an attachment field to my table.
When I ...
Started 4 days, 15 hours ago (2009-11-05 15:38:00)
by Daryl S[_2_]
Not sure how to code for the right/left arrow keys, but you users can use the
PageUp and PageDown keys to scroll among the records.
--
Daryl S
"User via AccessMonster.com" wrote:
I have a form with two command buttons:
cmdNextRecord
cmdPreviousRecord
Is there coding out there that will allow the user to control the command
button "cmdNextRecord" On Click Event ...
Started 1 day, 14 hours ago (2009-11-08 16:48:00)
by Marc T external usenet poster
Hi All,
here's the current problem:
I have a form with a tab control which itself shows four instances of the
same subform (with different recordsets).
I've currently got the following expression for conditional formatting:
[Forms]![frmMainBrowse]![frmMainComboBox]![frmDat a]![DT_PLANNED_START]" "
This works great if you're only using the one tab, but if you move to
another the...
Started 1 day, 21 hours ago (2009-11-08 09:09:00)
by John_G via AccessMonster.com
Hi -
I can't see anything - which line is giving you the compile error? Is
child32 a combo box?
John
Dinamo/Pistons wrote:
See code below
Private Sub Combo30_AfterUpdate()
Me.Child32.RowSource = "SELECT Form FROM" & _
" tableComplaintTypes WHERE ComplaintID = " &
Me.Combo30
Me.Child32 = Me.Child32.ItemData(0)
End Sub
I am getting ...
Started 2 days, 2 hours ago (2009-11-08 05:03:00)
by timbits35 via AccessMonster.com external usenet poster
Hi,
I am using Access 2003 11.8166.8221 SP3. Can anyone confirm or deny if the
bookmark bug has been fixed in this version? I am using the bookmark in a
form to locate records and even though I have not encountered any problems, I
wonder if I am safe. Here is my code. As well is it better to use On Click or
After Update.
Private Sub cbosearch_AfterUpdate()
' Find the record that ...
|
|
Hot threads for last week on Using Forms::
Started 4 days, 10 hours ago (2009-11-05 20:23:00)
by Dirk Goldgar
"Jacques Latoison" Jacques Latoison at hotmail dot com wrote in message
...
I have a form that has drop lists.
Users will use a list to choose an item, then the associated query will
filter by that item.
Two things:
1) How do I get the list to make the query show all records. The list is
made up of records from another query.
2) How do I do number 1) when one form uses ...
Started 1 week ago (2009-11-02 15:14:00)
by Brendan Reynolds
"Mustanggt89 via AccessMonster.com" u52205@uwe wrote in message
news:9e837cd053bfd@uwe...
I have a database that was 1.8 Gig in size, I moved all the larger tables
to
SQL Server and linked them to my Access Database. Now when I run the
Access
Database to append my table on SQL server I still get an error message
that
the SQL can not be run becasue of size of the table will...
Started 3 days, 13 hours ago (2009-11-06 17:30:00)
by RonaldoOneNil
DCount does not work with forms, only Tables and Queries. A form's
recordsource is also a table or query so you do not need it to apply to
forms, you can use the underlying table or query.
DCount("[A Field in Table or Query]","[Query or Table
Name]","]","[AmountPledged] 0")
"scottyboyb" wrote:
I am still strugling with understanding DCount. I don't know why I can't get
it....
Started 4 days, 12 hours ago (2009-11-05 18:49:00)
by Daryl S[_2_]
It sounds like the fields on your form are bound to a table instead of the
query. Check your datasource for the form - it should be the query.
--
Daryl S
"Smoki" wrote:
Hi,
I have question, I want to create form using query. I made a form in which I
choose from one table field, and then the other fields on my form should be
filled in with appropriate row from table.
I...
Started 6 days, 1 hour ago (2009-11-04 05:30:00)
by Tom van Stiphout[_2_]
On Tue, 3 Nov 2009 18:38:01 -0800, Sklyn
wrote:
One way to debug this is to set a breakpoint at the "strSQL =" line,
and paste that sql statement into a new query in SQL view. Switch to
Design view, and the parser will show you the errors of your ways :-)
-Tom.
Microsoft Access MVP
Hi, I have a form with 12 Combo Boxes and the last one won't work.
Well it works but won't ...
Started 3 days, 13 hours ago (2009-11-06 17:56:00)
by Jeff Boyce
Does the "text" always come at the same place in the string?
Are all the strings the same length?
Are you trying to remove the "A" from inside the end of the number, or only
the first 24 characters?
More info, please...
Regards
Jeff Boyce
Microsoft Access MVP
--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or ...
Started 1 week, 3 days ago (2009-10-30 15:40:00)
by Klatuu[_2_]
If you are talking about locating an existing record, you can do that using
the After Update events of sono and lineno. You have to include both so you
know you have both values before you look for the record. First, you will
want to put a function something like this in the form's code module:
Function FindNumber() As Boolean
If IsNull(Me.txtSono) Or IsNull(Me.Lineno) Then...
Started 1 week, 2 days ago (2009-10-31 23:26:00)
by Linq Adams via AccessMonster.com
Two questions:
How are you planning to use DoCmd.FindRecord? You realize that you cannot
have command buttons on a Datashet View form?
What exactly do you want to 'hilight?' What you have in Datasheet View is a
row of connected textboxes. There is, in essence, nothing that will 'hilight'
the row, if that's what you're talking about. If you placed code in the
Form_Current event you ...
Started 4 days, 12 hours ago (2009-11-05 18:46:00)
by Daryl S[_2_]
The Has Module property only indicates that there are procedures attached to
the form - usually behind controls on the form or for events on the form
itself. It does not control whether or not you can save any design changes
to the form.
What kind of message do you get indicating you cannot save the changes to
the form?
--
Daryl S
"babs" wrote:
I have inherited a ...
Started 3 days, 17 hours ago (2009-11-06 14:04:00)
by BruceM via AccessMonster.com
This is where an Option Group comes into play. Create an option group using
the toolbox. Add option buttons inside the option group box. You may need
to create new ones, as I think option buttons created outside an option group
have different properties than ones created inside the option group. Assign
each button an Option Value. Use 1 and 2. It doesn't matter which is which,
but for...
|
|