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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Mackooo

    What is wrong with this querry

    Thanks Efrank, I checked it out and my filter for form was unchecked so I changed the form filter property to yes and it worked fine. Thanks again.
  2. Mackooo

    What is wrong with this querry

    I am trying to open a particular form with this query with Private Sub listboxECN_list_DblClick(Cancel As Integer) Dim stDocName As String Dim stCriteria As String stDocName = "ECN_log" stCriteria = "[ECN_number]= " & Me!listboxECN_list...
  3. Mackooo

    ListView Problem

    Hi Every one, Need help urgently with list view. I have successfully created a listview in my form. now I want to use the listview with Dbl_click event to open a certain form with current event. Her e is my code: Private Sub ctlListView1_DblClick() Dim currObj As listview Dim lstItem...
  4. Mackooo

    Problem with current record printing

    I have problem printing with current record, here is the code that I been using Private Sub CmdPrintECN_Click() Dim strReportName As String Dim strCriteria As String strReportName = "rptItem" strCriteria = "[Item_number]='" & Forms!items_log.[Txtitem_number] & "'"...
  5. Mackooo

    How to connect two tables in query

    Hi again, I am having problem in opening a form and with following query,as I have inner joint in the query and try to open thin thing with a code on click with a button. the filtering is done with item_number on the current form on as I have two tables connected in querry and both have...
  6. Mackooo

    How to format a subreport in main report

    hi Guys, I would like to see a sub report to be formated in my main report. As I have filtered records for my sub report based on a linked field with my main report. Now I can format the subreport on its own with constant number of lines printed with a funtion called in print event of the...
  7. Mackooo

    How to restrict page footer on other pages

    Thanks you guys, I got it done. Private Sub Report_Page() Me.PageFooterSection.Visible = Me.Page < 1 = True End Sub istead of "<" I used ">" and it worked fine. Thanks for all the help.
  8. Mackooo

    How to restrict page footer on other pages

    Hi Guys, Please help as I am still not able to print the report as I preview it, as I disabled the pagefooter section on pages after first page. One thing I do like to tell you that I do have some subforms on my page footer which do not have any data but just few text labels. Thanks for help...
  9. Mackooo

    How to print reports as seen on preview

    How to print the report exactly as you see on preview. I have a report where In the detail section I have a subreport which is based on a query from the main report. I have page break function in this subreport which inserts a page after 12 records. Secondly, I have a pagefooter, which is...
  10. Mackooo

    How to restrict page footer on other pages

    Hi again, But now show the the footheader in the preview but donot print when I print the report. Please help
  11. Mackooo

    How to restrict page footer on other pages

    This works great...Thanks a lot...
  12. Mackooo

    How to restrict page footer on other pages

    Thanks a lot fot your answer, but no change this is still not working, showing page footer on both the pages now.
  13. Mackooo

    How to restrict page footer on other pages

    NO this also did not work... I tried to use this with if...else.. state ment also did not work..same result now page footer on any page
  14. Mackooo

    How to restrict page footer on other pages

    Hi Abdulla, I am having some trouble here, infact when I use this code the pagefooter does not show on any page. Please help Thanks a ahead....
  15. Mackooo

    How to restrict page footer on other pages

    Please specify what kind of properties that I should look for.
  16. Mackooo

    How to restrict page footer on other pages

    How to restrict the visibility of a pagefooter section on the second or third page. As I have a report with a sub report in the detail section. I have limited the number of records in the detail section to 10 records. The first page need information in report header and page footer has some...
  17. Mackooo

    Can Limit be set for number of rows displayed in subreport

    Exactly I am also looking for the solution of this problem.

Part and Inventory Search

Back
Top