Powerbuilder 9.0 Fix
: A specialized paper/presentation detailing how PB 9.0 introduced enhanced XML support , including defining XML templates and generating XSL-FO. Modern Resources for Legacy Maintenance
long ll_row, ll_new_y string ls_word For ll_row = 1 to dw_words.RowCount() ll_new_y = dw_words.GetItemNumber(ll_row, "y_position") + 10 dw_words.SetItem(ll_row, "y_position", ll_new_y) // Check if word reached bottom (Y > 200) If ll_new_y > 200 Then st_status.Text = "Missed! Game Over" Timer(0, this) // Stop timer sle_input.Enabled = FALSE Return End If powerbuilder 9.0
PowerBuilder 9.0 introduced the . This allowed developers to take the same DataWindow they used for a desktop app and render it as HTML for a web browser. The logic remained on the server (in EAServer), and the HTML was streamed to the client. : A specialized paper/presentation detailing how PB 9
: This is often considered the "bible" for PowerBuilder 9.0. It covers OrcaScript for command-line deployment, advanced coding techniques, and third-party Source Code Control (SCC) tools. This allowed developers to take the same DataWindow
Performance was always a critique of interpreted PB code. Version 9.0 introduced PBNI, allowing developers to write native C++ libraries that could be called directly from PowerBuilder. This was a game-changer for: