Search Result

Collapse
15 results in 0.0042 seconds.
Keywords
Members
Tags
word
  •  

  • Tyler Wiebe
    started a topic Integer to Word

    Integer to Word

    This is just something I created since I couldn't find anything to do it.

    It converts an integer (Example: 1495954485) to the word representation of that number (Example: one billion four hundred ninety five million nine hundred fifty four thousand four hundred eighty five).

    Code:
        public class Integer
        {
            #region Functions
    
            /// <summary>
            /// Returns
    ...
    See more | Go to post

  • Steve Carr
    started a topic Inserting a table in Word after another table

    Inserting a table in Word after another table

    I have added a bookmark to a Word template and successfully added a table to the document.

    However, I now want to add another table below the one I have just created.

    I used this code to locate the bookmark
    Code:
    Range oWordRange = _oDocument.Bookmarks.get_Item(ref oBookMark).Range;
    I thought that I could move the range down a line by using this code.
    Code:
    _oWordRange.InsertParagraph();
    ...
    See more | Go to post
    Last edited by Meetee; May 26 '11, 10:59 AM. Reason: code tags added

  • Is it possible to create shapes in a Word document using C#?

    I'm attempting to create shapes on a Microsoft Office Word document to model the layout of tables in a room. I've found a nice article (http://support.microsoft.com/kb/316384) that demonstrates how to create tables and text, but it doesn't mention anything about shapes. Is this possible or am I just dreaming?
    See more | Go to post

  • How to change the color of a button when clicked?

    Hi I am new to the forum. I have created a form in Word 2007. I have implemented a radio button on the form. I want to add custom code so that every time the button is clicked, the color of the button changes. For example, I was thinking along the lines of a code that is similar to a snippet that I found on the web:

    Code:
    Private Sub OptionButton1_Click()
    Option Explicit
    Dim index As Integer
    Dim indicator(5) As ColorConstants
    ...
    See more | Go to post
    Last edited by Niheel; Mar 3 '11, 12:47 PM. Reason: please use code tags when posting code, thanks ;)

  • Converting HTML file into word document in C#

    That is how to extract the word content in the html file and write it into a word file, is there a built in command where you can filter out all the code part, thanks
    See more | Go to post

  • How can I add the Datacontrol in my VBA macro app?

    I'm writting a program in VBA, to add some advanced Macros to a word document, and I need to read and manipulate some data from an Access database. So I created a form but I can't find the Datacontrol, I found the Datalist, the DBList, the Datalist, but not the Datacontrol. Even when I'm writing code the Database and Recordset types are not recognoised when I'm defining variables. Please help...
    See more | Go to post

  • luftikus143
    started a topic How to count & rank words from PDF files?
    in PHP

    How to count & rank words from PDF files?

    Hi there,

    looked around quite a bit, but haven't really found a nice solution how to read PDF (and eventually Word) documents, in order to provide keywords for a Portal search engine, and link back to the document.

    Can anyone give me a hint for a usable script? Thanks a lot!
    See more | Go to post

  • Access to Word mail merge - is the following possible....

    Basically, I know how to create a normal mail merge already but now I am planning to code it in a different way. I was wondering if anyone knows how to do this/ has done this themselves.

    I want the user to click a macro in my database (As usual), then the coding will tell Access where to save the file. The user will be asked if they wish to use their template or a blank document (or there could be seperate macros for the two options)....
    See more | Go to post

  • This should get the first letter of every word in a string?

    The below code is to make a sentence upper case, and also get every first letter of every word in it, and put it in a different string to be called by the main function.
    When I try and call the getFirsts() function I get a breakpoint in a file in the compiler.

    Code:
    class charconverter
    {
    	private:
    	int count;
    	int last;
    	public:
    	string sentence;
    	string letters;
    ...
    See more | Go to post

  • Mail Merge Data Source Connection Error

    Hello All,

    I have scoured google for the past few days trying to find a fix for my mail merger problem, and am still unable to use an outside program to start the mail merge.

    The error I receive is
    "Error #1429 in execute (0): OLE IDispatch exception code 0 from Microsoft Word: Word was unable to open the data source..."

    We use Zangle student manager, and I created a mail merge which...
    See more | Go to post

  • alphanj
    started a topic How to customize the list of synonyms in Word

    How to customize the list of synonyms in Word

    Is there a way to have access to the list of synonyms in MS-Word?
    I have a very technical list of synonyms that I would like to use for perhaps 5000 words. I don't mind to
    eliminate the existing synonym lists totally and would like to be able to replace them with my own choices for this select group of words.
    See more | Go to post

  • Gooner85
    started a topic How to get Breaks-Collection of a Word Document?
    in .NET

    How to get Breaks-Collection of a Word Document?

    Can anybody tell me, how I can get a breaks-collection for a word document?
    See more | Go to post

  • hidust
    started a topic Need Programming help in MS Word

    Need Programming help in MS Word

    I have encountered a problem with some of one of my access databases due to a rollout of security patches and etc at my company. I have an access database that dumps data into a word template. The template contains instructions for filling out the rest of the needed information. I have a button on the word document with caption that says "remove instructions" at that point, I have word try and copy all of the text out of the document with...
    See more | Go to post

  • esperanto234
    started a topic From Listbox to Word

    From Listbox to Word

    Hi, Im using alistbox to insert names in a word document, im' using the following code but it only inserts the first name.


    Code:
    Dim strList1 As String
    strList1 = PODERES.ListBox 1.List(PODERES. ListBox1.ListIn dex)
    ActiveDocument. Bookmarks("p91" ).Range.Text = strList1


    My question is, how can i do to insert ALL items in the listbox in word, the thing is i need them to be...
    See more | Go to post

  • max2008mmm
    started a topic Unable to preview Office 2007 clip art

    Unable to preview Office 2007 clip art

    Our school is using Office 2007 on all computers, with Windows XP Pro SP3. When we try to search for clip art, using the Clip Art pane, it only displays the thumbnails for the local collections (be it already installed with Office or customized My Collections), but it doesn't display any of the thumbnails for the Web Collections. I have searched online for nearly an hour to discover a solution to this problem, but the answers I've found only come...
    See more | Go to post
Working...