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 2019 R3. Most steps/examples will be identical with any version going back to 9. Before we go much further we need to think about…
- .ics
- .NET
- Active Directory
- C#
- Citrix
- COM
- Connection string
- Dashboard
- datawindow
- debug
- disaster prepardness
- ETL
- EVENTCREATE
- Facsys
- frogs
- games
- MDI
- mySQL
- ODBC
- OLEDB
- Outlook
- parenting
- PB.INI
- pfc
- Powerbuilder
- Powerbuilder OLE
- Powerbuilder Tutorial
- programming
- regasm
- REPORTEVENT
- SCOPE_IDENTITY
- source control
- SQL Anywhere
- SQL Native Client
- SQL Server
- TWAIN
- Uniface
- Visual Basic
- web service
- Windows API
- Windows Event Log
- Windows settings
100 Days of PowerBuilder – Tutorial – Day 9 – Window Methods
1 Comment on 100 Days of PowerBuilder – Tutorial – Day 9 – Window Methods »
PowerBuilder Tables Script
Here is a script to generate the PowerBuilder ‘cat’ tables for SQL Server (pbcatcol, pbcatedt, pbcatfmt, pbcattbl, pbcatvld). Depending upon the permissions of the user who is connecting, these may not be created automatically from PB. Modify to reflect the database user as appropriate (dbo in this script). Supposedly this is available from the installation…
100 Days of PowerBuilder – Tutorial – Day 8 – Adding a Menu
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 2019 R3. Most steps/examples will be identical with any version going back to 9. Let’s take a look at menus. We will create a…
1 Comment on 100 Days of PowerBuilder – Tutorial – Day 8 – Adding a Menu »
100 Days of PowerBuilder – Tutorial – Day 7 – Opening a Window
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 2019 R3. Most steps/examples will be identical with any version going back to 9. Although we have already opened the main window for our…
1 Comment on 100 Days of PowerBuilder – Tutorial – Day 7 – Opening a Window »
100 Days of PowerBuilder – Tutorial – Day 6 – Adding Controls to a Form
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 2019 R3. Most steps/examples will be identical with any version going back to 9. Lets add some additional controls to our main form and…
Comment on 100 Days of PowerBuilder – Tutorial – Day 6 – Adding Controls to a Form »
100 Days of PowerBuilder – Tutorial- Day 5 – Building up the Application Structure
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 2019 R3. The same steps would be pretty close with any version going back to 9. So lets get back to work on our…
Comment on 100 Days of PowerBuilder – Tutorial- Day 5 – Building up the Application Structure »
PowerBuilder – Back Tab to Last Field in DataWindow
An annoyance in a PB window with a datawindow control on it is if you back tab to the dw, your cursor is positioned to the first field and not the last field. The following technique can eliminate that and make your application a bit more user friendly. In the Getfocus event of the datawindow:…
Comment on PowerBuilder – Back Tab to Last Field in DataWindow »
PowerBuilder – Getting the Display Value from a Drop Down DataWindow
This is very basic functionality but easily forgotten. Say you have a datawindow built from the ‘part’ table and a column for partType is a DDDW. You want the description of the partType code (which is displayed in the row showing the parts). To do this you use the evaluate method with the describe method…
Comment on PowerBuilder – Getting the Display Value from a Drop Down DataWindow »
100 Days of PowerBuilder – Tutorial – Day 4: A Look at the IDE
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 2019 R3. The same steps would be pretty close with any version going back to 9. Mastering the PowerBuilder Integrated Development Environment (IDE) is…
1 Comment on 100 Days of PowerBuilder – Tutorial – Day 4: A Look at the IDE »
100 Days of PowerBuilder – Tutorial – Day 3: Window Properties
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 2019 R3. The same steps would be pretty close with any version going back to 9. Continuing with the window we created on Day…
Comment on 100 Days of PowerBuilder – Tutorial – Day 3: Window Properties »