How to link sub-forms inside a form in Access? - forms

I would like to create a sub-form in which there are links to another table inside the fields of a column. This is pretty much as it is in the Northwind Database sample of Access, in where in the 'Home' form there are two tables and, in the product table, there are links to the product details.
My question is how to create those links first, and how can I make my forms to 'pop-up' in smaller windows as there is in this example?
I will appreciate a lot the help, thank you very much in advance.
Jim.
Edit with images:
The main page of the Northwind database looks like this. My concern is about the links on 'Products', that their show information of the selected product. When you click on the desired product, it opens a form with the information about the product but in a new window, like this:
Here there is the form when you click on the name. I'm looking into the tables and subforms of the database but I can't find clues about how was this done. Meanwhile I'm reading various tutorials of Access but for the moment there's no success on that. Hope it's clear what I'm trying to show. Anyone has any clue about how can this be done? Thank you very much.
Edit 2: I've solved the pop-up window for the forms, so I can manage to do this. Now I'm struggling on finding how to link those fields of a table with other forms. The hyperlink doesn't seem to allow me to do it. Any clues? Thank you

Related

how do you make the product attributes on view pages into drop downs

i am using magento 2.2. i want to make my configurable product attributes, like Product size, into dropdowns.
how do i do that. i noticed its possible from this picture on another forum
Thanks for the question...
Yes, it's possible.
To do that, please visit on following screenshots:-
1-
But Screenshot 1 is not enough due to the bug in Magento2, so please visit next screenshots to complete it.
2- In the table eav_attribute_option_swatch
3-
Reference
I've also tested by doing above steps & I achieve the result & hope you too.

Backpack crud field that displays an included filtered table

I need to make a new type of field, let's call it included_table. If in Model employees I have a field of type select2 from model Departments, in Departments, I want to have a field of type included_table which displays the table of the employees from that department, in the same way as the crud does.
Is there an easy way of doing this? Or what would be the best way to start?
Thank you.
I don't think there's an easy way to do it. You'd have to code it yourself. You can start from the table field type, put it won't get you very far.
That's because it's a lot more complicated that it looks at first glance. Keep in mind that Backpack create/update forms work with refresh; if you put a table inside one of them, the expected behaviour might be to only "save" the information when you click the final "save" button; but you probably can't do that for the nested entity, because you'd be saving it with AJAX. Plus, you need to build that entire AJAX functionality yourself, including validation. It's not at all more difficult than using plain old Laravel - it's exactly the same. But Backpack won't help very much in this regard.
That being said, you'd probably be better off just putting a button in the list view for each Department, to go edit its employees. That's a lot easier to do, if you follow the nested resources tutorial.
Hope it helps.

How to display and edit individual records on a form in Access?

I have built a table in Access that is populated by the end user with a form. Next, I would like the end user to retrieve a record and be able to edit the fields in form view.
I see stackoverflow user Hoops asked a similar question, excerpt:
"What I want to do is have the user select a record from the combo
box, which then populates the textboxes (I've already managed to do
this)."
His "already managed to do this" is what I need to know.
I tried using a combo box, but it did not populate the text boxes, and when I selected multiple columns to be displayed, the fields could not be edited.
I tried using a parameter query to retrieve a search record, but I could not get results to display in the form.
While I know I am supposed to ask specific answerable questions, what I really need to know is the method or strategy I should be using to retrieve a record and be able to edit the fields in form view. If I know the best method, I can usually figure out the tactical.
Thanks for any ideas.
Melissa
I suggest a split view form in Access. More info can be found here: http://office.microsoft.com/en-us/access-help/create-a-split-form-HA010075994.aspx

oracle forms it shows only prompts not shows item fields in the canvas

I add sub class information to blocks , items and buttons. When i ran the form in application it shows only prompts not shows item fields
can any one suggest what is happen here
Thank you
Little bit hard to say without more information but most likely the forms compiler is not able to find your object library. Please make sure that the object library is in the forms path.

Allowing the user to select a picture from a list of options in confluence survey macro

I would like to know how I can add pictures/image functionality to the confluence survey macro. I would like the user to select a picture from a list of pictures in response to a question. First I need to find out a way the wiki owner can upload pictures for the users to select one. Secondly allowing the user to select one picture. I am a beginner trying to learn confluence/wiki technology. It would be great if someone could help in this regard.
I don't have any experience with the survey macro. On the once occasion when I needed to have a survey-esque function on confluence I just used html and js.
On the subject of attaching images I do have experience though. If you go up to the Edit drop down you'll see a link to Attachments. There you can upload images which will be attached to that page.
You might want to look into whether the survey macro has the ability to work in conjunction with the image gallery macro.
Use pictures instead of words in the survey macro option list.
{survey:title=MyTitle|choices=!apple.png!,!orange.png!,!banana.png!|changeableVotes=true|showSummary=true|showTopSummary=true|showLast=true|visibleVoters=true}This is a survey{survey}
You can also have words and pictures.
{survey:title=MyTitle|choices=!apple.png! I like apples,!orange.png! I like oranges,!banana.png! I like bananas|changeableVotes=true|showSummary=true|showTopSummary=true|showLast=true|visibleVoters=true}This is a survey{survey}