<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'I need help from you guyz...please,help me.....' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'I need help from you guyz...please,help me.....' posted on the 'Beginner VB' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sun, 19 May 2013 00:13:19 -0700</pubDate>
    <lastBuildDate>Sun, 19 May 2013 00:13:19 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>I need help from you guyz...please,help me.....</title>
      <link>http://www.programmersheaven.com/mb/VB_Beginner/375174/375174/i-need-help-from-you-guyzpleasehelp-me/</link>
      <description>im a graduating computer science student and one of our requirements is to make thesis...our topic is text auto-copying to microsoft word...can anyone help me make it???i will be using VB6 and im new with VB6...so,as you see it is very difficult....please help me....thanks... &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VB_Beginner/375174/375174/i-need-help-from-you-guyzpleasehelp-me/</guid>
      <pubDate>Thu, 11 Sep 2008 23:34:24 -0700</pubDate>
      <category>Beginner VB</category>
    </item>
    <item>
      <title>Re: I need help from you guyz...please,help me.....</title>
      <link>http://www.programmersheaven.com/mb/VB_Beginner/375174/375333/re-i-need-help-from-you-guyzpleasehelp-me/#375333</link>
      <description>: im a graduating computer science student and one of our requirements &lt;br /&gt;
: is to make thesis...our topic is text auto-copying to microsoft &lt;br /&gt;
: word...can anyone help me make it???i will be using VB6 and im new &lt;br /&gt;
: with VB6...so,as you see it is very difficult....please help &lt;br /&gt;
: me....thanks... &lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
Here is an example from Microsoft's MSDN site:-&lt;br /&gt;
1.	Start a new Standard EXE project in Visual Basic. Form1 is created by default.&lt;br /&gt;
2.	On the Project menu, click References, and select "Microsoft Word 8.0 Object Library" (or "Microsoft Word 9.0 Object Library" if you are using Word 2000). &lt;br /&gt;
3.	Add a CommandButton to Form1.&lt;br /&gt;
4.	Add the following code to the Click event of the CommandButton: &lt;br /&gt;
5.	&lt;br /&gt;
6.	Dim oWordApp As Word.Application&lt;br /&gt;
7.	&lt;br /&gt;
8.	'Start a new instance of Microsoft Word&lt;br /&gt;
9.	Set oWordApp = New Word.Application&lt;br /&gt;
10.	&lt;br /&gt;
11.	With oWordApp&lt;br /&gt;
12.	&lt;br /&gt;
13.	   'Create a new document&lt;br /&gt;
14.	   .Documents.Add&lt;br /&gt;
15.	&lt;br /&gt;
16.	   'Add text to the document&lt;br /&gt;
17.	   .Selection.TypeText Text:="one"&lt;br /&gt;
18.	   .Selection.TypeParagraph&lt;br /&gt;
19.	   .Selection.TypeText Text:="two"&lt;br /&gt;
20.	   .Selection.TypeParagraph&lt;br /&gt;
21.	   .Selection.TypeText Text:="three"&lt;br /&gt;
22.	   'Save the document&lt;br /&gt;
23.	   .ActiveDocument.SaveAs FileName:="c:\Doc1.doc", _&lt;br /&gt;
24.	       FileFormat:=wdFormatDocument, LockComments:=False, _&lt;br /&gt;
25.	       Password:="", AddToRecentFiles:=True, WritePassword _&lt;br /&gt;
26.	       :="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:=False, _&lt;br /&gt;
27.	       SaveNativePictureFormat:=False, SaveFormsData:=False, _&lt;br /&gt;
28.	       SaveAsAOCELetter:= False&lt;br /&gt;
29.	&lt;br /&gt;
30.	End With&lt;br /&gt;
31.	&lt;br /&gt;
32.	'Quit Word&lt;br /&gt;
33.	oWordApp.Quit&lt;br /&gt;
34.	&lt;br /&gt;
35.	'Unload this form&lt;br /&gt;
36.	Unload Me &lt;br /&gt;
37.	Press F5 to run the program and click the CommandButton. When the program ends, examine the Word document ("C:\doc1.doc") it created. &lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VB_Beginner/375174/375333/re-i-need-help-from-you-guyzpleasehelp-me/#375333</guid>
      <pubDate>Mon, 15 Sep 2008 13:46:02 -0700</pubDate>
      <category>Beginner VB</category>
    </item>
    <item>
      <title>Re: I need help from you guyz...please,help me.....</title>
      <link>http://www.programmersheaven.com/mb/VB_Beginner/375174/375457/re-i-need-help-from-you-guyzpleasehelp-me/#375457</link>
      <description>thank you very much but i don't have Microsoft Word 8.0 Object Library" (or "Microsoft Word 9.0 Object Library" if you are using Word 2000). I only have Microsoft Word 11.0 Project Library...&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VB_Beginner/375174/375457/re-i-need-help-from-you-guyzpleasehelp-me/#375457</guid>
      <pubDate>Thu, 18 Sep 2008 00:17:33 -0700</pubDate>
      <category>Beginner VB</category>
    </item>
  </channel>
</rss>