Expand text while writing in adobe acrobat and PDFTK - pdf

I have forms where i put text from code with "PDFTK" and my text is only in text field - field and when i write bigger words or sentences some of it disappears or appears only in multilines but i need it in one line. I need one thing that when my word is bigger than my field to expand whole field and move text to the right to fit all words inside field, to accommodate big words.

Related

Text to table, create row (not column) at delimiter that is not paragraph mark

I want to convert text to table, that has formatting (numbered and bulleted list).
I tried replacing paragraph mark with other characters and it converts the text to table as I want it, but it messes up numbering and bulleted list and formatting (removes it).
I would like to make a table row (one column) that starts at custom delimiter or bookmark and ends when the delimiter reappears like this (delimiter in this case is Ł):
The easiest way is to remove the borders of all cells put them inside one cell then drag and drop the contents to other areas of your document.

format structure of a ms word document

I have converted a well structured pdf document into a rich text format.
By Structured document I mean the document has well formatted heading levels, bullets and numberings, and sections, and also has contents table.
After conversion from pdf, the rich text file appears almost exactly similar to the original pdf document, but the formatting data is not available in the document. Heading levels and numberings are not available in outline view of the ms word. the numberings seems to be a plain text typed one after another. they do not behave like a normal ms word numbering which increments automatically for every new line. Similarly for bullets and headings. they do not form a structure of sections.
for eg: when I select a bullet character, the bullet characters of the same group should be highlighted. instead only the bullet character which I select gets highlighted.
It is a document with 200+ pages. I need to apply styles and formatting supported by MS word by default. Kindly help in finding a way to do this.
Now, I used MS Office 2013 to convert the PDF into rich text and it worked fine. It retained almost all of the heading information and table structure. Even though I had to apply some manual formatting, it is by far a well formatted conversion I have used.

Create Word Search game in Visual Basic 2010

i want to create a Word Search game using Visual Basic? I've already started it by creating grids (10x10). However, I do not know how to properly insert the words that the user will search for.
Here's a look at what I did as well as the codes.10x10 grid
as you can I see, I created the grid using the Paint Event handler.
I have a text file containing all the words that the user will search. Using VB I open and read all the lines and put the words in an array (not seen in the picture).
I want the words to be inserted in the grid randomly. But I do not know how to?
Any help is much appreciated. Thank you!
The visual grid is a bit of a distraction at this stage. concentrate on getting a list of strings into an nxn two-dimensional string array. I would write a sub which, given a list of words and a dimension, returns a filled-in array (if possible).
A natural choice is a backtracking algorithm, which seeks to randomly place words into a partially filled array. For each new word, generate the collection of all valid locations and then randomly pick one of those locations. If there are no valid locations -- backtrack, removing the most recently placed word and placing it somewhere else. It might help to first sort the list of words to be placed in order of decreasing length, since it will be easier to place smaller words into a partially-filled in array than larger words. Placing the larger words when there are less constraints will thus lessen the amount of back-tracking needed.
When all of the words have been placed, fill in the rest of the array randomly.

SSRS BIDS Placeholder line select in expression

I have an SSRS report with a very large text box. When the report is rendered the data may or may not use up the entire size of the textbox. I cannot have the box expand so I have the checkbox unchecked that will allow it to expand. Instead i would like to print the remaining text in a separate placeholder.
I want to know if there is a way in an expression to select a specific number of rows of text in a text box.

Extract MS Word document chapters to SQL database records?

I have a 300+ page word document containing hundreds of "chapters" (as defined by heading formats) and currently indexed by word. Each chapter contains a medium amount of text (typically less than a page) and perhaps an associated graphic or two. I would like to split the document up into database records for use in an iPhone program - each chapter would be a record consisting of a title, id #, and content fields. I haven't decided yet if I would want the pictures to be a separate field (probably just containing a file name), or HTML or similar style links in the content text. In any case, the end result would be that I could display a searchable table of titles that the user could click on to pull up any given entry.
The difficulty I am having at the moment is getting from the word document to the database. How can I most easily split the document up into records by chapter, while keeping the image associations? I thought of inserting some unique character between each chapter, saving to text format, and then writing a script to parse the document into a database based on that character, but I'm not sure that I can handle the graphics in this scenario. Other options?
To answer my own question:
Given a fairly simply formatted word document
convert it to an Open Office XML document
write a python script to parse the document into a database using the xml.sax python module.
Images are inserted into the record as HTML, to be displayed using a web interface.