Search the web
Sign In
New User? Sign Up
ms_access · Help and advice for users of MS access
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Click here for the latest updates on Groups Message search

Messages

  Messages Help
Advanced
Messages 16117 - 16146 of 21745   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16117
Hi Couldn't you just set the "required" parameter to "yes" in the table design for that particular field? Then they have to put something in or the record ...
TIMLKP
timslaptop
Offline Send Email
Nov 1, 2004
12:23 pm
16118
Try this: Private Sub cmdSave_Click() if isnull(me.myfield)then msgbox "Please enter myfield before doing this operation." me.myfield.setfocus exit sub end if ...
George Oro
georgeoro
Offline Send Email
Nov 1, 2004
12:46 pm
16119
That is definately a more sure way, but I think the message you recieve is not too pretty. But it defintely works the best. TIMLKP...
Lonnie Johnson
prodevmg
Offline Send Email
Nov 1, 2004
2:18 pm
16120
There are a lot of things Access does well in building the basic tables, queries, forms and reports that don't need VBA to work well. This is one of them. If...
Bob Weller
bob_weller_tx
Online Now Send Email
Nov 1, 2004
3:14 pm
16121
... Hi, I have a demo on my website that will show you how to make certain fields required on your form. You can find the demo by following the link below. ...
Neil Squires
greaterdesig...
Offline Send Email
Nov 1, 2004
4:35 pm
16122
Greetings! Background: I have a form with a header, detail, and footer sections. header - has several combo boxes, to dynamically alter the type of rows...
happily
happily613
Offline Send Email
Nov 1, 2004
8:00 pm
16123
Sandra- Well, the "Dummies" books have always left a lot to be desired. It's silly to write code to do this when the form loads. Open the form in Design...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
8:38 pm
16124
Hi John, I had first tried the suggestion to use Formatting/Conditional formatting etc. The field is a text field...tried field value is equal YES (and tried...
happily
happily613
Offline Send Email
Nov 1, 2004
9:09 pm
16125
Are you sure it is a text field? check the field in the table design view and see if it is "TEXT" or "YES/NO". If it is YES/NO, then it is not a text field....
Bob Weller
bob_weller_tx
Online Now Send Email
Nov 1, 2004
9:25 pm
16126
Hi Bob, yes, checked table-design ... the field is set at text.... thx, Sandra Bob Weller <bob_weller_tx@...> wrote: Are you sure it is a text field?...
happily
happily613
Offline Send Email
Nov 1, 2004
9:32 pm
16127
If it is going to contain Yes or No, I would change it to a Yes/No field in the table design. It will better handle your data and reduce its size. Then you...
Bob Weller
bob_weller_tx
Online Now Send Email
Nov 1, 2004
9:34 pm
16128
When you use this property "Required" and set it to "YES", You have to set the other one "Allow Zero-Length" to "NO" to be sure that the user will enter data...
Zeco1st@...
zeco1st
Offline Send Email
Nov 1, 2004
9:38 pm
16129
Using Access 97, I am trying to create a query, VB code or a macro to return values from a field based on partial content. I need to get each record that ...
Tom P
sage3k
Offline Send Email
Nov 2, 2004
12:08 am
16130
Microsoft uses a control that operates like 2 list boxes. The left column has check boxes that operate in multiselect mode. The right column has a list of...
Guy Harley
guyharleyaus
Offline Send Email
Nov 2, 2004
12:16 am
16131
Hi Neil, Sorry for late reply. Just wondering where or how should I add the scripting file object (Microsoft Scripting Runtime)? Thanks mate! ~Arnold~ Neil...
arnold choo
arnoldcch
Offline Send Email
Nov 2, 2004
2:18 am
16132
Hi, Has anyone used a datagrid and adodc in Access. Please let me know how can use both. Is there anyway I can do a spell check in my application Thanks PM ...
PM
prat85635
Offline Send Email
Nov 2, 2004
2:33 pm
16133
... Arnold, Give me a call and I will step you through it on the phone. Neil Squires ===== MSDeveloper Add-Ins Library ...
Neil Squires
greaterdesig...
Offline Send Email
Nov 2, 2004
3:51 pm
16134
Hi Tom, How about: dim strFilter as string strFilter = "*" & Me!txtFilter & "*" where table-field LIKE strFilter strFilter for example would be: "*FL*" Tom P...
happily
happily613
Offline Send Email
Nov 2, 2004
5:29 pm
16135
I have a form which I am linking a table to. I have several date fields which I want the user to access the Calendar control to populate the fields with a...
schuh_ramos
Offline Send Email
Nov 2, 2004
6:36 pm
16136
I typically place a small calendar button to the right of each date field, so the user can press the button to enable the calendar control for picking a new...
Neil Squires
greaterdesig...
Offline Send Email
Nov 2, 2004
7:55 pm
16137
Hello all, I am using the popular API code that hides the access window and just shows a form on the desktop. (Small snippet below) Private Declare Function...
Lonnie Johnson
prodevmg
Offline Send Email
Nov 2, 2004
8:10 pm
16138
Lonnie, The following line will preview a report. DoCmd.OpenReport stDocName, acPreview If you want to print a report instead of preview it, try the following....
Neil Squires
greaterdesig...
Offline Send Email
Nov 2, 2004
8:20 pm
16139
If you purchase your program can you use it in Access 2003? I mean can I copy it into what I am using and it will work? Right now nothing works. I don't...
lschuh@...
schuh_ramos
Offline Send Email
Nov 2, 2004
9:08 pm
16140
you refer to 'frmXmplContactEvents? I am trying to find an example of a calendar control that is easy to understand. A Form a couple of text boxes a calendar...
schuh_ramos
Offline Send Email
Nov 2, 2004
9:35 pm
16141
Lonnie, Make a new toolbar, and attach it to your report. To the toolbar can add e.g. the print function, output to snapformat etc... On Tue, 2 Nov 2004...
Eddie Van
strep21
Offline Send Email
Nov 2, 2004
9:58 pm
16142
Dear Neil, Gee.....I guess I'm thousands miles away and that could cost me a fortune (now in Australia, and sometime travel to Asia).......... Is it pretty...
arnold choo
arnoldcch
Offline Send Email
Nov 3, 2004
2:14 am
16143
Dear All I will appreciate if any body can guide me that how I can put a password on openeing a form Regards Shahid...
msq1970
Offline Send Email
Nov 3, 2004
7:01 am
16144
... Well I've never tried it but it must be easy. - Make a frmGetPwd, make it a modal, dialog, popup - give it 1 text box to get the Password - Make the Format...
Brett Collings
zkbac
Offline Send Email
Nov 3, 2004
8:47 am
16145
I've built a form for our case managers to add new clients to our database. I'd like at the end, either with a command button or the enter key to have the...
texhibita@...
troy_eddie
Offline Send Email
Nov 3, 2004
2:27 pm
16146
Open form in add mode bundled after a save this record type macro would do what you want, I think, but you would be well advised to build this in visual basic....
Mike Coday
codayfamily
Offline Send Email
Nov 3, 2004
2:33 pm
Messages 16117 - 16146 of 21745   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help