PowerBuilder Tips & Tricks

PowerBuilder Tips & Tricks

Save/Export Datawindow or Datastore To Text With Separtor In PowerBuilder

Save/Export Datawindow or Datastore To Text With Separtor In PowerBuilder Create function gf_saveasformattedtext(adw_dw(datawindow/datastore), as_filename (string), as_separator(string)) Good Luck!

DataWindow Column Highlighting Of The Current Row In PowerBuilder

DataWindow Column Highlighting Of The Current Row In PowerBuilder DataWindow Column highlighting Of The Current Row In PowerBuilderIn the datawindow painter, double-click on the column in question and click on the tab mark “Expressions”.Add this code to the background.color property In the rowfocuschanged event for the datawindow control use this example:currentrow is a event argument…

Get Error Message When Calling A Win API In PowerBuilder

Get Error Message When Calling A Win API In PowerBuilder External Function declaration PowerScript Example Good Luck!

PowerBuilder Connect PostgreSQL Using JDBC

PowerBuilder Connect PostgreSQL Using JDBC Step 1: Get driver JDBC Postgresql postgresql-X.X.X.jar from page : https://jdbc.postgresql.org/download.htmlStep 2: Set Class Path driver to environment variables or set class path to runtime of javaStep 3: Test ConnectStep 4: Copy jre current version of java to your pbapp runtime Find Projects On Github click here Good Luck!