Questions tagged [multipage]

A container for a collection of Page objects. It is a control in VBA to facilitate categorising a large volume of information.

Microsoft support page a container for a collection of Page objects. It is a control in VBA to facilitate categorizing a large volume of information.

282 questions
0
votes
0 answers

How to move a checkbox from page1 to page 2 of a multipage1 in Word-VBA Userform?

I'm working on a searchfilter on 70+ checkbox choices. On each page from a multipage I've generated 44 checkboxes from an excel sheet. I'm almost done with the searchfilter. My only issue is that I can't find a way to move a checkbox on page2 to…
Vergil
  • 1
  • 2
0
votes
1 answer

Rails Simple Form multi-page single model

I am working on a model with a form (I'm using Simple Form) that has many inputs but is not nested and I'm only working with one model. I'm looking for the best way to display one question or a couple questions at a time and then once they have…
0
votes
0 answers

Performing Userform Initialize with MultiPage

Is there a way to run a userform initialize with multipage that pertains to each page separately? I have a MultiPage Userform with Checkboxes, ComboBoxes, and TextBoxes on each sheet with different control sources for each. Instead of programming…
M. Albert
  • 5
  • 1
  • 6
0
votes
0 answers

Cognos multipage bursting report

In Cognos I have three different SQL queries having data for 1 different month in one report. I want to link 1 burst query with all the other 3 SQL queries. Any suggestions on how to accomplish this?
Ila
  • 9
  • 2
0
votes
0 answers

Issue facing in combining BASE64 image data for multipage tiff image

I am stuck with an issue where I need to take out the Base64 content of multi page tiff image file. This image file is uploaded on a third part system from where I am able to access it. The image here is having 2 pages and I am accessing it page…
0
votes
1 answer

svg convert to canvas - can't generate multi pages pdf

I have 12 graphs and I want to generate pdf with 2 pages each page has 6 graphs. However, when I convert svg to canvas, then the jspdf can only see part of both sub-dives. $('#downloadx2').click(function() { var svgElements =…
Hana90
  • 943
  • 5
  • 17
  • 37
0
votes
1 answer

Hopscotch multipage tour does not work

I am trying to implement hopscotch tour for my application which is in react.Multipage tour in hopscotch does not work properly.The documentation says that it works with sessionStorage and cookies and may be that is creating a problem.If these are…
0
votes
0 answers

Multiple page scraping, trouble with output

I am unable to scrape multiple pages, but I am able to do it for single page. from urllib.request import urlopen from bs4 import BeautifulSoup file = "pyp.csv" f = open(file, "w") Headers = "product, description, img_url, price,…
0
votes
1 answer

VBA: userform multipage template

I'm making a Userform that would allow the user to changes the bounds on several charts at once. I figured out how everything should look on the first multipage, and now I'm wondering if there's any way I could add 11 pages at once to look just like…
L Kadue
  • 81
  • 1
  • 10
0
votes
2 answers

VBA - Hide pages (tabs) in a frame based on Combobox selection

I've got VBA code written to make a hidden tab appear based on a combo box selection. There are seven options in the combo box that each corresponds to seven hidden tabs in the frame. Private Sub CBO_EntryType_Change() Dim iPage As Integer If…
0
votes
1 answer

React App in multipages

I try to do a react app and i want to do a second page when i click on a link but when i click the component appear just under the link and not in an other page. I dont understand why ? render() { return (
alpheonix
  • 269
  • 2
  • 5
  • 12
0
votes
0 answers

Multipage plot in shiny app

I am trying to plot multiple plots on different pages in my shiny app. Here is a reproducible example: My module code is : library(ggplot2) dfunc <- function(data, page_number) { p <- ggplot(data = data, aes(x = data[, 3], y = data[, 2])) + …
Sana Ali
  • 165
  • 1
  • 11
0
votes
0 answers

Reuse angularJS controller from Homepage in other pages in a multipage application

I'm new to AngularJS. In our project, we're forced to create our web app(multi-pages) in angularJS, though we know AngularJS is only for SPA. At the moment I've a homepage, which is created in AngularJS and all other connected pages are in…
Sunny
  • 902
  • 3
  • 18
  • 41
0
votes
0 answers

access field from other page UWP C#

I have many pages in my weather app, but I want to get a cityName entered in a TextBlock in the first page and to use it value in the second page. Here are fragments of my code. Basically I write city name, then push a button and a new page must…
0
votes
2 answers

How to change checkbox label dynamically in Gravity form

I have created a multi page form using gravity form WordPress plugin. I have created a check box and need to show different label when checked and unchecked the checkbox. I have done that using JQuery for single page form, but in multi page forms It…
ashanrupasinghe
  • 758
  • 1
  • 10
  • 22