Datawindow does not display in build
We have a window with 10tabs.All tabs have different datawindows say tab1 has dw1, tab2 has dw2....tab10 has dw10. Now in the build(exe file), tab 10 displays dw2 when it should display dw10. This...
View ArticleRe: Problems Migrating from PowerBuilder 5 to 10.5, including PFC.
Sorry. I am migrating to 12.5 I am migrating to version 12.5 and beginning to correct the errors. I am not correcting the errors on version 5.0. I do not have version 5.0. Until now, my main problem is...
View ArticleRe: PB 12 Memory issue with huge arrays
Hi Patrick; Changing your code as follows should do the trick .... Double t_1[], t_2[] long ll_i SetNull (t_2)for ll_i = 1 to 50000000 t_1[ll_i] = 1 next t_1 = t_2 garbagecollect() HTHRegards...
View ArticleRe: Problems Migrating from PowerBuilder 5 to 10.5, including PFC.
Hi Luis; 1) Before any migration ... I would suggest using the PB 10.5 "Migration Assistant" utility to scan your PB 5 code. There might be issues in your PB 5 application that may need to be fixed...
View ArticleRe: Problems Migrating from PowerBuilder 5 to 10.5, including PFC.
I don't understand your step #3. Replacing the PFC should be just a matter of replacing the PF*.pbls and shouldn't involve doing anything with the PBT or PBW files. What change are you trying to...
View ArticleRe: Datawindow does not display in build
1. Are you building to a single .EXE file, or are you using dynamic libraries and producing .PBD files (pcode) or .DLL files (machine code)? If you don't use dynamic libraries, you'll have to use a...
View ArticleRe: Problems Migrating from PowerBuilder 5 to 10.5, including PFC.
Thank you for your answer. It helps me a lot. My step #3 means: I migrated my app version 5.0 to 12.5 . Until here, I know that I have changes to do.Later, I copied the newer PFC files (.PBLs)...
View ArticleRe: Datawindow does not display in build
Thanks Paul. It was an issue with the PB librares.
View ArticleRe: PB 12.5 Width.Autosize not working
Hi. Are you sure that dw_report.Object.Datawindow.Processing returns the right result? I ask because in datawindow syntax tool it is mentioned that only the describe syntax is working. So I would test...
View ArticleRe: PB 12.5 Width.Autosize not working
The window is definitely a grid datawindow, and the test using dot notation is definitely working. Yes, actually, the data is being copied in with RowsCopy(). I have moved the setting of the...
View ArticleRe: How to change BackColor of a treeview node
Thanks!I know is possible using a api call, but I don't know wich. tvdw is not useful in my case..
View ArticleRe: PB 12.5 Width.Autosize not working
I'm starting to think that a large part of the problem is that if a Width is set on a column in a grid, Width.Autosize will never make that column smaller, only larger (sort of like Autosize Height...
View ArticleRe: PB 12.1 Browser Not Appearing
The location and size of the browser window is stored in the pb.ini file. It should look something like this: [Browser]Window=211 149 1280 749Show Inherited=TRUEShow Legend=TRUE
View ArticleRe: Is Powerbuilder 11.5 compatible with SQL Server 2012?
Assuming you would use the same driver for the connection the only thing to check is if you made any use of SQL2008 or earlier features which have been deprecated in 2012 (I don't think there are any...
View ArticleRe: PB 12.1 Browser Not Appearing
Roland, that did the trick. I thought I had combed the PB.INI file well enough, but apparently not. Thanks for your help.
View ArticleRe: PB 12.5 Width.Autosize not working
Set them to size of 1 instead of 0. You can't really size based on the heading too well, there's no way to get the "correct" length that should be it's minimum. Size of 0 for a grid column makes it be...
View ArticleRe: PB 12.5 Width.Autosize not working
Yes that's true. Autosize resizes to increase only a column's size... Not to make it smaller. Andreas.
View ArticleRe: PB 12.5 Width.Autosize not working
When I set the widths to 1 it still re-orders the columns. And (as you agreed) it can truncate the column heading text, which is completely unacceptable to me. So I am giving up - I am going to use...
View ArticleRe: PB 12.5 Width.Autosize not working
Wouldn't you wish the Help would say that? But no ...
View ArticleRe: Datawindow BUG in Powerbuilder .NET (12.5.1 4953)
This appears to be fixed in 12.5.2, build 5006
View Article