Search results

  1. W

    Web Browser ActiveX Control

    One more thing, is there a way to open pdfs in a zoomed view without grey fields on the sides? Let's say 120% or to fit the frame.
  2. W

    Web Browser ActiveX Control

    Thank you vbaInet. This works perfectly. You made my day!
  3. W

    Web Browser ActiveX Control

    Yes. After Me. my web_browser is found. But navigate method is not listed. In addition, there even is a reference to Windows Browser Controls enabled.
  4. W

    Web Browser ActiveX Control

    Sorry for picking up this subject from 2011 but the problem matches my problem so I didn't want to create a new one. I am also struggeling with displaying pdf in a webbrowser control. I use Navigate method as it was said but still getting the same error: method or data member not found. I've...
  5. W

    Disabling autoformating of controls

    In the view form, the tree opens in the size like it is shown in form/design view. Only in design form (the size above) is how I want it to be.
  6. W

    Disabling autoformating of controls

    Uncle Gizmo you are not being helpful at all. Not every body here in this forum is english-speaking person. Yes, I was irritated by your steps but ok. If that's how you help. OK. I am sorry that I was not polite enough. BUt ok. let's leave it. My access is 2010 version and files in ACCDB. Tree...
  7. W

    Disabling autoformating of controls

    I don't know what you don't understand from my problem's description. You want me to describe the whole process of putting controls onto my forms. What for? I just dragged them and dropped them from the control menu. Is this not clear for you? And the name is as I mentioned a few posts above.
  8. W

    Disabling autoformating of controls

    There are two controls in my form- treeview control and adobe pdf reader. I can easiliy modyfy their dimensions in design form by a mouse. When I have set my required width and height of the control, I switch info form view again to work with them but they resize automatically to the smaller...
  9. W

    Disabling autoformating of controls

    I don't get you. I just want to be able to change the dimensions of a tree control and adobe pdf control so that I can change width and height in my own way and not having them resized automatically when in form view. Is this what am I to explain?
  10. W

    Treeview control- expanding

    Hi! I'd like to expand me tree view automatically when a node matches a string variable from a table. In other words, when a node in a tree matches the given name (variable), the tree will expand all the way down to that name. I guess I need to use "For each node" and when the node and variable...
  11. W

    Disabling autoformating of controls

    I don't understand you :(
  12. W

    Disabling autoformating of controls

    Just "tree"
  13. W

    Disabling autoformating of controls

    Hi! I have a problem with formating controls in a form. As a example, I inserted a tree view control and adobe reader control. After I've resized them manually in a design form, I switch into form view and they both resize automatically to their own size (don't know where it gets from). In the...
  14. W

    Loading pdfs withing an access form

    Hi there, Is there any way in MS Access/VBA to open a pdf file but withing a form? I mean, I want some kind of the same functionality as picturebox so I want to load a pdf file to a "picturebox" but to that which handles pdfs. And in case of multiply pages, an easy way to move forward and...
  15. W

    Displaying an image from a listimage

    Hello! I want to display a picture (or pictures) from Imagelist in the picturebox (KIBES_picture).But I am getting a type mismatch error in the last line. What am I doing wrong? Public Sub load_picture() Dim iml As ImageList Set iml = New ImageList iml.ListImages.Add , ...
  16. W

    Displaying an image from a listimage in a picturebox

    Hello guys! I want to display a picture (or pictures) from Imagelist in the picturebox (KIBES_picture).But I am getting a type mismatch error in the last line. What Public Sub load_picture() Dim iml As ImageList Set iml = New ImageList iml.ListImages.Add , , LoadPicture("K:\Kapa-Planung...
  17. W

    # mark in searching

    Thank you. It works when I put this number into textbox. But can I somehow do it in the code with variable (value from textbox) so that in textbox I type # without square brackets?
  18. W

    # mark in searching

    Hi there, I've got a bit of a problem with # mark when I want to search a number containing "#". The number is as follows: 33.#5hy4-1234 When I insert a part of this number to a textbox eg. #5hy to search records containg it, it gives me no results (despite there are such in a database) I know...
  19. W

    Getting the value from a table

    Why does not the programm conduct condition if when there is sql= null? It simply skips it and go directly to else? sql = DMax("Function_KSW", "Functions", "Function_KSW like '" & ksw & "*'") If sql = Null Then MsgBox "There are no records found" sql_new = [Forms]![Add_new]![Combi0] + "A00"...
  20. W

    Getting the value from a table

    Thank you @Galaxiom. Now everything works perfect. Tell me one more thing, how can I stop getting the error when there is no value found in the table? When I use if after the funtion is run, it is not solving the problem bacause the errors pops up immediately and it doesn't go to the end of the code
Back
Top Bottom