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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 68626 - 68655 of 76932   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
68626
Hi Jan, Do you want to find records in the form's recordsource or some where else? How many records in the source of your search, hundreds, thousands,...
Clive Williams
horastacatto
Offline Send Email
Jan 1, 2009
12:29 pm
68627
Hi all There is a new hot fix for Access 2007 at: http://support.microsoft.com/kb/960307 Read more about it at the MS Access Blog: ...
Bill Mosca
wrmosca
Offline Send Email
Jan 1, 2009
5:24 pm
68628
I have read what I can find but it is still not clear, I have two fields in a table called FirstName, LastName however the user put both in the FirstName...
Richard
jamrmask
Offline Send Email
Jan 2, 2009
2:51 am
68629
Richard- You should set the Required property of the LastName field to Yes to prevent this in the future. What is in the FirstName field? John Smith John Q....
John Viescas
jlviescas
Offline Send Email
Jan 2, 2009
7:11 am
68630
You are correct in that I should have set the required property, this is the first time I have had a problem with this, will consider in the future "If it can...
Richard
jamrmask
Offline Send Email
Jan 2, 2009
2:26 pm
68631
Richard- Then you can try an update query like this - do it on a COPY of the table first! UPDATE MyTable SET FirstName = Left([FirstName], Instr([FirstName], "...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2009
2:42 pm
68632
I have a form with a textbox, I am parsing information and want to change commas to a CRLF so instead of the data in a text box looking like this Terence...
buffalome90210
Offline Send Email
Jan 2, 2009
3:05 pm
68633
Hi everbody... how to connect Direct Ms Access File .mdb, Data pages, Projet, to web server or FTP or HTTp server or How to make Ms Access File as web based...
spbh123456
Offline Send Email
Jan 2, 2009
4:27 pm
68634
Terence- Are you doing this in code or in an expression in a query or text box? If in code: Me.txtBox = Me.Name_field & vbCRLF & Me.Addr_field & vbCRLF &...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2009
4:53 pm
68635
You can't. You can use an .mdb file as the database storage, but you must write code in an Active Server Page or PHP or Perl to use the data in a web page. ...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2009
4:56 pm
68636
I've recently started an online information site for USA cities, using vBulletin software. vBulletin is PHP based, and I'd like to use MS Access 2003 to store...
cfnone
Offline
Jan 2, 2009
5:58 pm
68637
Hi, John is right. The best way to get information from Access on to a web page is by using your web development software to develop your web pages and...
Patrick Wood
hunterpaw
Offline Send Email
Jan 2, 2009
5:59 pm
68638
Pat- One caveat about DAP - they're very difficult to deploy on the web. They work OK on an Intranet as long as everyone has a copy of Office. John Viescas,...
John Viescas
jlviescas
Offline Send Email
Jan 2, 2009
6:10 pm
68639
Hi John, Thanks for the reminder. I hope you are having a great New Year! The HTML Access produces often require a lot of work to make it more presentable for...
Patrick Wood
hunterpaw
Offline Send Email
Jan 2, 2009
8:12 pm
68640
Hi, I wish I knew how to use PHP, but I am working with ASP.Net and that is enough for my pea brain. If you do not get a response here you might try a web...
Patrick Wood
hunterpaw
Offline Send Email
Jan 2, 2009
8:21 pm
68641
Does this get you started? http://www.w3schools.com/PHP/php_db_odbc.asp Paul ... using ... reports ... site, ... MS...
Paul
pbaldy72
Offline Send Email
Jan 2, 2009
8:22 pm
68642
I have a form that is opening up but it just will allow me to enter new records. I don't have the ability to see previous records. It's actually a header form...
Joe
joefonseca79
Offline Send Email
Jan 2, 2009
8:29 pm
68643
Hi Joe,   set the form DataEntry property to No if it is yes, you can ONLY enter records ...   Warm Regards, Crystal Microsoft MVP remote programming and...
Crystal
strive4peace...
Offline Send Email
Jan 2, 2009
10:12 pm
68644
Thanks John, it worked great, will disect so I can learn. ... table ... Richard ... this ... could ... tblEmployees....
Richard
jamrmask
Offline Send Email
Jan 3, 2009
12:11 am
68645
John, I think I understand and see what -1 and +1 are doing but will the -1 alwyas give you the end of the first word or is it something else? Is InStr short...
Richard
jamrmask
Offline Send Email
Jan 3, 2009
12:33 am
68646
Richard- By way of explanation, the Instr function returns the offset of the first occurence of the search string. Let's say FirstName contains: John Smith In...
John Viescas
jlviescas
Offline Send Email
Jan 3, 2009
7:12 am
68647
Many thanks John. ... first ... the ... sixth ... you ... characters. ... anything in ... Richard ... the ... in ... Yes ... to ... two ... put...
Richard
jamrmask
Offline Send Email
Jan 3, 2009
2:59 pm
68648
How would I write the VB that will look at table _PASSHEADER and return me only records where ACTIVE = YES Here's a link to an image of what I'm trying to do. ...
Joe
joefonseca79
Offline Send Email
Jan 3, 2009
4:08 pm
68649
How would I write the VB that will look at table _PASSHEADER and return me only records where ACTIVE = YES Here's a link to an image of what I'm trying to do. ...
Joe
joefonseca79
Offline Send Email
Jan 3, 2009
4:08 pm
68650
Joe- DoCmd.OpenForm rs!Argument, WhereCondition:="Active = True" John Viescas, author Microsoft Office Access 2007 Inside Out Building Microsoft Access...
John Viescas
jlviescas
Offline Send Email
Jan 3, 2009
4:16 pm
68651
hI Joe, You almost already wrote it yourself! DoCmd.OpenForm "YourFormName", WhereCondition:="ACTIVE = YES" This only works on the main form however and not...
Patrick Wood
hunterpaw
Offline Send Email
Jan 3, 2009
4:27 pm
68652
Joe Here is the DAO code. If you are using Acc 2000 or Acc XP you'll have to add the DAO library to your references. Public Sub TestStuff() Dim db As...
Bill Mosca
wrmosca
Offline Send Email
Jan 3, 2009
4:45 pm
68653
Oops! I didn't scroll up high enough in my list of emails. I didn't see the whole thread. Regards, Bill From: MS_Access_Professionals@yahoogroups.com ...
Bill Mosca
wrmosca
Offline Send Email
Jan 3, 2009
4:48 pm
68654
I have a command button that upon clicking it from a menu opens a form that is populated by a query requiring a parameter input. When I click the command...
Patrick A. Toomey Jr.
ptoomeyjr
Offline Send Email
Jan 3, 2009
4:58 pm
68655
Patrick The second form is opening before the calling form closes. That is to be expected, but you can hide the current form. Your code would look something...
Bill Mosca
wrmosca
Offline Send Email
Jan 3, 2009
5:18 pm
Messages 68626 - 68655 of 76932   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