Search the web
Sign In
New User? Sign Up
MS_Access_Professionals · MS Access Professionals
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2563 - 2592 of 76923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2563
I will be out of the office starting 12/31/2002 and will not return until 01/02/2003. I am currently out of the office - returning Thursday, Jan. 2nd...
srollins@...
ironwood9
Offline Send Email
Jan 1, 2003
8:29 am
2564
OK, let's try a little debugging. Right-click on the line, Me.Order_Subform!ProductID.Requery. Choose Toggle/breakpoint. This will force the code to stop at...
Bill Mosca
wrmosca
Offline Send Email
Jan 1, 2003
6:41 pm
2565
Hello Bill, I did as you have to according to you, but the supplierID is not Empty it shows the value. I dont understand what the problem is. I am again...
Shariff
imran_sharief30
Offline Send Email
Jan 2, 2003
5:22 am
2566
Shariff The only reason why the list is blank is if there was nothing returned by the row source. If you can upload a sample database to the group files, I ...
Bill Mosca
wrmosca
Offline Send Email
Jan 2, 2003
5:52 am
2567
I don't know if I'm calling it the correct words but what I'm seeking to do is if a user enters text in a text box say the name micheal, and he enters it as...
jbbalbo
Offline
Jan 2, 2003
3:32 pm
2568
Help, please. I'm new to Access, being a retread from dBase. To populate the primary key, IDnum, in new records, I do not want to use the AutoNumber data type....
pwconcord2000 <bellio...
pwconcord2000
Offline Send Email
Jan 2, 2003
5:00 pm
2569
yes I do it every day but you need to be an administrator on the server. here is how I do it I have BATCH files that brings down the files from the ftp site to...
harry harry
harrry155
Offline Send Email
Jan 2, 2003
5:13 pm
2570
... Otherwise, you can put something like this in the after update event: Me.TextBoxName = StrConv(Me.TextBoxName, vbProperCase) Paul ... seeking ... Michael...
Paul <pbaldy72@...>
pbaldy72
Offline Send Email
Jan 2, 2003
5:24 pm
2571
Use the Keypress event like this: ' Private Sub txtFName_KeyPress(KeyAscii As Integer) KeyAscii = Asc(UCase(Chr(KeyAscii))) End Sub ' ' jbbalbo...
Allan
allan_v_pimb...
Offline Send Email
Jan 2, 2003
5:28 pm
2572
I'm sorry. I mis-read your request. This will make all the characters upper case. You would want to use the StrConv() function. ' ... calling it the correct...
allan_v_pimble_sr <al...
allan_v_pimb...
Offline Send Email
Jan 2, 2003
5:32 pm
2573
Much better idea would be to use the autonumber field, hide it from your users, and create a new field to hold your 'public' key. Cheers, Andrew ... From:...
Haslett, Andrew
ahaslettilc
Offline Send Email
Jan 2, 2003
6:35 pm
2574
What you want to do completely defeats the purpose of a primary key. How are you going to establish relationships if you reuse deleted keys? I strongly advise...
Bill Mosca
wrmosca
Offline Send Email
Jan 2, 2003
7:50 pm
2575
Is there are method to make listitems invisible to delete. Sorry Bill I can't use a continuous form as there are other things the list view does....
kamat_anita <kamat_an...
kamat_anita
Offline Send Email
Jan 2, 2003
8:25 pm
2576
This sort of design thinking is very old BC (Before Codd) and never, never, ever correct. It is very, Very, VEry, VERy, VERY bad practice. ... ...
John Project Manager
levelthewings
Offline Send Email
Jan 2, 2003
9:00 pm
2577
sorry folks!! Another problem. I have this gobal variable that is declared as a DAO recordset, when a user perform a search the criteria for the search in the...
kamat_anita <kamat_an...
kamat_anita
Offline Send Email
Jan 2, 2003
9:11 pm
2578
This may not have any impact on your problem, but I've found out that whenever you go into `Debug' mode your Global Variables lose their contents. For...
Ray <rharkness@...>
harra1971
Offline Send Email
Jan 2, 2003
9:27 pm
2579
yeah but when I place the cursor over the gobal variable in a small yellow box it say RS=Nothing. All I am trying to do is to move to the next record or to ...
Anita Kamat
kamat_anita
Offline Send Email
Jan 2, 2003
9:32 pm
2580
I have created a query that returns all the data I need. Now I must create a form so a user can enter specific criteria to get selected info from that...
Annie Johnson
eastsacbrewers
Online Now Send Email
Jan 2, 2003
10:04 pm
2581
I meant " Now I must create a form so a user can SELECT specific criteria (eg. date) and return data from the query and display it in a report. I know I must...
Annie Johnson
eastsacbrewers
Online Now Send Email
Jan 2, 2003
10:08 pm
2582
I populate an Access 97 table with data from an Oracle database using the import process. Each week I append data to my table. Recently date fields were...
pserber <pserber@...>
pserber
Offline Send Email
Jan 2, 2003
10:13 pm
2583
Create a form with unbound test boxes. Format the boxes accordingly - i.e. date, number, etc. Save & close the form. In the design mode of the query you've...
Beth <bludwig@...>
budbeth1
Offline Send Email
Jan 2, 2003
10:26 pm
2584
Annie, In this example, there is a combobox called cboDate that is used to select the date the user want a report on, and a button called cmdPreview that the ...
John Ruff
papparuff
Offline Send Email
Jan 2, 2003
10:55 pm
2585
Sorry, Beth - tried your method and it's not working. Then again, it could and probably is me! "Beth <bludwig@...>" <bludwig@...> wrote:Create...
Annie Johnson
eastsacbrewers
Online Now Send Email
Jan 2, 2003
11:14 pm
2586
There are all kinds of ways to do this. You don't really need a filter. Create a form with textboxes for "from" and "to" dates, or whatever the criteria you...
Paul <pbaldy72@...>
pbaldy72
Offline Send Email
Jan 2, 2003
11:19 pm
2587
I think I understand this - but how does the Form promt the user to enter a date for the query? "Paul <pbaldy72@...>" <pbaldy72@...> wrote:There...
Annie Johnson
eastsacbrewers
Online Now Send Email
Jan 2, 2003
11:46 pm
2588
Howdy, Could some please provide a list of all the tools/packages/files necessary to create an Access runtime for distribution. I am in the process of...
Mark Hoffman
hoffomarx
Offline Send Email
Jan 2, 2003
11:48 pm
2589
Hello Everyone, I've recently committed myself to creating our 2003 budget in MS Access 2000. I have all of my information uploaded as a series of tables and...
Bryan Smith <smiffy27...
smiffy272001
Offline Send Email
Jan 3, 2003
12:29 am
2590
Bryan: This may not be the most elegant, should work. int( your_fractional_nuumber + .9999999 ) Dave ... From: Bryan Smith <smiffy27@...> To:...
dave sharpe
pmmgpgp
Offline Send Email
Jan 3, 2003
12:49 am
2591
I'll have a button that I click on to order the report. That button calls up the input form, which has the input fields and a "Continue" button. The continue...
Paul <pbaldy72@...>
pbaldy72
Offline Send Email
Jan 3, 2003
12:53 am
2592
Anita I must be misunderstanding you. Are you referring to a list box? It's not possible for a user to delete an item from a listbox. Bill ... From:...
Bill Mosca
wrmosca
Offline Send Email
Jan 3, 2003
12:54 am
Messages 2563 - 2592 of 76923   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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