Oct 17
Its fun times at PC Soft again with another stack of amazing new features for WinDev, WebDev and WinDev Mobile.
We will have to wait for the English release date for the products, but I am hoping that they will be much quicker than 12.
I will be working through the French Découvrez les 501 NOUVEAUTÉS and let you know the new features that are in this version.
If you have never herd of or tried WinDev then you are missing out on an incredible development environment.
I used to do all my development in Visual Studio.NET and was getting very frustrated with the buggy IDE and the amount of code you have to do in .NET just to perform the simplest of tasks.
With WinDev I have been able to build professional looking websites 70% quicker.
I just love coding in WinDev and WebDev, it’s brought back the fun in coding.
Sep 05
Social Networks like Twitter are great fun when you are in the mood to create some little apps.
Here’s a simple example code to get some of my friends tweets. All I did was look through the Twitter API and picked out a simple REST method to get some XML back as a test.
Reading XML in WinDev is very simple using a few methods. I recommend you run the URL in a browser and return back some XML data you can then use to play with. That way you are not making lots of calls to the Twitter API (which is limited by design anyway).
sLine is string
iPos is int
sUrl is string = "http://www.twitter.com/statuses/friends/funcoder.xml"
ListDeleteAll(LIST_Results)
IF HTTPRequest(sUrl) THEN
sResult is string = HTTPGetResult()
XMLDocument("XMLDoc",sResult)
XMLFind("XMLDoc","user",XMLChildItem)
WHILE XMLFound("XMLDoc")
IF XMLFind("XMLDoc","created_at", XMLElement) THEN
sLine = XMLData("XMLDoc")
IF XMLFind("XMLDoc","text",XMLElement) THEN
sLine += " | " + XMLData("XMLDoc")
IF sLine <> "" THEN
ListAdd(LIST_Results,sLine)
END
END
END
XMLFind("XMLDoc","user",XMLContinue)
END
XMLCancelSearch("XMLDoc")
XMLClose("XMLDoc")
END
You can then move on to some further experiments and combine different social networks to create some unique mashups.
Aug 31
Thanks to PC Soft we made great use of our WinDev beach bag.

Recent Comments