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
2
votes
0 answers

How to export R plots to multipage PDF with renderPlot() in Shiny?

I am forced to output multiple plots not in the static device. But I dynamically create variable number of plots in Shiny with renderPlot. I can successfully create separate pdf files for each device using the function pdf() within the renderPlot.…
Quagdu
  • 21
  • 1
2
votes
1 answer

Form within a form - VBA right click copy/paste multipage

I previously asked a question and received a response from T.M. that answered it perfectly! However, when I entered the code in a secondary form, I get the same error that I originally received in the main form. Below is the code that is placed in…
crick1988
  • 53
  • 5
2
votes
5 answers

Multi step/page form in PHP & CodeIgniter

I'm trying to build a multi step/page form in PHP and CodeIgniter and I was wondering if any of you could help me. How can I have a multi step form in CI that updates rather than inserts again when you return to the previous step with the back…
RS7
  • 2,341
  • 8
  • 34
  • 57
2
votes
2 answers

Detect Button Press Event on an Excel Sheet MultiPage Form (NOT a VBA MultiPage)

I am struggling to figure out how to detect a button press event on a MultiPage form that resides directly on an Excel sheet. In other words, the form is not generated using VBA, it is built directly on the sheet. I expect the syntax to be something…
MichaelA
  • 85
  • 9
2
votes
0 answers

Multi page support in Firepad or other editor

I'm working on creating an in-browser document editor. One of the requirements is to visually split long document into multiple A4 pages (on screen). Exactly the same way as MS Word or Google docs do. Came across Firepad and I cannot find anywhere…
2
votes
1 answer

Is BoundValue a valid property for a MultiPage or TabStrip control?

The VBA documentation suggests that BoundValue is a valid Control property for a MultiPage control, but doesn't mention whether it is valid for a TabStrip control. When I try to use Debug.Print Me.MultiPage1.BoundValue or Debug.Print…
ThunderFrame
  • 9,352
  • 2
  • 29
  • 60
2
votes
0 answers

Cannot convert Multipage Tiff image into text using tesseract

I am trying to convert multipage tiff file into text but it is not converting it into text. It gives this error. Can anyone resolve the issue and guide me what I am doing wrong. C:\Users\raintree\Desktop\Sample_Files>tesseract output.tif…
2
votes
3 answers

Creating a multi-page PHP form with sessions

I need to create a pretty extensive form with PHP/MySQL with a lot of conditional logic that ultimately ends with submission to the MySQL database. So basically the user makes their first choice with a radio button (has to be because they are…
Rob Bennet
  • 477
  • 1
  • 9
  • 21
2
votes
1 answer

WPF multipage printing for FixedDocument (Visual C# 2010)

I have a question about multipage FixedPage. I have a Grid created programmatically and the Grid exceeds one A4 page. Now I want to print the Grid in several FixedPage with print margin. But on my way, I create the Grid repeatedly and offset the…
Akira Chen
  • 69
  • 10
2
votes
1 answer

Excel VBA Userform Multipage and Frame (copy/paste)

I have a Userform Control Panel that I am making for a workbook. I have a page named #1, which is for the workbook sheet #1. I also have an 'Add sheet' button that copies the #1 page and creates a #2 page. The problem is that the code for the…
icebird76
  • 742
  • 3
  • 14
  • 36
2
votes
2 answers

enable user to start form the last saved page

I have a PHP form in 5 pages and I would like to give users the possibility of start filling the form from their last saved page. (data should be saved into DB per page and if for any reason a user could not finish all pages, he would be able to…
mOna
  • 2,341
  • 9
  • 36
  • 60
2
votes
1 answer

Jquery mobile change window.location.href to mobile.changePage

I have a short question to JQuery mobile I Have the following script and want to have a data transition=slide but it is not working with window.location.href. So i want to change it to $.mobile.changePage. But I don't get it. Here is the script; var…
user3791330
  • 33
  • 1
  • 3
2
votes
2 answers

Multipage TIFF image file created in .NET Framework has bigger size

I created windows service in c# (.net framework 4.0) for multipage TIFF files creation. Windows servis is monitorig directories and merges or divide single page Tiff files in directories to multipage TIFF files. Service is running on Windows 2012…
Panda
  • 51
  • 1
  • 6
2
votes
1 answer

Multipage tiff file size grows linearly

The following (simplified) C# code creates a multi page tiff file: using System.Windows.Media.Imaging; var tiffBitmapEncoder = new TiffBitmapEncoder(); using (var ms = new MemoryStream()) { tiffBitmapEncoder.Compression =…
k09
  • 23
  • 3
2
votes
2 answers

jquery mobile 1.4 page multipage onpagecreate management to avoid double triggers fires

Can someone clear out the usage of event handlers in multipage? Documentation is good but don't warn about the possible conflicts that may arise if you mix the things. For example, as a newbie I noticed that I get double fire triggering if I place…
sasha
  • 365
  • 1
  • 15