Search results

  1. R

    Treeview problem (MSCOMCTL)

    Hi MajP, I don't quite agree with you though. I have sent 2 screenshots where it might be clearer. 3 nodes are moved from the 1st treeview to the 2nd, temporary, treeview. These 3 nodes have to be moved far down. I now put them with Drag&Drop in the 2nd treeview Then I search in the 1st...
  2. R

    Treeview problem (MSCOMCTL)

    Hi MajP, Thanks for your reply. It is indeed an option to bring up a right click menu. But, Drag and Drop is much faster. With a right click menu the user has to click, then select what to do and on another node again right click and select what to do. My solution uses a second (temporary)...
  3. R

    Treeview problem (MSCOMCTL)

    Hi MajP, So why actually use 2 Treeviews... I'll try to explain. I have 3 tables. 1. Address 2. Object 3. Inspection The Treeview is a maximum of 3 levels: 1 1.2 1.2.3 1.2.3 1.2.3 The address is the address of a factory (allways 1 node - the root). There are more than 1,000 objects at that...
  4. R

    Treeview problem (MSCOMCTL)

    Hi Guys, I've created a form with 2 Treeview object on it. I can Drag and Drop from one to the other but I have a problem when drag & drop is finished. If I Drag and Drop from Treeview_1 to Treeview_2, the vertical scrollbar that was visible in Treeview_1 disappears... Has anyone an idea how I...
  5. R

    Class to move about 20 pictures

    Hi Arnelgp, Thanx for your reply. I'm going to see if I can find anything interesting this afternoon regarding POS applications
  6. R

    Class to move about 20 pictures

    Hi MajP, 🙈🙈🙈 I am deeply ashamed. I've been developing in MS-Access for quite a few years now, but.... I really didn't know that this was possible
  7. R

    Class to move about 20 pictures

    Dear MajP, Thank you for your explanation. And I know that Access is indeed not really suitable for this kind of "graphical" work. I am fairly familiar with VB.NET. Have made quite a few applications with it in the past. But I'm not very familiar with CLASSES yet. And it's time for me to dig...
  8. R

    Class to move about 20 pictures

    Good morning MajP, WOW! I think this is exactly what I want! Thank you very much for your help with this! I'm going to study the code and develop the program further. Now that I look at this one more question comes to my mind... Isn't it also possible in Access to create a new object...
  9. R

    Class to move about 20 pictures

    Hi MajP, There are supposed to be 2 screens: 1. The screen where the Floorplan can be created and updated 2. A screen in which the Floorplan is shown and where you can click on the objects (images or command buttons with images) to open the restaurant table (Eg. table 1023). I'm working on the...
  10. R

    Class to move about 20 pictures

    Hi MajP, Thanks again for your answer. I get the point of this. And this might be a better solution for what I want. But I'm just wondering if I'm doing it the right way... I have about 15 images that I would like an Admin (the person who can make the floorplan) to put on a form. These images...
  11. R

    Class to move about 20 pictures

    Hi MajP, Thanks again for your reply. But in this case I have to decalre 50 private mi_ objects and have to initialize those 50 objects. This works fine but why does this code not work: Option Compare Database Option Explicit Private mi As New moveableimage Private Sub Form_Load() Dim...
  12. R

    Class to move about 20 pictures

    Good Morning MajP, Thanks for your reply. I was thinking to change the 3 events (OnMouseDown, OnMouseMove and OnMouseUp) to work with a class. Me.Controls(strControlName).OnMouseDown = "=ctlMouseDown(" & Me.Controls(strControlName).Name & ", X, Y)" Me.Controls(strControlName).OnMouseMove =...
  13. R

    Class to move about 20 pictures

    Hello, I'm building a kind of floor plan. For this I placed 50 image objects on a form. I am able to display certain images (for example a table for 4 persons or a table for 8 persons) on a selected image object. What I want is that these image objects can be moved with MouseDown/MouseMove...
  14. R

    Multiple dates in report

    Thanks for your explanation. I understand it would have been better to put the dates in a separate table. However, I did not design it. I was only asked to create a calendar that will show all the events of that month. So even if the option date of the event falls in the selected month. And that...
  15. R

    Multiple dates in report

    Thanx thanx thanx!!! I had indeed made a table with all occurring days (1 to 31). This table is "leading" and ensures that all days are shown in the report. What I have not worked with before is a UNION query. But with the example you have given me it should certainly work! Top! Super! I will...
  16. R

    Multiple dates in report

    Hey, I have a problem that I cannot resolve. Been on it for a few days now. What I want is a report with all the days of the month. For example in April, day 1 to day 30. All these days must be included on the report. I also have a table (tblEvents) with events in it. An event has a date. In...
Top Bottom