Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. AzizKamal

    MS Word: Count Words for a Specific Portion of the Document

    Thank you so much Skip. Your code now worked perfectly on my document as well. I agree that your code is more intuitive. Usually Table of Contents and Appendices are in different sections, and they are first and last sections. The good aspect of your code is that it does not require making any...
  2. AzizKamal

    MS Word: Count Words for a Specific Portion of the Document

    Thanks Skip. In my MS Word file, Cover Page and Table of Contents are in Section 1. The content from Introduction to Conclusion as well as Appendices are in Section 2. I created Section 3 after Conclusion to move Appendices in Section 3. After this setup, when I executed your code, I received...
  3. AzizKamal

    MS Word: Count Words for a Specific Portion of the Document

    In an MS Word file, I need to count the number of words in a report from Introduction to Conclusion. The report also has some content before Introduction such as the cover page and Table of Contents, and it also has some content after Conclusion such as Appendices. The report has around 100...
  4. AzizKamal

    style overriding in MS Word

    I read another article that explains the general rule related to it: If more than half the text in the paragraph has been applied bold, italics, underline or other types of direct formatting, this formatting is overridden when you apply a style, otherwise the direct formatting is preserved...
  5. AzizKamal

    style overriding in MS Word

    Thanks MakeItSo If you created a custom style MyFirstStyle as in my example, italics would remain in the first example, but not in the second example. Try this: 1. Open a blank Word document 2. Type =rand(1,5) and press Enter. You will get the following paragraph: Video provides a powerful...
  6. AzizKamal

    style overriding in MS Word

    Thanks MakeItSo I think there is something more to it. I read in a web page: If you apply a style to a paragraph, and less than half the text in the paragraph has direct formatting, then Word retains the direct formatting. If you apply a style to a paragraph, and more than half the text in the...
  7. AzizKamal

    style overriding in MS Word

    I created a new file testone.docx in Microsoft Word 2013. I typed =rand(1,5) and pressed enter to generate a random paragraph of five sentences. Then I clicked Ctrl+A, selected Times New Roman, 12 points. In the paragraph, I selected one sentence and made it Italic. Now the total words in the...
  8. AzizKamal

    linking records based on two table fields

    Finally succeeded in accomplishing it as follows. I just used Database Expert and Select Expert. Selected Tables JrnlHdr JrnlHdr_1 JrnlRow JrnlRow_1 Links JrnlRow.PostOrder --> JrnlHdr.PostOrder (Left Outer Join) JrnlRow_1.PostOrder --> JrnlHdr_1.PostOrder (Left Outer Join) JrnlRow.PostOrder...
  9. AzizKamal

    linking records based on two table fields

    Thanks lbass. I created another formula POAmt and entered the following: If {JrnlRow.LinktoAnotherTrx}=0 then {JrnlRow.Amount} else {JrnlRow_1.Amount} Dragged POAmt in the detail section. Also copied and pasted Group # 1 Name in detail section so that I could view the PostOrder as well. When I...
  10. AzizKamal

    linking records based on two table fields

    Thanks Ian. I am also thinking to use subreport to get the required data. With the @PO formula suggested by lbass, at least I have got all 4 post orders correctly in GH1 (264, 265, 266, 267). I will place a subreport in Group Footer # 1 and enter @PO in the Field(s) to link to. I will print all...
  11. AzizKamal

    linking records based on two table fields

    Thanks lbass. I selected three tables in Database Expert; JrnlHdr, JrnlRow, and JnrlRow_1 (Alias). Clicked Clear Links to remove all the links. Created a link JrnlHdr.PostOrder --> JrnlRow.PostOrder (Join Type: Inner Join) Created a link JrnlRow.LinkToAnotherTrx --> JrnlRow_1.PostOrder (Join...
  12. AzizKamal

    linking records based on two table fields

    Thanks lbass and Ian. @lbass The Reference field is not available in the JrnlRow table. It is only available in the JrnlHdr table (JrnlHdr.Reference). Peachtree/Sage assigns PostOrder to every transaction. However, this number is not visible on the front-end screens. Users keep track of the...
  13. AzizKamal

    linking records based on two table fields

    I am developing a report in crystal reports 2008. The report extracts data from two peachtree/sage tables; JrnlHdr and JrnlRow. The tables JrnlHdr and JrnlRow are linked by a field called PostOrder. One PostOrder value in JrnlHdr can have multiple entries in JrnlRow table. I have to print all...
  14. AzizKamal

    using custom domain in office 365

    Thanks strongm. It means that I can create up to 300 email addresses of my domain on office 365 (for the mentioned plan) even if my current host allows only 100 email addresses. Right?. Furthermore, I will have to migrate all 100 emails to office 365. I cannot do say 75 email addresses on...
  15. AzizKamal

    deploy asp.net application with crystal reports on server

    The following solution finally worked for me. I added the following lines in web.config file. It successfully opened the crystal report viewer: <configSections> <sectionGroup name="businessObjects"> <sectionGroup name="crystalReports"> <section...
  16. AzizKamal

    deploy asp.net application with crystal reports on server

    I installed 64-bit SAP crystal reports runtime engine for .NET Framework 4 on server side as well. On my development machine, I tested the connection to crystal reports using a manual connection so that I could see if it also works on server. The code for ConfigureCrystalReports is as follows...
  17. AzizKamal

    deploy asp.net application with crystal reports on server

    I have developed an ASP.NET web application in Visual Studio 2010 professional edition. When I was done developing the web forms, I right-clicked the project in Solution Explorer and selected Publish Website. It generated compiled files in a folder. I copied that files in the application folder...
  18. AzizKamal

    using custom domain in office 365

    I found the following link on office.com website: https://support.office.com/en-us/article/Add-users-and-domain-to-Office-365-6383f56d-3d09-4dcb-9b41-b5f5a5efd611 According to the above link: From this information, what I infer is when a custom domain is used in office 365, emails first go to...
  19. AzizKamal

    using custom domain in office 365

    I need to know about user restriction in office 365. I would explain my query through an example. Suppose an organization has its own domain (say myorg1.com) and hosting plan. The hosting plan allows the creation of 100 email addresses. After two years, the organization purchased office 365...
  20. AzizKamal

    center-align menu item text

    Thanks a lot. The following code generated the exact output on screen that I needed. <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Application Main Menu</title> <style type="text/css"> div#container ul.level1 li { text-align:center; list-style-type: none; }...

Part and Inventory Search

Back
Top