<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>OberonPlace.com Forums</title>
		<link>http://forum.oberonplace.com</link>
		<description>This forum is devoted to OberonPlace products, CorelDRAW, graphics, user community, and software development</description>
		<language>en</language>
		<lastBuildDate>Thu, 17 May 2012 14:13:19 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forum.oberonplace.com/images/misc/rss.jpg</url>
			<title>OberonPlace.com Forums</title>
			<link>http://forum.oberonplace.com</link>
		</image>
		<item>
			<title>Another little X6 toolbar toy - Multigon (Multitype-Polygon Generator)</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8202&amp;goto=newpost</link>
			<pubDate>Thu, 17 May 2012 14:04:12 GMT</pubDate>
			<description><![CDATA[If you are terrible at drawing flowers, like me, this one's for you! :) 
 
Image: http://i.imgur.com/gxVw7.png  
 
It's basically the star tool, just with instant node type changing, adjust the settings, then click the button to generate a shape in the middle of the page: 
 
Image:...]]></description>
			<content:encoded><![CDATA[<div>If you are terrible at drawing flowers, like me, this one's for you! :)<br />
<br />
<img src="http://i.imgur.com/gxVw7.png" border="0" alt="" /><br />
<br />
It's basically the star tool, just with instant node type changing, adjust the settings, then click the button to generate a shape in the middle of the page:<br />
<br />
<img src="http://i.imgur.com/sRuMy.png" border="0" alt="" /><br />
<br />
The code to install it is in the zip, but also here:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Sub addMultigonDocker()<br />
&nbsp; &nbsp; Dim dockerAssembly As String<br />
&nbsp; &nbsp; dockerAssembly = &quot;D:\YOUR PATH GOES HERE\Multigon.dll&quot;<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; Call FrameWork.AddDocker(&quot;0F10EF19-3BD9-458F-9FA5-60320658A792&quot;, &quot;Multigon.Docker&quot;, dockerAssembly)<br />
&nbsp; &nbsp; Call FrameWork.CommandBars(&quot;Dockers&quot;).Controls.AddToggleButton(&quot;0F10EF19-3BD9-458F-9FA5-60320658A792&quot;, 0, False)<br />
End Sub</code><hr />
</div>Make sure to get the path to the DLL right on the first time. If not, change a character or two in the GUID (0F10EF19-3BD9-458F-9FA5-60320658A792) and try again.<br />
<br />
An infinite supply of flowers, bottle caps, stamps, badges and other things await. Enjoy!<br />
<br />
PS. I know it's a tad cumbersome at first, but after a bit you see the settings in your head. If there's enough interest I might make a live preview version and/or a click to place and set size version.<br />
<br />
PSPS. Also (and this might as well be a signature, heh) massive thanks to Shelby for helping with a potentially buggy bit on the other side. Thought I was going crazy there for a bit.</div>


	<br />
	<div style="padding:6px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<table cellpadding="0" cellspacing="3" border="0">
			<tr>
	<td><img class="inlineimg" src="http://forum.oberonplace.com/images/attach/zip.gif" alt="File Type: zip" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
	<td><a href="http://forum.oberonplace.com/attachment.php?attachmentid=1150&amp;d=1337263177">Multigon.zip</a> (22.8 KB)</td>
</tr>
			</table>
		</fieldset>
	

	</div>
]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>Joe</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8202</guid>
		</item>
		<item>
			<title>Diminishing shade in a photo</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8200&amp;goto=newpost</link>
			<pubDate>Wed, 16 May 2012 08:11:57 GMT</pubDate>
			<description>Make a selection of the shaded area and run following macro: 
 
Dim X As Long 
Dim Y As Long 
Dim H As Long 
Sub Schaduw() 
Set Doc = ActiveDocument 
Doc.Mask.Feather 4, pntFeatherInside, pntEdgeLinear 
Application.CorelScript.EditCopy 
X = Doc.Mask.PositionX</description>
			<content:encoded><![CDATA[<div>Make a selection of the shaded area and run following macro:<br />
<br />
Dim X As Long<br />
Dim Y As Long<br />
Dim H As Long<br />
Sub Schaduw()<br />
Set Doc = ActiveDocument<br />
Doc.Mask.Feather 4, pntFeatherInside, pntEdgeLinear<br />
Application.CorelScript.EditCopy<br />
X = Doc.Mask.PositionX<br />
Y = Doc.Mask.PositionY<br />
H = Doc.Mask.SizeHeight<br />
Application.CorelScript.EditPasteObject<br />
Set Laag = Doc.ActiveLayer<br />
Laag.Move X, Y + H<br />
With PHOTOPAINT.CorelScript<br />
.BitmapEffect &quot;Desaturate&quot;, &quot;DesaturateEffect&quot;<br />
.BitmapEffect &quot;Gaussian Blur&quot;, &quot;GaussianBlurEffect GaussianBlurRadius=600&quot;<br />
.BitmapEffect &quot;Invert&quot;, &quot;inverteffect&quot;<br />
End With<br />
ActiveLayer.MergeMode = pntMergeOverlay<br />
Set Laag = Doc.ActiveLayer<br />
Laag.Opacity = 50<br />
Doc.Layers.Merge<br />
Doc.Mask.Delete<br />
End Sub<br />
<br />
With help of Shelbym :)</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=17">Corel Photo-Paint VBA</category>
			<dc:creator>hvw</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8200</guid>
		</item>
		<item>
			<title>getdocument-filesave-filesclose script not working</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8199&amp;goto=newpost</link>
			<pubDate>Tue, 15 May 2012 08:10:28 GMT</pubDate>
			<description><![CDATA[Hi there, 
 
trying to write a small script for PP X3. But I am not firm with writing vba or scripts: 
WITHOBJECT "CorelPHOTOPAINT.Automation.13" 
    .SetDocumentInfo 4464, 6878 
    .EditClear 8, 1, 0, 0, 0 
    .MaskRemove 
    name$=.GetDocumentName()    
    .FileSave name$,772,6 
 .FileClose()]]></description>
			<content:encoded><![CDATA[<div>Hi there,<br />
<br />
trying to write a small script for PP X3. But I am not firm with writing vba or scripts:<br />
<blockquote><blockquote>WITHOBJECT &quot;CorelPHOTOPAINT.Automation.13&quot;<br />
    .SetDocumentInfo 4464, 6878<br />
    .EditClear 8, 1, 0, 0, 0<br />
    .MaskRemove<br />
    name$=.GetDocumentName()   <br />
    .FileSave name$,772,6<br />
 .FileClose()<br />
</blockquote></blockquote>On trying to process the script I get an error that the hard disk is full or that the application is unstable and crashes.<br />
<br />
Even tried this script:<br />
<blockquote><blockquote>GLOBAL Path$<br />
Path$=&quot;R:\grafik corel etc\corel scripts\&quot;<br />
Dim FilePath As String<br />
WITHOBJECT &quot;CorelPHOTOPAINT.Automation.13&quot;<br />
    .SetDocumentInfo 4464, 6878<br />
    .EditClear 8, 1, 0, 0, 0<br />
    .MaskRemove<br />
    'get: X:\Folder\FileName.Ext<br />
    FilePath= .GetDocumentName()<br />
    .FileSave FilePath, 1792, 0<br />
    .FileClose<br />
END WITHOBJECT</blockquote></blockquote>I am sure the scripts are wrong so I cannot process it correctly.<br />
<br />
I would like to save the open file, same name same place, just overwriting it and then close the open file.<br />
But the command .fileclose never works for me as the app crashes.<br />
<br />
Any ideas? Any help would be appreciated.<br />
<br />
Thank you very much in advance.<br />
<br />
Kind regards,<br />
<br />
berthold</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=19">Corel Photo-Paint CS</category>
			<dc:creator>weinberger</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8199</guid>
		</item>
		<item>
			<title>Corel X5 PatternFill from CDR Page Other Than 1</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8194&amp;goto=newpost</link>
			<pubDate>Sat, 12 May 2012 22:08:02 GMT</pubDate>
			<description>I am using VBA and ApplyPatternFill to try to get a full color pattern from another CDR file.  It works if I use a cdr as the file parameter, but my problem is that it defaults to using the first page.  Is there a way I can get a pattern and apply as a fill from various pages other than the first? ...</description>
			<content:encoded><![CDATA[<div>I am using VBA and ApplyPatternFill to try to get a full color pattern from another CDR file.  It works if I use a cdr as the file parameter, but my problem is that it defaults to using the first page.  Is there a way I can get a pattern and apply as a fill from various pages other than the first?  Should I be using the PatternCanvasIndex somehow, or is there another way to assign a fill other than the ApplyPatternFill method?</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>vitoe</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8194</guid>
		</item>
		<item>
			<title>Little easy object placement macro</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8192&amp;goto=newpost</link>
			<pubDate>Fri, 11 May 2012 17:36:09 GMT</pubDate>
			<description><![CDATA[Hi all! 
 
Haven't been here for a loooong time, but made this super-simple little macro for a task and thought maybe it could come in handy to someone, it's kinda neat. 
 
What it does is it takes a bunch (or just one) of objects and then as you click it places a copy of a random object at a...]]></description>
			<content:encoded><![CDATA[<div>Hi all!<br />
<br />
Haven't been here for a loooong time, but made this super-simple little macro for a task and thought maybe it could come in handy to someone, it's kinda neat.<br />
<br />
What it does is it takes a bunch (or just one) of objects and then as you click it places a copy of a random object at a random angle. Here's an example:<br />
<br />
<img src="http://i.imgur.com/rLHAB.png" border="0" alt="" /><br />
<br />
So you want to place those sea-things onto the water. Normally arranging them would be quite a chore, here you just select all the objects on top, start the macro, click like crazy, then press ESC to cancel the placement mode and get this:<br />
<br />
<img src="http://i.imgur.com/o7AKn.png" border="0" alt="" /><br />
<br />
You can undo any placement or right click to move them mid-placement and, of course, change the positions after you are done placing. But it's a good start. Here's the code, I hope someone finds it useful:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Sub ObPlacer()<br />
&nbsp; If ActiveSelection.Shapes.Count = 0 Then<br />
&nbsp; &nbsp; MsgBox &quot;Please select at least one object.&quot;, vbOKOnly<br />
<br />
&nbsp; &nbsp; Exit Sub<br />
&nbsp; &nbsp; End If<br />
<br />
&nbsp; &nbsp; Dim X As Double, Y As Double<br />
&nbsp; &nbsp; Dim b As Boolean<br />
&nbsp; &nbsp; Dim s As Shape<br />
&nbsp; &nbsp; Dim Pool As ShapeRange<br />
&nbsp; &nbsp; Dim Count As Single, WhichOne As Single<br />
<br />
&nbsp; &nbsp; Set Pool = ActiveSelectionRange<br />
&nbsp; &nbsp; Count = Pool.Shapes.Count<br />
<br />
&nbsp; &nbsp; b = False<br />
<br />
&nbsp; &nbsp; While Not b<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; b = ActiveDocument.GetUserClick(X, Y, 0, 10, False, cdrCursorSmallcrosshair)<br />
&nbsp; &nbsp; &nbsp; &nbsp; If Not b Then<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WhichOne = Int(Rnd * Count + 1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ActiveDocument.BeginCommandGroup (&quot;Placed Object&quot;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set s = Pool.Shapes(WhichOne).Duplicate(X - Pool.Shapes(WhichOne).CenterX, Y - Pool.Shapes(WhichOne).CenterY)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; s.Rotate (Rnd * 360)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ActiveDocument.EndCommandGroup<br />
&nbsp; &nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; Wend<br />
&nbsp; End Sub</code><hr />
</div>If/when I finally get my brain to understand shelby's excellent new X6 docker tutorial I might try to make a proper version with settings and such.</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>Joe</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8192</guid>
		</item>
		<item>
			<title>Corel 11 to Corel 12</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8190&amp;goto=newpost</link>
			<pubDate>Thu, 10 May 2012 02:33:05 GMT</pubDate>
			<description><![CDATA[I've recently went from CorelDraw 11 to CorelDraw 12. If I download the Jigsaw for 12 do I need to purchase another pass key, or can I use the one I've already purchased.]]></description>
			<content:encoded><![CDATA[<div>I've recently went from CorelDraw 11 to CorelDraw 12. If I download the Jigsaw for 12 do I need to purchase another pass key, or can I use the one I've already purchased.</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=24">Jigsaw Puzzle Creator</category>
			<dc:creator>pureevil</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8190</guid>
		</item>
		<item>
			<title>Hatch problem on Corel Designer Technical</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8186&amp;goto=newpost</link>
			<pubDate>Sun, 06 May 2012 14:28:03 GMT</pubDate>
			<description><![CDATA[Hi. I have a problem. I can apply hatches but cant scale them...not alls, but any of them. Line hatches, when the hatch is created by paralels is ok, I can change his scale by changing "spacing" percentage. But there are some autocad hatches (non paralel line based) that appearently have problems....]]></description>
			<content:encoded><![CDATA[<div>Hi. I have a problem. I can apply hatches but cant scale them...not alls, but any of them. Line hatches, when the hatch is created by paralels is ok, I can change his scale by changing &quot;spacing&quot; percentage. But there are some autocad hatches (non paralel line based) that appearently have problems. For example the grass hatch. When I change the spacing value, it gives me something else, but not the hatch scaled. You can see it in my screenshots I attach. Anyone knows what´s the problem? <br />
<br />
<a href="http://img137.imageshack.us/img137/886/26424905.jpg" target="_blank">http://img137.imageshack.us/img137/886/26424905.jpg</a><br />
<br />
<a href="http://img32.imageshack.us/img32/4073/90177185.jpg" target="_blank">http://img32.imageshack.us/img32/4073/90177185.jpg</a></div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>filograph</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8186</guid>
		</item>
		<item>
			<title>Create Menu and submenus - VBA</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8185&amp;goto=newpost</link>
			<pubDate>Sat, 05 May 2012 11:48:34 GMT</pubDate>
			<description><![CDATA[I am experienced enough in working with VBA Excel. Now I started working in Corel Draw (X5) and I try to make a menu with submenus in existing 'Menu bar'. I tried to find similar threads but I couldn't find something to make things clear enough. I mean there are possibilities to do that using XML...]]></description>
			<content:encoded><![CDATA[<div>I am experienced enough in working with VBA Excel. Now I started working in Corel Draw (X5) and I try to make a menu with submenus in existing 'Menu bar'. I tried to find similar threads but I couldn't find something to make things clear enough. I mean there are possibilities to do that using XML but I would like to know<b> if it is possible on not to make that using only VBA</b>.<br />
I found some code and using the next one and a refference to 'Corel - VGC 15.0 Type library' I could create a Menu (control) between the existing ones, but I do not know how to create submenus, to allocate procedures to that...<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Dim oButton As CommandBarControl<br />
Set oButton = Application.CommandBars.Item(&quot;Menu Bar&quot;).Controls.AddCustomButton(&quot;2cc24a3e-fe24-4708-9a74-9c75406eebcd&quot;, &quot;Test&quot;, 8, False)<br />
With oButton<br />
&nbsp; &nbsp; .Visible = True<br />
&nbsp; &nbsp; .ToolTipText = &quot;Test...&quot;<br />
End With</code><hr />
</div>Since I am able to create it I suppose that it sould possible to do also what I need. <br />
If you know that it is not possible using just VBA I will try it using XML, but I would preffer VBA...<br />
Is there another GUID to be used for meniu creation? It looks I created a button, not a menu...<br />
<br />
I delete the new Meniu/Control using:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Application.CommandBars.Item(&quot;Menu Bar&quot;).Reset</code><hr />
</div>Thanks in advance!</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>FaneDuru</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8185</guid>
		</item>
		<item>
			<title>request for Recent File Maco updtae for x64</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8184&amp;goto=newpost</link>
			<pubDate>Fri, 04 May 2012 07:10:21 GMT</pubDate>
			<description>request for Recent File Maco updtae for x64</description>
			<content:encoded><![CDATA[<div>request for Recent File Maco updtae for x64</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>aakkaarr</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8184</guid>
		</item>
		<item>
			<title>detect page edge when inserting text</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8183&amp;goto=newpost</link>
			<pubDate>Fri, 04 May 2012 05:08:27 GMT</pubDate>
			<description>I have a recorded macro that inserts numbers from 1 thru 150 starting from the top left and down but it keeps going past the page edge.  How can I tell the function to detect the page and create a new column?</description>
			<content:encoded><![CDATA[<div>I have a recorded macro that inserts numbers from 1 thru 150 starting from the top left and down but it keeps going past the page edge.  How can I tell the function to detect the page and create a new column?</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>gorgo</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8183</guid>
		</item>
		<item>
			<title><![CDATA[Can't Save Macro Changes?]]></title>
			<link>http://forum.oberonplace.com/showthread.php?t=8181&amp;goto=newpost</link>
			<pubDate>Thu, 03 May 2012 08:15:22 GMT</pubDate>
			<description><![CDATA[I'm just trying to get my laptop setup and have CorelDRAW X5 installed and copied over my macros... I used to be able to right click on my custom macros and choose edit but I can't do that?... 
 
I also can't save any changes to my existing macros that I copied over to the laptop... I checked and...]]></description>
			<content:encoded><![CDATA[<div>I'm just trying to get my laptop setup and have CorelDRAW X5 installed and copied over my macros... I used to be able to right click on my custom macros and choose edit but I can't do that?...<br />
<br />
I also can't save any changes to my existing macros that I copied over to the laptop... I checked and the files in question are not set to read only?...<br />
<br />
Now if I create a new Macro then I can right click and choose edit in the Macro Manager and I can save files as expected?<br />
<br />
Any ideas why this would be?...<br />
<br />
Thank you,<br />
<br />
Kevin</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>katruax</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8181</guid>
		</item>
		<item>
			<title>CQL Query and @Com.Properties not working</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8179&amp;goto=newpost</link>
			<pubDate>Wed, 02 May 2012 13:50:15 GMT</pubDate>
			<description><![CDATA[Trying to retrieve data stored in Shape.Properties ("Fabric", 1) using: 
 
Code: 
--------- 
Sub QueryPropertiesTest() 
Dim s As Shape 
Dim sr As ShapeRange 
ActivePage.Shapes.FindShapes(Query:="@Com.Properties('Fabric', 1)='denim'").CreateSelection 
Set sr = ActiveSelectionRange 
    For Each s In...]]></description>
			<content:encoded><![CDATA[<div>Trying to retrieve data stored in Shape.Properties (&quot;Fabric&quot;, 1) using:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Sub QueryPropertiesTest()<br />
Dim s As Shape<br />
Dim sr As ShapeRange<br />
ActivePage.Shapes.FindShapes(Query:=&quot;@Com.Properties('Fabric', 1)='denim'&quot;).CreateSelection<br />
Set sr = ActiveSelectionRange<br />
&nbsp; &nbsp; For Each s In sr<br />
&nbsp; &nbsp; &nbsp; &nbsp; MsgBox s.Properties(&quot;Fabric&quot;, 1)<br />
&nbsp; &nbsp; Next s<br />
End Sub</code><hr />
</div>It returns the following error:<br />
&quot;Failed to invoke method 'Properties' of object 'COM:IVGShape'. COM error:80020005&quot;<br />
VGCore Reference is set as active, now I've lost all the hairs of my head moving quotes rigth and left with no succes. <br />
Anyone has had similar problems?</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>Jaime Sanllehy</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8179</guid>
		</item>
		<item>
			<title>Help with User Form</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8177&amp;goto=newpost</link>
			<pubDate>Mon, 30 Apr 2012 13:29:52 GMT</pubDate>
			<description>Public filepath As String, filename As String 
______________________________________________________ 
 
 
 
Kevin</description>
			<content:encoded><![CDATA[<div>Public filepath As String, filename As String<br />
______________________________________________________<br />
<br />
<br />
<br />
Kevin</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>katruax</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8177</guid>
		</item>
		<item>
			<title>Another language please.</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8175&amp;goto=newpost</link>
			<pubDate>Thu, 26 Apr 2012 17:52:51 GMT</pubDate>
			<description>Hola que tal. Puede ser que el sitio está disponible en idioma español? Gracias. 
 
Hello such. It may be that the site is available anywhere Spanish language? Thank you.</description>
			<content:encoded><![CDATA[<div>Hola que tal. Puede ser que el sitio está disponible en idioma español? Gracias.<br />
<br />
Hello such. It may be that the site is available anywhere Spanish language? Thank you.</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=9">Site News</category>
			<dc:creator>manumdp</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8175</guid>
		</item>
		<item>
			<title>Find overlapping nodes</title>
			<link>http://forum.oberonplace.com/showthread.php?t=8173&amp;goto=newpost</link>
			<pubDate>Mon, 23 Apr 2012 05:21:06 GMT</pubDate>
			<description>Hi, 
I have a line segment where there are two overlapping nodes. 
If I use the FindNodeAtPoint, it always returns the first node at that point. Is there a way to retrieve the absoluteindex of the other node that is present at that position? 
 
Thanks is advance</description>
			<content:encoded><![CDATA[<div>Hi,<br />
I have a line segment where there are two overlapping nodes.<br />
If I use the FindNodeAtPoint, it always returns the first node at that point. Is there a way to retrieve the absoluteindex of the other node that is present at that position?<br />
<br />
Thanks is advance</div>

]]></content:encoded>
			<category domain="http://forum.oberonplace.com/forumdisplay.php?f=16">CorelDRAW/Corel DESIGNER VBA</category>
			<dc:creator>prongs</dc:creator>
			<guid isPermaLink="true">http://forum.oberonplace.com/showthread.php?t=8173</guid>
		</item>
	</channel>
</rss>

