Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Discussions in microsoft.public.word.programming - www.microsoft.com/communities/newsgroups... | Site profile

Site profile page for http://www.microsoft.com/communities/newsgroups.... This report page has aggregated and summarized the online discussions from the Message Board located at http://www.microsoft.com/communities/newsgroups.... This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional site profile information for http://www.microsoft.com/communities/newsgroups... is also shown in the following divisions:

1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a site's popularity and/or exact posting volumes at any given reporting period.

Title: Discussions in microsoft.public.word.programming - http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.word.programming Discussions in microsoft.public.word.programming
Url: http://www.microsoft.com/communities/newsgroups...
Users activity: 2 post per thread
site activity: 3 active threads during last week
Site rank: 46,133 (go to rank page)
Domain info for: microsoft.com
 

Posting activity table on Discussions in microsoft.public.word.programming:

  Week Month 3 Months
Threads: 3 19 74
Post: 12 35 131
 

Authority Badge:

Discussions in microsoft.public.word.programming | Forum Authority Badge

Discussions in microsoft.public.word.programming posting activity graph:

Posts by:  day  week  month 
 

http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.word.programming Alexa graph:

Top authors on Discussions in microsoft.public.word.programming during last week:

Name
Posts
Robert Flanagan
4
user's latest post:
There has to be a faster way in...
Published (2010-01-03 13:22:00)
  Tony, thanks for the followup message. I had missed the sentence on Word repeating the count. I had noticed at one time that Word was exceedingly slow and at other times fast on what appears to be the same action, specifying the paragraph. I could not find a cause and simply re-writing the macro got it back to running. I'll use one of the approaches in this topic to improve the code's speed. Bob "Tony...
Nit_Wit_400
2
user's latest post:
Copy whole table into one cell...
Published (2009-12-29 08:07:00)
  Office Excel 2003 on Windows XP I'm trying to create a report-maker with excel... ugh! Anyways, there is a template that users are filling out saying whether something is defected or not... that's not important, the important part is, that I'm having VBA go though the table (using a button after it is filled out) and deleting the rows that aren't defected... in other words, if there are blank cells in column C...
Tony Jollans
2
user's latest post:
There has to be a faster way in...
Published (2010-01-03 12:46:00)
  > Graham and Tony, I suspect both approaches will take just as much time as > they involve testing each paragraph for a property. You are making a false assumption about what is taking the time. I did explain this in my post. Whilst it may not be the best possible, I am sure you will find my approach considerably faster than your original one. I did also say the best approach depends on many factors. Using Find, as...
Kevin
1
user's latest post:
good reference for Word...
Published (2009-12-28 16:42:00)
 
Doug Robbins - Word MVP
1
user's latest post:
good reference for Word...
Published (2009-12-28 17:49:00)
  See: http://visualbasic.about.com/od/learnvbnet/a/LVBE_L1.htm
Graham Mayor
1
user's latest post:
There has to be a faster way in...
Published (2010-01-03 07:57:00)
  Try Dim oPara As Paragraph For Each oPara In ActiveDocument.Paragraphs If oPara.Style = "Heading 2" Then With oPara.Range 'Do stuff End With End If Next oPara
Jay Freedman
1
user's latest post:
There has to be a faster way in...
Published (2010-01-03 11:42:00)
  If the number of Heading 2 paragraphs is only a small fraction of the total, it will probably be fastest to use the .Find member of a Range object to locate the next paragraph to work on. In this case it isn't necessary to work backward from the end of the document, as the Find operation isn't affected by changes in the Paragraphs collection. However, it is critical to collapse the Range object to its end and move it out...
 

Top 10 active forums on Discussions in microsoft.public.word.programming during last week:

microsoft.public.word.programming - 12 new posts microsoft.public.word.programming - forum profile
 

Top 10 forums on Discussions in microsoft.public.word.programming:

microsoft.public.word.programming - 1,292 posts microsoft.public.word.programming - forum profile

Latest active threads on Discussions in microsoft.public.word.programming:

Discussions in microsoft.public.word.programming
Started 18 hours, 17 minutes ago (2010-01-06 11:29:00)  by Doug Robbins - Word MVP
To use Late Binding, you must create and set an object to the application that you want to use. You do not appear to have done that. See the article "Early vs. Late Binding" at: http://www.word.mvps.org/FAQs/InterDev/EarlyvsLate Binding.htm
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (2 posts) Thread info: Creating templates from VB.NET in microsoft.public.word.programming Size: 602 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Creating templates from VB.NET in microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
Discussions in microsoft.public.word.programming
Started 3 days, 21 hours ago (2010-01-03 07:57:00)  by Graham Mayor
Try Dim oPara As Paragraph For Each oPara In ActiveDocument.Paragraphs If oPara.Style = "Heading 2" Then With oPara.Range 'Do stuff End With End If Next oPara
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (8 posts) Thread info: There has to be a faster way in microsoft.public.word.programming Size: 499 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: There has to be a faster way in microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
Discussions in microsoft.public.word.programming
Started 1 week, 1 day ago (2009-12-29 08:07:00)  by Nit_Wit_400
VERY SORRY!! Posted this to the wrong group! .
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (2 posts) Thread info: Copy whole table into one cell in microsoft.public.word.programming Size: 399 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Copy whole table into one cell in microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
Discussions in microsoft.public.word.programming
Started 1 week, 2 days ago (2009-12-28 17:49:00)  by Doug Robbins - Word MVP
See: http://visualbasic.about.com/od/learnvbnet/a/LVBE_ L1.htm
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (2 posts) Thread info: good reference for Word progrmming with Visual Studio/VB.net? in
microsoft.public.word.programming Size: 385 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: good reference for Word progrmming with Visual Studio/VB.net? in
microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
Discussions in microsoft.public.word.programming
Started 2 weeks, 1 day ago (2009-12-23 00:57:00)  by Graham Mayor
If text is selected, the action of the search function is to find from within that selection. The double click method is merely a shortcut to inserting a word into the Find window. See your other post.
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (2 posts) Thread info: Instantly use selected text for find and replace dialog? in
microsoft.public.word.programming Size: 428 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Instantly use selected text for find and replace dialog? in
microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
Discussions in microsoft.public.word.programming
Started 2 weeks, 1 day ago (2009-12-23 00:57:00)  by Graham Mayor
The macro recorder is limited in its abilities. To insert text from the clipboard you would have to manually configure the macro to use text from the clipboard e.g. Dim sFindText As String Dim sReplaceText As String Dim oClip As DataObject Set oClip = New DataObject oClip.GetFromClipboard ...
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (2 posts) Thread info: Paste into find dialog using macros. in microsoft.public.word.programming Size: 1,432 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Paste into find dialog using macros. in microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
Discussions in microsoft.public.word.programming
Started 2 weeks, 2 days ago (2009-12-21 11:25:00)  by Doug Robbins - Word MVP
Use: Dim oshp As Shape Set oshp = ActiveDocument.Shapes.AddCanvas(0, 0, 100, 100) oshp.WrapFormat.Type = wdWrapInline
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (2 posts) Thread info: Inline canvas from shape in microsoft.public.word.programming Size: 360 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Inline canvas from shape in microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
Discussions in microsoft.public.word.programming
Started 2 weeks, 5 days ago (2009-12-18 23:27:00)  by Graham Mayor
You can do this with Word 2007, provided you have the PDF plug-in installed with the following macro. Earlier Word versions do not have the ability to save to PDF and require a third party application to do so. If your third party application is not Acrobat, you may have to acknowledge a confirmation prompt for each ...
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (5 posts) Thread info: Save each file in a folder as a filtered HTML and also as a PDF in
microsoft.public.word.programming Size: 3,790 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Save each file in a folder as a filtered HTML and also as a PDF in
microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
 

Hot threads for last week on Discussions in microsoft.public.word.programming:

microsoft.public.word.programming
Started 3 days, 21 hours ago (2010-01-03 07:57:00)  by Graham Mayor
Try Dim oPara As Paragraph For Each oPara In ActiveDocument.Paragraphs If oPara.Style = "Heading 2" Then With oPara.Range 'Do stuff End With End If Next oPara
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (8 posts) Thread info: There has to be a faster way in microsoft.public.word.programming Size: 499 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: There has to be a faster way in microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
microsoft.public.word.programming
Started 1 week, 1 day ago (2009-12-29 08:07:00)  by Nit_Wit_400
VERY SORRY!! Posted this to the wrong group! .
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (2 posts) Thread info: Copy whole table into one cell in microsoft.public.word.programming Size: 399 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Copy whole table into one cell in microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"
microsoft.public.word.programming
Started 18 hours, 17 minutes ago (2010-01-06 11:29:00)  by Doug Robbins - Word MVP
To use Late Binding, you must create and set an object to the application that you want to use. You do not appear to have done that. See the article "Early vs. Late Binding" at: http://www.word.mvps.org/FAQs/InterDev/EarlyvsLate Binding.htm
Forum:  microsoft.public.word.programming microsoft.public.word.programming - forum profile
Thread:  Show this thread (2 posts) Thread info: Creating templates from VB.NET in microsoft.public.word.programming Size: 602 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Creating templates from VB.NET in microsoft.public.word.programming :: microsoft.public.word.programming :: Discussions in microsoft.public.word.programming"