<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8704576</id><updated>2011-08-25T00:22:19.438-07:00</updated><title type='text'>PowerBuilder Corner</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://englishpowerbuilder.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://englishpowerbuilder.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Carlos Lone</name><uri>http://www.blogger.com/profile/01316254408883005865</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://www.geocities.com/progra1lasi/me.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8704576.post-113042938423755380</id><published>2005-10-27T09:03:00.000-07:00</published><updated>2005-10-27T18:51:08.063-07:00</updated><title type='text'>Datawindow.net date formatting</title><content type='html'>Dear Friends,&lt;br /&gt;&lt;br /&gt;This time I want to share with you this article about dw.net date formatting. I will explain how you can set the date format in dw.net (Web Environment). I have been reading many messages from Sybase’s costumers asking for a work around. I hope this can help you solve the problem.&lt;br /&gt;&lt;br /&gt;First of all, we need to create a new Web Project in Vs.net (at the end of this article you’ll find a link to a zip file containing the example project). After that, drag &amp; drop a DW control on the WebForm. Make sure you assign both “libraryList” and “datawindowobject” properties.&lt;br /&gt;&lt;br /&gt;Before explaining the work around, I would like to describe how Dw.net does handle the rendered html. Dw.net has a server side engine to handle data rendering, every time a page is requested, this generate the entire html and javascript rendering that is sent back to the client. If you check the source code in the client side, you’ll find a bunch of javascript code along with html. Javascript is used to perform client data validation and manipulation, this means that DataType checking, error messaging and some how data formatting is done by this code. Luckily, Sybase’s DW.net let us manually handle how this javascript code is rendered.&lt;br /&gt;&lt;br /&gt;In order to handle the date formatting the way we want, we have to follow these steps:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to dw controls’ properties, you’ll find at the bottom of the property window a Link “Generate Client Management Javascript”. watch the picture:&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;img src="http://www.geocities.com/progra1lasi/Imagen1.gif" /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;A pop up window will show, watch the picture:&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;img src="http://www.geocities.com/progra1lasi/Imagen2.gif" /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;This will save javascript files on the selected path. Open the “dwdatetime.js” file, and find the following text (“Hint: use find or search tools)&lt;br /&gt;&lt;br /&gt;//var DW_PARSEDT_monseq = 0;&lt;br /&gt;&lt;br /&gt;//var DW_PARSEDT_dayseq = 1;&lt;br /&gt;&lt;br /&gt;//var DW_PARSEDT_yearseq = 2;&lt;br /&gt;&lt;br /&gt;These constants are used to define how the date will be parsed. So if you need to change the format to ‘dd/mm/yyy’ you should set this constant as follow:&lt;br /&gt;&lt;br /&gt;var DW_PARSEDT_monseq = 1; // this is the month position&lt;br /&gt;&lt;br /&gt;var DW_PARSEDT_dayseq = 0; // this is the day position&lt;br /&gt;&lt;br /&gt;var DW_PARSEDT_yearseq = 2; // this is year position&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Once you have done it, there’s one last thing to do. Notice that this format will be applied to date textbox and dropdown calendar textbox as well.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In orde to use the Javascript files, you have generated. You should change some properties in the property window. Watch the picture:&lt;br /&gt;&lt;br /&gt;&lt;div align="center"&gt;&lt;img src="http://www.geocities.com/progra1lasi/Imagen3.gif" /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;These properties are used by the engine to check if it has to generate the javascript files or if it has to use the generated file. Note: You could delete “CommonManagementJavascriptFile”, “NumberManagmentJavascriptFile” and “StringManagementJavascriptFile” values. This means, that engine will generate automatically these files, and it will use only the datetime javascript file. You should note that using javascript files is a better option regarding performance. Because these files can be cached on the client and it will reduce the amount of code send it from the server.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;So that’s it. I hope this help you to solve the problem. My best regards to all of you. Happy Programming !!!.&lt;br /&gt;&lt;br /&gt;Here is the link to the project zip file : &lt;a href="http://www.geocities.com/progra1lasi/DateMask.zip"&gt;http://www.geocities.com/progra1lasi/DateMask.zip&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you have questions, you could use the comments option or you could send an email to &lt;a href="mailto:carlone@galileo.edu"&gt;carlone@galileo.edu&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;&lt;br /&gt;Ing. Carlos A. Lone&lt;br /&gt;Guatemala&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8704576-113042938423755380?l=englishpowerbuilder.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://englishpowerbuilder.blogspot.com/feeds/113042938423755380/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8704576&amp;postID=113042938423755380' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/113042938423755380'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/113042938423755380'/><link rel='alternate' type='text/html' href='http://englishpowerbuilder.blogspot.com/2005/10/datawindownet-date-formatting.html' title='Datawindow.net date formatting'/><author><name>Carlos Lone</name><uri>http://www.blogger.com/profile/01316254408883005865</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://www.geocities.com/progra1lasi/me.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8704576.post-112542900960539334</id><published>2005-08-30T10:14:00.000-07:00</published><updated>2005-08-30T12:46:00.596-07:00</updated><title type='text'>Exporting Datawindows to Excel without loosing Format</title><content type='html'>Hello friends,&lt;br /&gt;&lt;br /&gt;Recently, I have been reading threads about the subject of this post. There are many people who needs to export a DW content to Excel. The easiest way to achive this is by using SaveAS method, but wait up...., someone could say, I have tried this already, but it didn't work when using computed fields or what about crosstabs. Well, don't get scared !!!, there's a way out of this. As many people knows Datawindow is capable to expose its data and format as HTML, so by using this and a little trick you can achieve to export data from dw to excel.&lt;br /&gt;&lt;br /&gt;To do this, you should follow these steps:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;strong&gt;Very Important:&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Before following this instructions, go to DW Designer and make sure the css property is enabled for your DW object. To do this: open DW designer, select the DW object and open the Datawindow Painter, on the properties tab control select "HTML Table" tab, and make sure the CSS property is checked. Without this you will not be able to see font colors or backgroud colors styles.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;Windows Enviroment:&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;1. Let's supose that you have a buton to export data to excel, on the button's clicked event, you should use this:&lt;br /&gt;&lt;br /&gt;For powerbuilder&lt;br /&gt;Sintax dw_controlname.saveas ({filename.xls}, HTMLTABLE!,{true or false to show headers)&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;dw_1.saveas("excelreport.xls",HTMLTable! ,true)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For .net&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;VB.net&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;Sintax dw_controlname.saveas ({filename.xls}, FileSaveAsType.Excel,{true or false to show headers)&lt;br /&gt;Example:&lt;br /&gt;dw_controlname.SaveAs("excelreport.xls", FileSaveAsType.Excel, True)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;C# &lt;/strong&gt;&lt;br /&gt;Sintax dw_controlname.saveas ({filename.xls}, FileSaveAsType.Excel,{true or false to show headers);&lt;br /&gt;Example:&lt;br /&gt;dw_controlname.SaveAs("excelreport.xls", FileSaveAsType.Excel, True);&lt;br /&gt;&lt;br /&gt;2. Open the new file, voala!!!!, ther you have it. You should be able to see the data in excel.&lt;br /&gt;&lt;br /&gt;3. Caveats, nothing is for free !!!!. There's a small problem with this approach, but is feasible to fix it. We're cheating to excel, because we're not exporting the data as excel, instead, we're saving HTML and CSS content as file with excel extension. Excel is able to read HTML and HTML Tables. The problem comes with CSS, because the DW generates an extra semicolon ";" and because of this, excel is not able to apply the style. but i'll explain how to avoid this problem.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Web Enviroment:&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;1. In a web enviroment there are some changes you have to do. Most problably you'll want to redirect the user to a new page that shows the data in a excel file. Firs of all you should code this on the button's clicked event:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Vb.net&lt;br /&gt;&lt;/em&gt;&lt;/strong&gt;Response.Redirect ("Newpage.aspx")&lt;br /&gt;&lt;strong&gt;&lt;em&gt;C#&lt;br /&gt;&lt;/em&gt;&lt;/strong&gt;Response.Redirect ("Newpage.aspx");&lt;br /&gt;&lt;br /&gt;2. follow these code to retrieve the excel file&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;VB.net&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;on the Newpage.aspx, go to "DOCUMENT PROPERTIES" and go to "contentType" property and change the value to: application/vnd.ms-excel&lt;br /&gt;&lt;br /&gt;on the Newpage.aspx ' s page load event&lt;br /&gt;&lt;br /&gt;private sub Page load()&lt;br /&gt;&lt;br /&gt;Dim ds As DataStore&lt;br /&gt;Dim SQLCA As New AdoTransaction&lt;br /&gt;SQLCA.Connection = dalFactory.getConexion&lt;br /&gt;SQLCA.BindConnection()&lt;br /&gt;ds.LibraryList = Server.MapPath("../") &amp; "yourlibrary.pbl"&lt;br /&gt;ds.DataWindowObject = "d_yourdatawindowobject"&lt;br /&gt;ds.SetTransaction(SQLCA)&lt;br /&gt;&lt;br /&gt;if (ds.retrieve()&gt;0) then&lt;br /&gt;Response.Write ( ds.Describe("DataWindow.Data.HTML") )&lt;br /&gt;end if&lt;br /&gt;&lt;br /&gt;End sub&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;C#&lt;br /&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;On the Newpage.aspx, go to "DOCUMENT PROPERTIES" and go to "contentType" property and change the value to: application/vnd.ms-excel&lt;br /&gt;&lt;br /&gt;On the Newpage.aspx ' s page load event&lt;br /&gt;private void Page load()&lt;br /&gt;{&lt;br /&gt;DataStore ds;&lt;br /&gt;AdoTransaction SQLCA = New AdoTransaction();&lt;br /&gt;SQLCA.Connection = dalFactory.getConexion;&lt;br /&gt;SQLCA.BindConnection();&lt;br /&gt;ds.LibraryList = Server.MapPath("../") + "yourlibrary.pbl";&lt;br /&gt;ds.DataWindowObject = "d_yourdatawindowobject";&lt;br /&gt;ds.SetTransaction(SQLCA);&lt;br /&gt;&lt;br /&gt;if (ds.retrieve()&gt;0)&lt;br /&gt;{&lt;br /&gt;Response.Write ( ds.Describe("DataWindow.Data.HTML") );&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;With this code, you should be able to redirect the user to a new page and show the content of a dw as a Excel document.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;Enhacements:&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;Below you'll find the code to Fix CSS problem (Mentioned above).&lt;br /&gt;&lt;br /&gt;VB.net&lt;br /&gt;change this:&lt;br /&gt;Response.Write ( ds.Describe("DataWindow.Data.HTML") )&lt;br /&gt;to this:&lt;br /&gt;Response.Write ( ds.Describe("DataWindow.Data.HTML") .replace("{;","{"))&lt;br /&gt;&lt;br /&gt;C#&lt;br /&gt;change this:&lt;br /&gt;Response.Write ( ds.Describe("DataWindow.Data.HTML") ) ;&lt;br /&gt;to this:&lt;br /&gt;Response.Write ( ds.Describe("DataWindow.Data.HTML") .replace("{;","{"))&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Ok folks, I hope you find this useful !!!!!&lt;br /&gt;&lt;br /&gt;Regards, and HAPPY CODING !!!!!!!&lt;br /&gt;&lt;br /&gt;Ing. Carlos A. Lone&lt;br /&gt;"The guy from Guatemala"&lt;br /&gt;&lt;br /&gt;P.D. Excuse me for my bad english.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8704576-112542900960539334?l=englishpowerbuilder.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://englishpowerbuilder.blogspot.com/feeds/112542900960539334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8704576&amp;postID=112542900960539334' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/112542900960539334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/112542900960539334'/><link rel='alternate' type='text/html' href='http://englishpowerbuilder.blogspot.com/2005/08/exporting-datawindows-to-excel-without.html' title='Exporting Datawindows to Excel without loosing Format'/><author><name>Carlos Lone</name><uri>http://www.blogger.com/profile/01316254408883005865</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://www.geocities.com/progra1lasi/me.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8704576.post-109960967642924834</id><published>2004-11-04T15:01:00.000-08:00</published><updated>2004-11-05T09:58:54.916-08:00</updated><title type='text'>Global Replace Function</title><content type='html'>Powerbuilder provides a rich set of String Functions, even though, There's no function for a massive replace, for example: I have this string "Hello my name is {field} , my name {field} comes from ... thanks regards from {field}" and you want to replacle the string "{field}" with "Carlos Lone", Fortunately, while i was surfing the net at Sybase code-exchange site, I found this useful function, this enable us to perfom the action described in the previous example.&lt;br /&gt;&lt;br /&gt;/*A String Occurrence Search and Replace RoutineThe following code demonstrates a string occurrence search and replaceroutine.This routine works generically for any string. For example,if old_str = "red" and new_str ="green", all occurrences of "red" inside of mystring will be replaced with "green".&lt;br /&gt;Parameters&lt;br /&gt;Name = source Type = String&lt;br /&gt;Name = look_for Type = String&lt;br /&gt;Name = replace_with Type = String&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;//variables&lt;br /&gt;int start_pos=1,len_look_for&lt;br /&gt;&lt;br /&gt;len_look_for = len(look_for)&lt;br /&gt;//find the first occurrence of look_for ...&lt;br /&gt;start_pos = Pos(source,look_for,start_pos)&lt;br /&gt;//only enter the loop if you find whats in look_for&lt;br /&gt;DO WHILE start_pos &gt; 0&lt;br /&gt;&amp;nbsp&amp;nbsp;&amp;nbsp    //replace look_for with replace_with ...&lt;br /&gt;&amp;nbsp&amp;nbsp;&amp;nbsp     source = Replace(source,start_pos,Len_look_for,replace_with)&lt;br /&gt;&amp;nbsp&amp;nbsp;&amp;nbsp     //find the next occurrence of&lt;br /&gt;&amp;nbsp&amp;nbsp;&amp;nbsp     look_forstart_pos = Pos(source,look_for,start_pos+Len(replace_with))&lt;br /&gt;LOOP&lt;br /&gt;return source&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I hope you can find this helpful.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Ing. Carlos A. LoneGuatemala&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8704576-109960967642924834?l=englishpowerbuilder.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://englishpowerbuilder.blogspot.com/feeds/109960967642924834/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8704576&amp;postID=109960967642924834' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/109960967642924834'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/109960967642924834'/><link rel='alternate' type='text/html' href='http://englishpowerbuilder.blogspot.com/2004/11/global-replace-function.html' title='Global Replace Function'/><author><name>Carlos Lone</name><uri>http://www.blogger.com/profile/01316254408883005865</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://www.geocities.com/progra1lasi/me.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8704576.post-109889372767176537</id><published>2004-10-27T09:10:00.000-07:00</published><updated>2004-10-27T09:18:23.446-07:00</updated><title type='text'>ISUG</title><content type='html'>Hello dear friends,&lt;br /&gt;&lt;br /&gt;Sybase is promoting a new comunity of Developers called ISUG (International Sybase User Group) &lt;a href="http://www.isug.com"&gt;http://www.isug.com&lt;/a&gt;, by joining this groud you have the oportunity to access news, technical documents, white papers, etc about sybase product, even more you have the oportunity of comunicate across the sybase's products users network all around the World, In my opinion this is wonderful, because this enable us (developers) to have a new source of support and information.&lt;br /&gt;&lt;br /&gt;Have a nice Day, regards !!!&lt;br /&gt;&lt;br /&gt;Carlos Lone&lt;br /&gt;Guatemala&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8704576-109889372767176537?l=englishpowerbuilder.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://englishpowerbuilder.blogspot.com/feeds/109889372767176537/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8704576&amp;postID=109889372767176537' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/109889372767176537'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/109889372767176537'/><link rel='alternate' type='text/html' href='http://englishpowerbuilder.blogspot.com/2004/10/isug.html' title='ISUG'/><author><name>Carlos Lone</name><uri>http://www.blogger.com/profile/01316254408883005865</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://www.geocities.com/progra1lasi/me.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8704576.post-109768032414871723</id><published>2004-10-13T08:06:00.000-07:00</published><updated>2004-10-13T08:12:04.146-07:00</updated><title type='text'>Welcome to PowerBuilder Corner</title><content type='html'>Hello dear Friends, My name is Carlos Lone, I'm from the beautiful country of Guatemala, I have started this Blog so we can Share Code Snipets,  Bugs, Experiences, Thoughts,  Examples, etc. about the PowerFul tool from Sybase, PowerBuilder. So everyone is invited to join this group. I hope that you can find interesting stuffs here ...&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Ing. Carlos A. Lone&lt;br /&gt;Guatemala.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8704576-109768032414871723?l=englishpowerbuilder.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://englishpowerbuilder.blogspot.com/feeds/109768032414871723/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8704576&amp;postID=109768032414871723' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/109768032414871723'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8704576/posts/default/109768032414871723'/><link rel='alternate' type='text/html' href='http://englishpowerbuilder.blogspot.com/2004/10/welcome-to-powerbuilder-corner.html' title='Welcome to PowerBuilder Corner'/><author><name>Carlos Lone</name><uri>http://www.blogger.com/profile/01316254408883005865</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://www.geocities.com/progra1lasi/me.jpg'/></author><thr:total>3</thr:total></entry></feed>
