Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by PPJOSEPH

  1. PPJOSEPH

    MS Excel add result function

    Hello, I need help in coming up with a formula for the following: I want to add C2 and B3 and have the result in C3. However if B3 is zero, then the result in C3 should be zero. Any help is appreciated. Thanks Paul
  2. PPJOSEPH

    KEEPING REPORT TOGETHER

    Max, I made the blank page disappear by taking the report header out. Paul
  3. PPJOSEPH

    KEEPING REPORT TOGETHER

    Max, that did not work, I wonder why only part of the first page is blank. If I take out 1/2 of the fields in the Detail Section, the report prints out as normal without the blank 3/4 page. Thanks Paul
  4. PPJOSEPH

    KEEPING REPORT TOGETHER

    Hi, I have a report that has two group headers besides the page header. The detail section has fields that overflows to the second page. When I preview the report the headers stays on one page and the details starts on the second page and there by leaving 3/4 of the first page blank. Is there a...
  5. PPJOSEPH

    Second set of input row should appear only when necessary

    Thanks Pampers for the coding and the idea. Thanks AceMan1 for your participation and willingness to help out. You both deserves a star With Pampers idea this is what I did: When the user tabs on the last field in the first row, a command button is visible asking to click the button if another...
  6. PPJOSEPH

    Second set of input row should appear only when necessary

    Well, Aceman1....you lost me...sorry Paul
  7. PPJOSEPH

    Second set of input row should appear only when necessary

    Hi, I have a data entry form with five fields (name, address, city, county, state). 90% of the users will have only one record to enter but the other 10% might have more than one. So I created a second set of fields in the table (name1, address1, city1, county1, state1). Now in the data entry...
  8. PPJOSEPH

    Help on YesNo MsgBox

    Thank you so much for you quick reply. It worked great. Paul
  9. PPJOSEPH

    Help on YesNo MsgBox

    Hi: I've created 2 vbYesNo MsgBox one to save the input and second to print the input. If I chose not to save the input I want to form "frmOpenAsgmt" to automatically close when I click the No button, how can I get it to work. Any help is greatly appreciated. Below is the code where I get...
  10. PPJOSEPH

    PRINT SCREEN OF AN INPUT FORM

    Zameer to the rescue again!!! Thank you so much Zameer. It worked out great.
  11. PPJOSEPH

    PRINT SCREEN OF AN INPUT FORM

    Zameer: Here is the code: Private Sub cmdPrintForm_Click() On Error Resume Next If MsgBox("Do you wish to print this form?", vbYesNo) = vbYes Then DoCmd.PrintOut End If End Sub However, another form (frmInactiveShutDown) is printed when Yes button is clicked. The form that needs...
  12. PPJOSEPH

    PRINT SCREEN OF AN INPUT FORM

    Hi, My database has an Inactive Shut Down form that pops up if there is no activity for 30 minutes and closes the application. I'm trying to do a print screen of an input form. The form as a vb YesNo button to print. When I click Yes the first time it automatically prints the Inactive Shut...
  13. PPJOSEPH

    Converting Date Format

    Thanks a lot Remou for you knowledge, patience and the willingness to help. As you can see I never worked with SQL before always with VBA. Anyway it worked and thanks again for you patience. I wish I can give you another star for your patience. Paul
  14. PPJOSEPH

    Converting Date Format

    Remou, I'm getting stuck. When I copy pasted your line and tried to run it I got the message "the syntax of the subquery in this expression is incorrect" When I clicked ok, it rewrote the line as [UPDATE tblTable SET...
  15. PPJOSEPH

    Converting Date Format

    Remou, that was pretty quick. Thanks, but where do I insert "DateSerial(Mid(FieldName,2,2),Mid(FieldName,4,2),Mid(FieldName,6,2))" in the query, I tried in criteria but that did not work.

Part and Inventory Search

Back
Top