Recently when I try to open Xcelsius 2008, I receive an error:
Error Title: Xcelsius.exe - Entry Point Not Found
Detail: The procedure entry point ?LevelDiffToFirst@CTreeBtnCtrl@@QAEHPAU_TREEITEM@@@Z could not be located in the dynamic link library TreeBtnExtDll.dll.
I have tried to uninstall...
I am pretty convinced PowerBuilder's built in Date(<string>) function just doesn't know how to handle the dd-Mmm-yyyy format. When I manually change my registry to dd-Mmm-yyyy, after the following line of code:
id_week1 = Date(ls_week1)
the variable contents are:
ls_week1 = "06-Jun-2009"...
My Registry Edit is successful. Before my application starts, the sShortDate setting is "M/d/yy". At runtime I verified the change to "dd-Mmm-yyyy" and then back to "M/d/yy" after processing the string/date conversions.
Something interesting to note:
When I change my input data to the format...
Adding the leading zero to the string solved the "null" date problem.
However, all my years are still showing up as "2020."
After execution of the following:
id_week1 = Date(ls_week1)
id_week2 = Date(ls_week2)
id_week3 = Date(ls_week3)
id_week4 = Date(ls_week4)
id_week5 = Date(ls_week5)
The...
Thank you for your responses. I believe I will have to use the solution that suggests parsing the string and creating the function to return the month. When I try ls_week1 = String(id_week1, "mm/dd/yyyy"), my input of 6-Jun-2009 displays as 01/01/1900.
I am importing a file into a datawindow, and my first row contains column headings. Some of these headings are dates and I need to change the format before using the dates as the text of datawindow column headings. I have the following code, but the date is not displaying correctly.
In my test...
I am curious why this happens as well. I have implemented my sorts and thus am also "moving on," but would love to see this handled better in future PB versions.
I have a menu item that when clicked, it will filter the datawindow (using a hard-coded value at this point). If the menu item is clicked again, the filter will be cleared.
The problem is, when the menu item is clicked again (to once again filter the data), the rows are now in a different order...
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.