<?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-8918052</id><updated>2011-04-21T10:48:06.170-07:00</updated><title type='text'>Clarion Windev Comparison</title><subtitle type='html'>Comparing the Clarion development environment with WinDev from PCsoft in France.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8918052.post-111639390777337159</id><published>2005-05-17T22:11:00.000-07:00</published><updated>2005-05-17T22:34:15.263-07:00</updated><title type='text'>Some WinDev code</title><content type='html'>OK - when I am learning a new language I read through the documentation on the various built in functions (this is the rule I violated this time). I wanted to be able to convert a date to the day of the week, and never having run across a language that had it built in, I went out and looked for code in Google to accomplish the task. I found some code posted in Pascal and converted it to WinDev -- it was a good learning exercise. Then I found the DateToDay() function, which does the same thing. So, here is the code as an example of what WinDev code looks like:&lt;br /&gt;&lt;br /&gt;PROCEDURE DayOfWeek(Year, Month, Day are int) &lt;br /&gt;Century, Holder, RetVal are int &lt;br /&gt;IF (Year &lt;&gt; 12) OR (Day &lt;&gt; 31) THEN &lt;br /&gt;RESULT -1 // Return -1 to indicate an error &lt;br /&gt;ELSE &lt;br /&gt;// Do the Zeller's Congruence calculation as Zeller himself } &lt;br /&gt;// described it in "Acta Mathematica" #7, Stockhold, 1887. } &lt;br /&gt;Century = IntegerPart(Year / 100) &lt;br /&gt;Year = modulo(Year, 100) &lt;br /&gt;// Next we adjust the month such that March remains month #3, &lt;br /&gt;// but that January and February are months #13 and #14, &lt;br /&gt;// *but of the previous year*: } &lt;br /&gt;IF Month &lt; face="courier new" size="1"&gt;Month += 12 &lt;br /&gt;IF Year &gt; 0 THEN &lt;br /&gt;Year -= 1 &lt;br /&gt;ELSE &lt;br /&gt;// The year before 2000 is 1999, not 20-1...} &lt;br /&gt;Year = 99 &lt;br /&gt;Century -= 1 &lt;br /&gt;END &lt;br /&gt;END &lt;br /&gt;//{ Here's Zeller's seminal black magic: } &lt;br /&gt;Holder = Day &lt;br /&gt;// Start With the day of month &lt;br /&gt;Holder = Holder + IntegerPart(((Month + 1) * 26) / 10) &lt;br /&gt;// Calc the increment &lt;br /&gt;Holder = Holder + Year &lt;br /&gt;// Add in the year &lt;br /&gt;Holder = Holder + IntegerPart(Year / 4) &lt;br /&gt;// Correct For leap years &lt;br /&gt;Holder = Holder + IntegerPart(Century / 4) &lt;br /&gt;// Correct For century years &lt;br /&gt;Holder = Holder - Century - Century &lt;br /&gt;WHILE Holder &lt; 3&lt;br /&gt;// Get negative values up into &lt;br /&gt;// positive territory before &lt;br /&gt;// taking the MOD... &lt;br /&gt;Holder += 7 &lt;br /&gt;END &lt;br /&gt;// taking the MOD... &lt;br /&gt;Holder = modulo(Holder, 7) &lt;br /&gt;// Divide by 7 but keep the &lt;br /&gt;// remainder rather than the quotient &lt;br /&gt;IF Holder = 0 THEN &lt;br /&gt;// Here we "wrap" Saturday around to be the last day &lt;br /&gt;Holder = 7 &lt;br /&gt;END &lt;br /&gt;// Return the end product! &lt;br /&gt;RESULT ExtractString"Sun/Mon/Tue/Wed/Thu/Fri/Sat",Holder,"/") &lt;br /&gt;END &lt;br /&gt;&lt;br /&gt;Sorry about the lack of indentation - the blog editor stripped them out!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-111639390777337159?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/111639390777337159/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=111639390777337159' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/111639390777337159'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/111639390777337159'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2005/05/some-windev-code.html' title='Some WinDev code'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-111622412454902568</id><published>2005-05-15T23:03:00.000-07:00</published><updated>2005-05-15T23:15:24.556-07:00</updated><title type='text'>Back again with observations on the W language</title><content type='html'>Finally back at work with WinDev -- not really a comparison to Clarion any more.  I gave my copy to the company that had been buying my services for a couple of years -- so, now I am writing software mostly to see if I can resell it at some future date rather than as a contractor.&lt;br /&gt;&lt;br /&gt;A few things I have found ... there are a 'ton' of routines.  I am slowly printing them out after converting over 2000 pages of functions documentation from chm to pdf.  For learning the capabilities of a language I still prefer paper to on-screen documentation.  After going through them I am beginning to undrstand the 'philosophy' of the 'W' language.  I am also seeing that the grouping of the functions 'may' make more sense in French than in English ... but the jury is still out on that one.&lt;br /&gt;&lt;br /&gt;Three things I have found so far:  1) US time, with AM and PM, is not handled as well as I would like.  Hope they make some progress on this in version 9 and 2) Supercontrols can cause browse order problems in a window, and 3)  I keep wanting more places to insert code but then realize that having just a few makes development easier in the long run.&lt;br /&gt;&lt;br /&gt;It is taking some time for me to get over the 'Why don't they do this like Clarion' syndrome.  But, as time goes on, I see more and more that the WinDev way is different, but IMHO in most cases, better.  My only wish is that the English market was big enough for PCSoft to be able to invest more into the English version.  I am feeling jealous of the French programmers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-111622412454902568?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/111622412454902568/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=111622412454902568' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/111622412454902568'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/111622412454902568'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2005/05/back-again-with-observations-on-w.html' title='Back again with observations on the W language'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-110058611803296680</id><published>2004-11-15T22:05:00.000-08:00</published><updated>2004-11-15T22:21:58.033-08:00</updated><title type='text'>November 15, 2004 - ODBC and Linux MySQL</title><content type='html'>Tried four versions of Linux and found Fedora Core 3 to be the most stable of the lot - the WinDev native MySQL driver connected to the MySQL server on the Linux box with no problems.  Also checked out the ODBC driver for Hyperfile using OpenOffice - Issued a query against a table and the ODBC driver returned the proper information.  My only complaint is that the ODBC driver is one place where the translation to English is not complete.  Not only is the ODBC setup screen still in French, but so are the error message dialogs if you submit an improper query -- I don't mind for myself, but I would like my customers to see English messages because they are going to assume that I am the one who decided the messages should be in French.  Not a big deal -- I'm just glad the connectivity is there and will hope this is corrected in version 9.0.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-110058611803296680?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/110058611803296680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=110058611803296680' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/110058611803296680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/110058611803296680'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2004/11/november-15-2004-odbc-and-linux-mysql.html' title='November 15, 2004 - ODBC and Linux MySQL'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-110049915926159955</id><published>2004-11-14T21:58:00.000-08:00</published><updated>2004-11-14T22:12:39.260-08:00</updated><title type='text'>November 14, 2004 - The new paradyme</title><content type='html'>Sorry for the delay folks, occasionally real work gets in the way.  Got a call for another contract in an older system I worked with before Clarion, a database system called Pick, Universe, Unidata, Revelation or Open Insight, depending on the flavour of the moment.&lt;br /&gt;&lt;br /&gt;Got me thinking that during my 24 years in this business, there have always been a class of tools that existed alongside the more popular tools from IBM or Microsoft or Borland.  They have always been oriented toward the business programmer.  Twenty years ago it was a product called Revelation (Later AREV), which was built using the paradyme of an earlier mini-computer OS called Pick.  Between 1985 to 1990 it became a tool that could be used to quickly develop business applications on the PC.  In the AREV incarnation it provided everything needed for business database development in one product ... better than the dBase, Paradox and Dataflex of that time ... and much quicker to develop than PDS basic, Borland Pascal, et.  al.&lt;br /&gt;&lt;br /&gt;Others in this group have included Magic and Clarion.&lt;br /&gt;&lt;br /&gt;Now the concept of 'design before code' has become the norm.  The 2-tier and 3-tier design methodologies are replacing the mainframe based 1-tier designs that dominated for 30 years.  However most of the tool sets used to design these modern, very complex systems are unbearable to those of us who got used to truely integrated tool kits in the PC DOS days.&lt;br /&gt;&lt;br /&gt;Clarion, Open Insight and Magic were three tools who were moderately successful in bringing this paradyme to the Windows development world.  As the Windows API grew and grew, making complex internal development more and more out of reach for all but the biggest companies, these tools have been a refuge for at least some of the tasks of rapid business database development.&lt;br /&gt;&lt;br /&gt;I will have to say that, with the possible exception of the Clarion templates like Ultra Tree, the totally integrated approach of WinDev brings back the best of the quick development possible with AREV in 1990 and additionally adds many new possiblities that AREV could not have considered.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-110049915926159955?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/110049915926159955/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=110049915926159955' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/110049915926159955'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/110049915926159955'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2004/11/november-14-2004-new-paradyme.html' title='November 14, 2004 - The new paradyme'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-109968368478155724</id><published>2004-11-05T11:37:00.000-08:00</published><updated>2004-11-05T12:07:34.356-08:00</updated><title type='text'>November 5 - Importing an MS Access Database</title><content type='html'>This works, mostly. I designed a small two table access database and a related form. The form had a group of tabs and one of the tabs had a sub-form on it.&lt;br /&gt;&lt;br /&gt;Everything was imported except the subform on the master form; the data, the form layouts, the relationships between forms, everything.&lt;br /&gt;&lt;br /&gt;The subform was imported as a separate form.&lt;br /&gt;&lt;br /&gt;One limitation is that Microsoft Access has to be loaded on the computer doing the importing. You can't just take and .mdb and import the contents - it apparently communicates with Access to extract the data.&lt;br /&gt;&lt;br /&gt;Also, thanks for the postings about the MySQL driver and the Modifier -- hadn't found that yet.  Will try that again later.&lt;br /&gt;&lt;br /&gt;More later ...&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-109968368478155724?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/109968368478155724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=109968368478155724' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109968368478155724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109968368478155724'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2004/11/november-5-importing-ms-access.html' title='November 5 - Importing an MS Access Database'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-109951616805484683</id><published>2004-11-03T13:01:00.000-08:00</published><updated>2004-11-03T19:33:42.296-08:00</updated><title type='text'>November 4, 2004 - And a few things I don't like ...</title><content type='html'>Sorry I haven't been around for a few days.  I was involved with the US election as a poll watcher.  Won't say anything about my politics other than I might be open to a four year gig in Europe if one came along.  OK, enough of that - now a few things that I wish were different about WinDev.&lt;br /&gt;&lt;br /&gt;1) I prefer property sheets - the 7 tabs are OK, but I still prefer property sheets.&lt;br /&gt;&lt;br /&gt;2) I wish the native MySQL driver worked out of the box.  I installed MySQL on a server, I installed the driver.  Things seem to be working fine until an SQL statement gets generated and I get an 'invalid SQL syntax' message.  Now I am sure there is a simple fix,  but I wish I didn't have to work to find it on what I consider a basic feature.&lt;br /&gt;&lt;br /&gt;3) I have also been reading messages that talk about problems with the ODBC drivers.  Don't know if it's true yet.  But data access is the one thing that should be bullet proof out of the box on a database based environment.&lt;br /&gt;&lt;br /&gt;Will get back with more soon, but still trying to dig out of my election day hole!&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-109951616805484683?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/109951616805484683/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=109951616805484683' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109951616805484683'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109951616805484683'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2004/11/november-4-2004-and-few-things-i-dont.html' title='November 4, 2004 - And a few things I don&apos;t like ...'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-109911289131417551</id><published>2004-10-29T21:58:00.000-07:00</published><updated>2004-10-29T22:08:11.313-07:00</updated><title type='text'>October 29 - Everything open at once!!</title><content type='html'>One of the things I have always hated about the Clarion environment is the fact that when you are screen painting or code writing or dictionary building you are locked out of other functions. Everything is open, open, open, close, close, close, open something else, etc.&lt;br /&gt;&lt;br /&gt;I have started the WinDev tutorial and all of a sudden it came to me ... I have an analysis, a project definition, a window layout, an SQL statement and a report all open at the same time ... and I can switch between them as needed --- wow, what a concept. So the question now is is WinDev just a pretty face hiding a vapid and useless interior, or does this magnificent exterior intimate a equally lustrous interior?&lt;br /&gt;&lt;br /&gt;Only time will tell ...&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-109911289131417551?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/109911289131417551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=109911289131417551' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109911289131417551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109911289131417551'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2004/10/october-29-everything-open-at-once.html' title='October 29 - Everything open at once!!'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-109908736864890475</id><published>2004-10-29T14:37:00.000-07:00</published><updated>2004-10-29T15:02:48.646-07:00</updated><title type='text'>October 29, 2004 - Project control center (yippee)</title><content type='html'>I looooove the project control center.  I also love the analysis screen. &lt;br /&gt;&lt;br /&gt;The project control center keeps track 0f all the elements of the project; sql queries, screens, reports, batch processes, exports - you name it, it's here.  Everything is laid out visually and the representations on this screen are mini versions of your screens, reports, etc -- so no forgetting what the name you gave a process was and having to open item after item to look at the screen and see if it is the one you wanted.  There is also a little mini-viewer for large projects that has a little moving transparent box showing you what part of the project tree you are looking at.&lt;br /&gt;&lt;br /&gt;The analysis screen is where you view the database structure. All the tables are there with the traditional 1:1 1:M M:1 notations.  It is the Clarion Data Modeller the way it should be done.  Again the little transparent box showing you what part of the larger database analysis is currently being displayed.&lt;br /&gt;&lt;br /&gt;The price of the product is paid for with these two tools alone, even if I never actually created an app in WinDev.&lt;br /&gt;&lt;br /&gt;Other things I really like:&lt;br /&gt;&lt;br /&gt;The maintenance tool that is included with WinDev.  It has a pleasing visual layout and provides a central control center for 23 different tools.  These include things like a setup builder, file maintenance, test application creation (build scripts to test your app after changes to see it still works properly), version control. zip archive tool and many others.&lt;br /&gt;&lt;br /&gt;The ODBC driver for hyperfile databases is freely distributable.  This points to one of the things I find myself really liking about WinDev.  The tools you need come with the base package.  The only things you pay extra for are native drivers for databases like Oracle, translation tools for multi-language programming and an end user report writing tool that is not available in English yet.  Everything else is included in the base package for about the same price as Clarion Enterprise Edition and a fraction of tools such as Magic.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-109908736864890475?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/109908736864890475/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=109908736864890475' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109908736864890475'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109908736864890475'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2004/10/october-29-2004-project-control-center.html' title='October 29, 2004 - Project control center (yippee)'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-109901764230317213</id><published>2004-10-28T19:26:00.000-07:00</published><updated>2004-10-29T00:29:05.016-07:00</updated><title type='text'>October 28, 2004 - First impressions</title><content type='html'>The last time I upgraded from Clarion 5.5 professional to Clarion 6.0 enterprise, what I got was a single CD in the type of cd holder that Microsoft Money is sold in -- what you would expect with $50 software.&lt;br /&gt;&lt;br /&gt;WinDev arrived dressed in a bright cheery yellow box. In the box were the software CD, the dongle (which was not a surprise, I knew about it), three printed manuals and -- a WinDev pen, a yellow WinDev wallet (not for software, but for money and credit cards -- that type of wallet) and a nice little LCD desk clock. All sporting the WinDev logo.&lt;br /&gt;&lt;br /&gt;Four comments.&lt;br /&gt;&lt;br /&gt;1) The 50 page on-line brochure that WinDev has on the web site said to me that PCSoft wants new customers. While there are a few white papers on the Clarion site, there is nothing with this depth.&lt;br /&gt;&lt;br /&gt;2) I feel better buying my new car from a spiffy dealership, where everything is bright and shiny rather than from a dumpy local garage. I guess I just feel that if they care enough to take care of their 'home' they probably will value me as a customer and take care of me. Same with WinDev. It made me feel great that they cared enough about their product to make sure that the first visual impression was positive.&lt;br /&gt;&lt;br /&gt;3) Some people might think the gifts are silly. I enjoyed them. They were a surprise and continued to build the positive impression.&lt;br /&gt;&lt;br /&gt;4) The dongle -- the dongle doesn't bother me. It tells me that the company is not having to charge me more as an honest customer because a bunch of dishonest people are copying the product. As far as I'm concerned the dongle assures that I am working on a relatively level playing field -- everyone is having to pay toward the cost of developing the product.&lt;br /&gt;&lt;br /&gt;All of these are, after all, superficial impressions. The real test will be; does this product help me develop software that my customers like and that ends up paying the bills.&lt;br /&gt;&lt;br /&gt;More later ...&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-109901764230317213?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://clcompare.blogspot.com/feeds/109901764230317213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8918052&amp;postID=109901764230317213' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109901764230317213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109901764230317213'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2004/10/october-28-2004-first-impressions.html' title='October 28, 2004 - First impressions'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8918052.post-109899798359833536</id><published>2004-10-28T14:08:00.000-07:00</published><updated>2004-10-29T00:29:29.270-07:00</updated><title type='text'>October 28, 2004 - WinDev arrives</title><content type='html'>OK - Why WinDev, why not c# or Delphi, or Foxpro or dBase. I have been looking at a lot of possibilties. In fact, in the case of Delphi, I have used it in the past. So, why WinDev? I am looking for a &lt;strong&gt;development environment,&lt;/strong&gt; one tool from one vendor that will handle the whole development process. I have enough to do without juggling a bunch of products from a bunch of places. Up till now I have used Clarion as a somewhat flawed, but still more complete environment than any other under about $10,000. Plus, I had been using it for years and the updates didn't cost all that much.&lt;br /&gt;&lt;br /&gt;I have a Microsoft Universal subscription, thanks to their ISV program, I have an older version of Delphi, a current version of Clarion and a new copy of Alpha 5. All of them are missing big pieces of the development cycle, or some of them have pieces that are much more complex than necessary. I design software systems. I code when necessary and can do interface routines for hardware such as RFID readers and scanners and low level calls to the Windows API when I need to. But, we are twenty-five years into the PC revolution and the process of developing software should be to the point where the focus is on the overall design with coding done when necessary and not low level code tweaking for every feature.&lt;br /&gt;&lt;br /&gt;So after reviewing documentation for several systems, I decided that WinDev might come the closest to what I wanted. It took a little bit of time and trouble to find the best price and to actually get the product shipped -- but it arrived today and my rather public evaluation starts now. By the way, by ordering from a distributor in Great Britain, I saved about $150 over the price offered by the N American distributor -- and apparently also had less problem getting the package through homeland security as it was coming from Britain rather than directly from France.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8918052-109899798359833536?l=clcompare.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109899798359833536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8918052/posts/default/109899798359833536'/><link rel='alternate' type='text/html' href='http://clcompare.blogspot.com/2004/10/october-28-2004-windev-arrives.html' title='October 28, 2004 - WinDev arrives'/><author><name>D-Mont</name><uri>http://www.blogger.com/profile/11092283222792471065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://www.nahcottasoft.com/me.jpg'/></author></entry></feed>
