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

I need to view a Multipage TIFF in a WPF application

I need to view a multipage tiff with WPF. I currently have the following:
todd
  • 31
  • 1
  • 3
3
votes
1 answer

Compressing Multi Frame Tiff

I'm currently generating multiple Images and the saving them to a multi frame tiff. Im using this code to save the tiff. System.Drawing.Imaging.Encoder encoder = System.Drawing.Imaging.Encoder.SaveFlag; ImageCodecInfo encoderInfo =…
JustinV
  • 123
  • 1
  • 6
3
votes
0 answers

Using OpenCV with libtiff

I am trying to work with libtiff and opencv together. I installed the opencv precompiled libraries and found that the libtiff library is part of the installation, however, I was not able to use any libtiff function (I am trying to read a multipage…
user2762182
  • 63
  • 2
  • 5
3
votes
1 answer

Reading a tiff file using libtiff in c++ : prevent warning printout

Reading a tiff file using libtiff in c++ : prevent warning printout When reading a tiff file I get a warning message to the console every time an unknown tag is read by the function TIFFReadDirectory(). From an answer provided by the user Borovsky…
user2762182
  • 63
  • 2
  • 5
3
votes
2 answers

How to dynamically get the value of current multipage tab value?

Community, I am currently hiding my tabs on my userform multipage except for the current tab. The user can click buttons to switch back and forth between pages. Some buttons share sub routines. When a user clicks a button, it hides the previous…
CBC_NS
  • 1,961
  • 4
  • 27
  • 47
3
votes
0 answers

WPF: Printing DataGrid in multiple pages

I have DataGrid that needs to be printed in multiple pages both horizontally and vertically. Based on exhaustive searching the closest solution i have is the one found @http://www.codeproject.com/Articles/138233/Custom-Data-Grid-Document-Paginator.…
user527614
  • 465
  • 5
  • 19
3
votes
2 answers

Using VBA to add tabs to a multipage useform in excel

I need to find the VBA code to add x number of tabs to a multipage in a userform in excel. I can manually add tabs if I use the visual basic editor, but I want to be able to dynamically add/delete tabs using VBA during runtime. Thanks
Ehudz
  • 613
  • 10
  • 22
  • 33
2
votes
1 answer

convert pbm -> tiff -> tiffcp -> tiff2pdf . Getting 5mm page

I usually scan multi-page files, and I'm using an easy way. for f in ???\.pbm; do convert -compress Group4 $f ${f%pbm}tiff; done; tiffcp *\.tiff o.tiff; tiff2pdf o.tiff -o o.pdf But this way I can get good TIFF and really bad PDF. Here are…
ProdoElmit
  • 1,067
  • 9
  • 22
2
votes
1 answer

Multi-page Multi-Model Form in Rails

I'm trying to create a multi-page form that uses multiple models. I have an applicant and this applicant has more than one address (one to many relationship). I would like the first page to contain information about the applicant, and then the page…
user1069624
  • 561
  • 2
  • 9
  • 24
2
votes
1 answer

How to add html content to each page of jsPDF?

I am trying to convert my html page to pdf using jsPDF. Essentially i am using the html method of jsPDF, giving it a source, and options and then in the callback function i would save the document. But i am having a problem when it comes to dividing…
Prakash R
  • 23
  • 4
2
votes
0 answers

Multipage form to show next div class after hitting submit in Javascript?

I am trying to create a flight reservation program that asks users to input their details. When they click 'Reserve flight', they are then shown a receipt on which their details are printed. However, this is my javascript code that is supposed to…
idknmre
  • 19
  • 5
2
votes
2 answers

One color change code for all ToggleButtons in a Userforms' Multipage

I have around 100 ToggleButtons. I would like: If .value = true then togglebuttons.BackColor = vbRed Else = vbGreen I can write the code for every one, but is there a way to create a group or class so that color change code would be…
2
votes
0 answers

Create multiplepages pdf with imagick

I need create PDF with Imagick and I need multipage file. How to add page? I have to use Imagick - not TCPDF, FPDF etc. format of the page is SRA3 - 45 cm x 32 cm newImage(45*300/2.54,32*300/2.54,…
Mar Pot
  • 21
  • 1
2
votes
1 answer

How do I permanently add a new multipage tab and name it?

I'm attempting to add a new tab to a multipage userform however I want the change to be permanent and still be there the next time I run the program. I found a way to add in a tab but that only worked for that runtime. Then I found the code that…
R. Patrick-White
  • 83
  • 1
  • 2
  • 12
2
votes
1 answer

Application.EnableEvents = False but textbox_Enter sub still firing in multipage userform VBA

I have a multipage userbox called MultiPage1 (as per default). This comprises 6 pages, all of which have hundreds of textboxes on them, and they all work perfectly... I have one problem. When Multipage.Value = 3 it seems to launch a textbox_Enter…
Philip Day
  • 69
  • 7