Re: Error in Calling External Function
Hi Bruce, We use around 4 DLLs in this application. I have mentioned only 1 of them, whereas all the DLLs have this same issue.Yes, there is a dependency of a DLL over another DLL. But we have all the...
View ArticleRe: PowerBuilder terminated while clicking the database painter
Hi Pralhad; Is it the same DML command that keeps taking PB down? Also, can you tell us the version & build of: a) DBMS; b) O/S; c) PB and what DB Client you are using? Regards ... Chris
View ArticleRe: PB 11.5.1 How to get Retrieval arguments AFTER dw.Retrieve()
Use the datawindow evaluate function. string arg1arg1 = dw_1.describe("evaluate('arg1', 1)") You'll need to convert the data into the appropriate datatype, but since you created the arguments, you'll...
View ArticleRe: PB 12.5 webservice decimal symbol
Hi Eric; In our case ... the web service should always return "250000" in a Decimal {2} defined field! Regards ... Chris
View ArticleRe: PB 11.5.1 How to get Retrieval arguments AFTER dw.Retrieve()
Works perfectly, thanks!
View ArticleRe: Powerbuilder and SSO
FYI ... Its a lot simpler in MS's SQL Server and SAP's ASE DBMS as I just need to connect with a known DB user id + pw or use Windows authentication from an Application server - then pass the real...
View ArticleRe: Error in Calling External Function
You need to see that the Exports of the DLL still match what they're supposed to be. http://www.dependencywalker.com/ This program allows you to see the exports of a DLL file. If you aren't allowed to...
View ArticleRe: PowerBuilder 15 Beta - Windows 8/8.1 testing?
Hello Matt, i will try with Windows 8 64 Bit running within an VM (VMWare), just installing the PB15 Beta. Kind regard Marco
View ArticleRe: Help with DW and Excel File
Hi, I'm trying set a new syntax in the pipeline, but PB show me a error message (Syntax error) l_pipe = CREATE pipeline l_pipe.DataObject = "p_prueba" messagebox('',l_pipe.syntax) l_pipe.syntax =...
View ArticleRe: PowerBuilder 15 Beta - Windows 8/8.1 testing?
If I were able to actually get into the beta, I could test it out on Windows 8.1, but there's that whole S-ID thing that nobody wants to talk about.
View ArticleRe: PB15 beta : regression in saveas(xlsx!)
Philip, I have reproduced this, not sure why I wasn't able to earlier but it is now reported to engineering as CR 753712 with the old CR referenced. Thanks for reporting this bug.Pat
View ArticleRe: PowerBuilder terminated while clicking the database painter
So, to be clear, in the database painter, you executed 100 SELECT statements at once, so that all the results sets would load up into the painter, and before it finished, it blew up. Does this sound...
View ArticleRe: PowerBuilder terminated while clicking the database painter
Hi Pralhad, What Terry said and to paraphrase a reply Paul Horan made on another post "Don't do that". I can't speak for everyone but I use the DB painter as a quick and dirty data lookup or result set...
View ArticlePB 15 number conversion bug
int li_basen, li_indexulong ul_valueli_basen= 36li_index = 6ul_value = li_basen ^ li_index PB 15 beta: ul_value = 2147483648 (incorrect) should be: 2176782336 (previous versions return this)
View ArticleRe: PB 15 number conversion bug
int li_basen, li_index when changed to ulong from int:ulong li_basen, li_index then it returns the correct number.
View ArticlePB 15 window.resize() crashes when running application
during the open process a window is resized: aw_win.move( li_Xpos, li_Ypos) crashes PB 15 beta: 32 bit PB15; win 8.1 64 bitProblem signature: Problem Event Name: APPCRASH Application Name:...
View ArticleRe: PowerBuilder 15 Beta - Windows 8/8.1 testing?
Hi Allen, we are/were a former Sybase Customer. Our Sybase contract has been silently converted bythe SAP in May 2013. Silently meant, that our company did not get anyinformation of the conversion, so...
View ArticleRe: PowerBuilder 15 Beta - Windows 8/8.1 testing?
Hi Matt, The Windows 8 64 Bit VM did not reboot, after installation of the PB Beta 15 :-( . The Reboot was done but the reboot hang screen says “Please wait, changes are applied” (*) for an hour....
View ArticleRe: PB 15 window.resize() crashes when running application
See PB 15 beta crashes on window resiz and let us know if this is the same issue.
View ArticleRe: PB 15 window.resize() crashes when running application
Yes, it is the same issue.The first time through it seemed to be the move event, then when i went to reproduce it i found that is was actually the resize event. I didn't update the original post...
View Article