Recent content by Les

  1. L

    Margin loss...

    I have been struggling with this problem for quite some time. Everytime the printer changes the margins defaults to 1 inch and Letter size. There has to be an easier way than to use code to change the prtDevMode blah blah blah.
  2. L

    Database Window Prob

    THANKS ghudson! I'll try that.
  3. L

    Database Window Prob

    Yes, where the button is. Maybe saving the form as a report is my only answer and using openreport. ty, Les
  4. L

    Database Window Prob

    I have a database that opens without displaying the database window. I have a button in a form that will print another form. The problem is when the button is clicked the database window shows up. Can anyone tell the command line to hide the database window? I'm using Access 2000 thanks, Les
  5. L

    Database Window Prob

    I don't need to open the form, just print it. Printing is not my problem the database window is. ty, Les
  6. L

    Database Window Prob

    TY Rob... the button prints another form (the whole form... not one record) Private Sub Command1_Click() Dim stDocName As String Dim MyForm As Form stDocName = "Another Form" Set MyForm = Screen.ActiveForm DoCmd.SelectObject acForm, stDocName, True DoCmd.PrintOut...
  7. L

    Database Window Prob

    I'm using Access 2000 ... DoMenuItem doesn't work on this version anymore.
  8. L

    Database Window Prob

    Please HELP! I need to know the command line to hide the database window.
  9. L

    Database Window Prob

    I see... that is the problem, I set the startup to not display the window but when the print form button is clicked.. voila! the database window shows up.
  10. L

    Database Window Prob

    TY for the speedy response. What exactly is the code to hide the database window?
  11. L

    Database Window Prob

    I have a database that opens without displaying the database window. I have a button in a form that will print another form. The problem is when the button is clicked the database window shows up. Can anyone tell me how to keep the database window from showing up? thanks, Les
  12. L

    another dilemma

    I'd like to show the dates for the people that update the loan and also make that the base for any late fees that needs to be imposed.
  13. L

    another dilemma

    Thank You Rich. I've played with it and was able to create a normalized test db with one-to-many relationship. Customer data on one side and payment detail on the many. Now, Let's say a customer will start payment on jan 1, 2003 and he has 6 months to pay it. How do i go about automating the...
  14. L

    another dilemma

    More details Rich thanks, Les
  15. L

    another dilemma

    I have fields called [month1] thru [month60]. if i subtract [monthleft] from [months2pay] i get the month number. now i need to pick up the data from the field that corresponds. ' ** TEXT3 has: ="[month"&[months2pay]-[monthleft]&"]" ' ** OUTPUT field...
Back
Top Bottom