Display bullet points correctly - vba

in my word template, I want to display bullets in a part of the document when displaying data from a record source, the problem I'm facing is when I put the bullet point in front of my block and when the data is being displayed, there is just one bullet point in the first line but I want to display a bullet point in front of each line in the part of my document, I've tried so many times with Selection.Range.ListFormat.ApplyBulletDefault in VBA but I did not succeed.
Can you help me please ?
Thank you so much !

Related

How to put a table at the bottom of a RDLC report page?

I have been pulling my hair for a few days on this problem. I want to keep a table at the bottom of the first report page, NO MATTER how much other content there is (less than one page or more than one page). In other words, I want the table to behave just like a footer which is set to be printed only on the first page. However, as you may all know already, tables can't be put into a page footer in RDLC report (what a pity!).
I know I can put the rest content in a rectangle and consume the white space if there is any. However, this only works when my report is less than one-page. My table will be pushed to the next page if the content length in the rectangle exceeds the rectangle length.
Btw, I'm using VS 2012. Any help would be much appreciated!

how to Delete blank page form pdf using VB.NET?

I am generating the PDF in that, i have merged first RDLC(Report) and second cristal report Total 2 pages are in my report,but after generating PDF it is showing three page, last page is blank so how to Delete blank page Using VB.NET... please help me out....
The reason for the third page is probably an element of the report overflowing invisibly somewhere. Try making it slightly less wide for starters and see if that helps.

How to adjust Report Field Height at run time

I'd like to adjust Report field height at run time. Please see my report design and review with data below
In the 2nd image, at the 3rd and 4th row of "Wine" column, if the
data length is enough for a line, I'd like to adjust its height into
a line (And also bottom line object be followed by it). Otherwise, let it be two lines. Please share me which
property I'd set.
PS: In page header, I use box object. But in Details section, I just use line object because in report footer, I need to show Total amount. If I use a box in these three sections, there is the box is expanded the whole page without having detail rows at the last page. I'm not a report expert. If I'm wrong in something, pls feel free to tell me. Thank you.
Crystal will never shorten boxes, lines, or fields, so you need to make them small and mark them Can Grow. Here's a way to do that and make the line draw below the field, even if the field does grow.
Mark the text field Can Grow.
Shrink the text field down to the minimum, one-line size you want.
Right-click the detail section and select Add Section Below.
Move the horizontal line at the bottom of the first detail section to the top of the new detail section, and extend the vertical lines down to it.
Shrink both the detail sections tight to their contents.

How to get the selected text from webview?

If I holds the finger on a word displayed in web view,
highlight the word with corner anchors to allow
me to stretch the selection across a span of
words. Once a block of text is
highlighted, it gives me the option to copy text.
Can i get that highlighted text without coping it?
Thanks in advance
This one worked for me: Cocobuilder archive
In short, you need:
[[myWebView selectedDOMRange] toString];

Dynamic Data in an RDLC Report Footer across Multiple Pages

I created an RDLC report (based on a stored procedure) that contains lists. I need to display data from one of those lists in the report footer across every page. However this data only shows in a list on the first page, so that is the only page on which it shows in the footer also. I’ve researched this but haven’t found much information. Does anyone have a solution for this?
Something you can try, don't know for sure if it will work. Create a formula that returns the data you want to display, then put the formula field on a text area in the footer.
I ended up placing a textbox in the second page area, setting the text color to white and sending it to the back. If I hid the textbox (or table - I tried that too), the footer object could not reference it. So, setting the text color to white and placing it behind another object worked. It seems like this is a kludgy way to do a simple report operation but is apparently necessary.