Here's my small contribution to this very helpful PowerBuilder site:
a simple function to find the last day of month of any given date:
f_get_mo_last_day ( date arg_date ) returns date
date incr_date
integer curr_mo
curr_mo = month(arg_date)
incr_date = arg_date
do while curr_mo =...
What is the cleanest way to find out if a file (such as a pdf) has already been opened by another program or user?
When I try to open a PDF in my PB application (using adobePDF OLE control) I get an error when PDF file is being viewed by another user already.
Is there a function to check for...
I've finally discovered the benefits of using the MDI frame/sheet windows. But I notice one annoying characteristic. When you open cascaded window sheets it continues to increment the x/y of the upper left corner of the sheets even after you've closed all of them to start over. (open and close 3...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.