100 Days of PowerBuilder – Day 5 – Building up the Application Structure

Posted on April 3, 2012 at 4:12 pm in

This is part of my project ‘100 Days of PowerBuilder’ which is a series of discussions focused on basic PowerBuilder development. Note: This article is written with examples created in PowerBuilder version 12.5. Most steps/examples will be identical with any version going back to 9. So lets get back to work on our sample application…

100 Days of PowerBuilder – Day 5 – Building up the Application Structure - the full story »

Comment on 100 Days of PowerBuilder – Day 5 – Building up the Application Structure »

PowerBuilder – SQL Native Client and DisableBind

Posted on March 19, 2012 at 5:51 pm in

Okay so you are upgrading your application, perhaps using the latest version of PowerBuilder (12.5) and SQL Server (2008 R2), and decide to use the SQL Native Client (SNC) to take advantage of new features in the database. Now like many organizations which use Microsoft SQL Server, you may have gone to OLE DB in…

PowerBuilder – SQL Native Client and DisableBind - the full story »

Something to do – Today

Posted on March 5, 2012 at 5:31 pm in

A tornado missed my house by about 1000 feet this past Saturday at about 2:30am. Thankfully there was almost no damage done to the house I live in, indeed, even though several houses in my neighborhood were extensively damanged, there were no injuries. This leads me to the purpose of this topic: prepare an emergency…

Something to do – Today - the full story »

100 Days of Powerbuilder – Day 4: A Look at the IDE

Posted on February 29, 2012 at 5:58 pm in

This is part of my project ‘100 Days of PowerBuilder’ which is a series of discussions focused on basic PowerBuilder development. Note: This article is written with examples created in PowerBuilder version 12.5. Most steps/examples will be identical with any version going back to 9. Mastering the PowerBuilder Integrated Development Environment (IDE) is the key…

100 Days of Powerbuilder – Day 4: A Look at the IDE - the full story »

Comment on 100 Days of Powerbuilder – Day 4: A Look at the IDE »

PowerBuilder – Fontheight method in Expressions

Posted on February 29, 2012 at 2:29 am in

An enhancement was put into PB12.1 dealing with determining the height of a datawindow column based on its font setting. It’s called Fontheight and takes a string parameter. Unfortunately there does not appear to be any documentation on it in the PB help files (I’m looking in PB12.5). You can see a reference to it…

PowerBuilder – Fontheight method in Expressions - the full story »

Coding for Amateurs

Posted on February 27, 2012 at 5:02 pm in

Bumped into this code the other day. Hmmmm… //b_paint_good is a boolean set somewhere else IF NOT b_paint_good THEN //do not do something here [code follows] ELSE // do something here [more code follows] END IF Now what’s the point of this? Trying to raise the defect count on your software (in the immortal words…

Coding for Amateurs - the full story »

100 Days of Powerbuilder – Day 3: Window Properties

Posted on February 23, 2012 at 5:47 pm in

This is part of my project ‘100 Days of PowerBuilder’ which is a series of discussions focused on basic PowerBuilder development. Note: This article is written with examples created in PowerBuilder version 12.5. The most steps would be identical with any version going back to 9. Continuing with the window we created on Day 2…

100 Days of Powerbuilder – Day 3: Window Properties - the full story »

Comment on 100 Days of Powerbuilder – Day 3: Window Properties »

Windows Installer Error – “Installshield error 1500”

Posted on February 20, 2012 at 8:02 am in

So I finally upgraded my laptop to Windows 7 from (shudder) Vista. Not a big deal, just pop in a new hard drive (four times larger than old one). Boot from the install CD and go to town. After the os install, now all the other Microsoft products (Visual Studio, SQL Server, Service Packs, etc.).…

Windows Installer Error – “Installshield error 1500” - the full story »

100 Days of PowerBuilder – Day 2: Creating a Main Application Window

Posted on February 14, 2012 at 6:17 pm in

This is part of my project ‘100 Days of PowerBuilder’ which is a series of discussions focused on basic PowerBuilder development. Note: This article is written with examples created in PowerBuilder version 12.5. The most steps would be identical with any version going back to 9. For the purposes of this exercise I will be…

100 Days of PowerBuilder – Day 2: Creating a Main Application Window - the full story »

PowerBuilder – Finding special folders – FDCC Compliance

Posted on February 14, 2012 at 6:03 pm in

Here is a link to an article by Bruce Armstrong (since broken) relating to new functionality in PB11.5.  The article specifically deals with FDCC (Federal Desktop Core Configuration)  Compliance in PB apps and specifically the SHGetFolderPath Windows API function.  Although this information has been available for awhile, it’s worth noting again. Usage Notes: function ulong SHGetFolderPath(ulong hwndOwner,…

PowerBuilder – Finding special folders – FDCC Compliance - the full story »

Top