Re: SAVEAS excel! PB 6.5
You forgot to mention that the DataWindow object used by the Datastore needs to be a Grid DataWindow. I think this will also work in newer versions of PB but only for Excel!, not for Excel5! or Excel8!.
View ArticleRe: How can I search in Powerbuilder IDE for object comments?
I also offers global search and replace that will perform source control checkout as needed. It also has stored procedure search that searches stored procedure source code directly in the database.
View ArticleRe: EAServer 6.3.1 compatible with JDK 1.7[EBF 20852 6.3.1 ESD #6 Support...
Hi Chris, I started my server on JDk 1.6 and generated the Stubs & Skeletons through the IDL module for few of the components successfully, but I am getting the error in the server log file...
View ArticleRe: Changing dynamically the Picture in a PictureButton control
Try using relative path [Appdir]\Resource\newpicture.bmp in the PBRResource\newpicture.bmp
View ArticleRe: Using FirebirdSql.Data.FirebirdClient.dll with ADO.NET in PB 12.5 .NET
Hi Andreas, sure I added as a reference and it complies to .NET FW 4.0.It is: FirebirdSql.Data.FirebirdClient (3.1.1.0).I can see its methods... etc. But I am insecure because PB is offering in its...
View ArticleRe: How to connect to MS SQL Compact Edition?
I suspect you are correct about accessing CE - CE has a slightly (at least) different dialect of sql and does have the same level of relational support as the "regular" versions of sql server. I don't...
View ArticleRe: Changing dynamically the Picture in a PictureButton control
Thank you Chris. Excuse my poor english knowledge. The correct answer to my question is probably "Hard Core Reference". I use a PictureButton control, allways enabled, but the assigned picture to the...
View ArticlePB 12.5 Sort Missing Ascending/Descending checkbox
When calling sort() for my datawindow and passing in a Null String as an argument, the sort dialog window pops up. It displays the columns and a heading for Ascending. However, the checkbox for...
View ArticleQuestion About Apparent Known Save As Crash Issue With Infomaker 12.0
Apparently with Infomaker 12.0, if your report name is 41 characters or greater in length, attempting to perform a "Save as" against that report will result in Infomaker crashing. This issue is...
View ArticleRe: Changing dynamically the Picture in a PictureButton control
That is not a PB limitation AFAIK. You can set it to disabled initially or when you click on it. Some other events or processing should enable it back. You can not enable it back by clicking on it when...
View ArticleRe: PB 12.5 Sort Missing Ascending/Descending checkbox
I'm guessing you are using large fonts on your systems (125dpi).
View ArticleRe: Question About Apparent Known Save As Crash Issue With Infomaker 12.0
Yes, it has been fixed as in IM now prevents you from using more thatn 40 characters when typing in the name. 12.1 has the fix implemented.To download newer builds of IM, go to...
View ArticleRe: Changing dynamically the Picture in a PictureButton control
Hi Augusto, Many projects deploy their resources with the installation to a subdirectory. The picture name property then becomes 'res\welcome.png' For example: p_welcome.picturename =...
View ArticleRe: Changing dynamically the Picture in a PictureButton control
Hi Augusto; Neil is correct ... almost any object's property can be dynamically changed in PowerBuilder. Your design just needs to provide a mechanism to re-enable the button(s) when appropriate...
View ArticleRe: EAServer 6.3.1 compatible with JDK 1.7[EBF 20852 6.3.1 ESD #6 Support...
Hi Kunal, you can increase the PermSize in two different ways: - If you run EAS as a Service:Modify the "../EAServer6/config/winservice_xxx.ini" file.Look for the following lines:param00 =...
View ArticleRe: Synchronising databases
The easiest way to maintain uniqueness of locally created primary keys throughout an occasionally connected scenario is the GLOBAL AUTONICREMENT mechanism of SQL Anywhere. Every database has a unique...
View ArticleRe: XP PB11.5 Memory Allocation
I don't believe this to be the case.. as I could do something like this... String a,b,c,da = fill("x",80000000)b = fill("x",80000000)c = fill("x",80000000)d = fill("x",80000000) with no error, but the...
View ArticleRe: XP PB11.5 Memory Allocation
It's still directly related to amount of CONTIGUOUS memory available from windows. PB can safely allocate 4 blocks of 80M each because the system has that availble. But when PB tries to allocate a...
View ArticleRe: Using FirebirdSql.Data.FirebirdClient.dll with ADO.NET in PB 12.5 .NET
Hi again Juergen. After some reading I created a test database in firebird. As I mentioned in the other post for mysql I created a new profile, this time using Firebird's ADO.NET Provider. See the...
View Article