Search results

  1. L

    Hide partial Command bars

    Hi, How can I hide all the command bars except my customize tool bar ? I have hide all my command bars by the following code : ' Hide all window bar Dim i As Integer For i = 1 To CommandBars.Count CommandBars(i).Enabled = False Next i...
  2. L

    View image in the report

    Yes, I have try to put in the On format event, but a message popup " cann't find "AmmImage". I have also, change Forms!frmAmm to Reports!RepAmm and it doesn't work too. Le888
  3. L

    Reappear menubar

    Hi, I think I'm in trouble. I don't know what I have done to my database, right now, when I open it, the menu bar doesn't appear. The tool bar appear but not the menu bar. And this is globle, I have try to create a new database and it is the same thing, no menu bar. Want can I do to reappear...
  4. L

    View image in the report

    My image on the form has the following code and this works fine. Private Sub Form_Current() On Error GoTo HandleErr If Not IsNull([AmmImage]) Then Forms!frmAmm![ImgPicture].Picture = [AmmImage] SysCmd acSysCmdSetStatus, "Image: '" & [AmmImage] & "'." Else...
  5. L

    View image in the report

    hi, I have search in this this form and I didn't fint anything on it. My images are linked by a path file and I cann't see my image in the report what is the problem? Le888
  6. L

    report reachs max length

    Hi, I took a form which I have created and I save in the report format so, in this way I can print it out. But, my form has serveral tabs when I open the report in view mode it shows only the first tab info. What is the solution for showing all the info in my form? I have try to put the all the...
  7. L

    unzoom report view when open

    Thanks, it works fine!! :D :D
  8. L

    Print a number of pages

    Is it possible to do a popup menu that you can select all pages, or the the pages that you want to print? Le888
  9. L

    unzoom report view when open

    Hi, Is it possible to view a report that fit to the screen when it open? The problem I had is when I open the view mode of the report, the report is in a 100% format. Then, I have to click unzoom the report and it resize my report. Le888
  10. L

    Print a number of pages

    Hi, Is it possible to print a report that I want choose the pages to print? Example, I want to print pages 1, 5, 6. Le888
  11. L

    search in subform of a form

    First you have to create a field, example txtSearch and the field which you want to search in the subform let's say CompanyName. Then, goto the txtsearch field propriety, find something like update event on change and click on it. Put the code below and modified field names and subform names...
  12. L

    Related field on form

    Well, Access don't let you to have a continous mian form with a subform. The only way to do this is to create a pop-up form or simply another form. Which means that you create a continous main form and in the textbox of this form, create an event action to open an pop-up form or simply a form. Mica
  13. L

    Forms

    first question, Yes put in the open event DoCmd.MoveSize Right, down, Width, Height Mica
  14. L

    Option Group Nulls Out

    Try this...
  15. L

    forms vs web

    I have try to export in htm but it gives me an error message. The first message ask me if my form is open then close and retry, the second one is if you use a model make such it existe, and the third one is if the file is not open then make sure it has engouh space in the driver. I think to...
  16. L

    forms vs web

    Hi, I have created all my forms in Access, is it possible to converte to website forms? I have saw an icon where you can created form in htm extention. I don't want to recreated all in htm. What is the solution? Thanks, Mica
  17. L

    setfocus problem

    Is this what you want? Dim stDocName As String Dim stLinkCriteria As String stDocName = "frmMain" DoCmd.OpenForm stDocName, , , stLinkCriteria Forms![frmMain]![subform]![IDField].Enabled = True Forms![frmMain]![subform]![IDField].SetFocus DoCmd.FindRecord Me![IDField] 'The field in the...
  18. L

    custom toolbar

    I cann't find view in the menu bar. Can you capture an image for me. Thanks, Le
  19. L

    custom toolbar

    Another question, I have created my own tool bar but when I go to personalise tool bar, I don't see the name of my tool bar. Where should I go or do to see the name of my tool bar ? Thanks, Le
  20. L

    custom toolbar

    Yes, I have put the code in the form which I unhide my own toolbar but this don't work. Le
Back
Top Bottom