I have patched “fastfuncs” to provide current line number in stack trace. You can find precompiled dll for all versions (at least those available for me) in attachments. Attachments All precompiled versions of fastfuncs
Tag: powerbuilder
EmbeddingPerl project
This project was started about 4 years ago from a hack and today it is time to put it out of the box! This is PBNI extension for Powerbuilder(classic) that embed a Perl interpreter which is able to manipulate Powerbuilder objects and…
showing executable console
Did you ever try to write to the standard output using STDOUT but never seen your output in the console? This is a little known thing about PE executable on windows that were compiled to be GUI. The PE header…
My Datawindow DebugMachine v2.4
Long time I did not post here! The datawindow debug machine has changed again… Autocompletion list (CTRL+SPACE in console view) a bug fixe in list items (some where not visible at the end) added pictures GetFullState / SetFullState the complete…
My Datawindow DebugMachine v2.3 (updated)
The datawindow swiss knife has new features ! Hey, lot of time that I haven’t posted anything there, Okay it is time to release the next version of these tools with this new key features : data buffers spy modified…
Powerbuilder .DBG files (using /PBDEBUG)
Did you already try to produce a .dbg file by running your powerbuilder application with the /DEBUG or /PBDEBUG parameter ? It is a trace of each call and executed line, so it could help to find where an application…
My Datawindow DebugMachine
This is a tool that helps to understand a lot of situation with datawindow. Let’s see in action: (c) 2011 – Nicolas Sébastien Pierre Olivier GEORGES This code is under the Artistic license. Archive files (for Powerbuilder 10.5) : dwdebugmachine.pbw…
Powerbuilder and regular expression
Regex will help you in text processing, Definition In computing, a regular expression, also referred to as regex or regexp, provides a concise and flexible means for matching strings of text, such as particular characters, words, or patterns of characters.…
Builins functions history between Powerbuilder 10.0 to 12.5
Output : Between 100 and 105: + public function byte(any v) return byte + public function getbyte(blob b,unsignedlong o,ref byte v) return integer + public function setbyte(ref blob b,unsignedlong o,byte v) return integer Between 105 and 110: – public function…