Re: Excel process still running.
Dear Dykstra, Thanks for your answer, I have not used the following code. ioo_excel.activeworkbook.close() Now it's work fine.
View ArticleRe: PB 12.5 Database Painter does not work like PB 12.0
The stored procedures are only for Sybase ASE.
View ArticleRe: How to handle rowversion (timestamp) datatype of Microsoft Sql Server in PB?
rowversion (timestamp) of Microsoft Sql Server is a binary number and not a datetime; its storage size is 8 bytes.I think it will match with string or blob of PB.
View ArticleRe: How to handle rowversion (timestamp) datatype of Microsoft Sql Server in PB?
Varbinary maps to the blob PB data type.
View ArticleRe: PB 12.5 Database Painter does not work like PB 12.0
I only remember scripts needed to create the PB catalog tables. What do these procs do?
View ArticleRe: Cannot insert tabpage on control inherited from tab??
More or less what Russell is saying and: You can have a hierarchy of tab pages and a hierarchy of tab controls. Generic layer for standard properties etc and specific with the appropriate tab pages and...
View ArticleRe: Capture to PNG
Well, I guess you have the biggest stereo, but can you explain how it works ? Is it implemented in your STD framework ? We still have to support Windows XP so I'm not sure that PowerShell could apply...
View ArticleRe: PB 12.5 Database Painter does not work like PB 12.0
They help the DB painter build the treeview. If you look in the Server folder of an install image, you will see PBSYC.SQL and PBSYC2.SQL which contain the stored procedures. The catalog tables are...
View ArticleRe: PB 12.5 Database Painter does not work like PB 12.0
Cool thanks for the info. Interesting that ase is the only one that needs them.
View ArticleRe: PB 12.5 Database Painter does not work like PB 12.0
And that goes back a long way to PB1A and Sybase SQLServer 4.9.
View ArticleRe: InfoMaker 11.2 required as problem with InfoMaker 12.0 ?
It appears that INTOOLS.EXE is built using PB 11.2, so using a PSR built with IM 12 is asking for troubles. Downgrade IM to 11.2 or upgrade PB to 12.
View ArticlePlease update PB Documentation regarding WIN32 System Calls for x86/x64
Hi There,i fighting with around 1200 System Calls kernel32.dll, user32.dll, shell32.dll own C code which are called from PB 12.5 under 32Bit which should work in the 64Bit's World of PB15.What i...
View ArticleRe: How to handle rowversion (timestamp) datatype of Microsoft Sql Server in PB?
ok I called GetExpenseById stored proc using DECLARE-EXECUTE-FETCH-CLOSE and it worked. In PB I use a blob variable to store value of rowv column of the row retrieved. Then I called UpdateExpense...
View ArticleQuestion about WS Security in Powerbuilder 12.5 .NET
BackgroundAfter watching"SAP D&T Academy - How to Create a WCF Web Service in PowerBuilder"So far i have Created a web service in PowerBuilder 12.5 .NETAdded WS Security to the service,...
View ArticleRe: Cannot insert tabpage on control inherited from tab??
Without knowing exactly what you are tying to do, perhaps an alternative is to implement your parent class functionality as a service. This is definitely a more complex route and requires a more...
View ArticleRe: How to handle rowversion (timestamp) datatype of Microsoft Sql Server in PB?
Ok using SQL Profiler I trace the SQL statement submitted by PB to SQL Server. This is the SQL statement submitted by PB to SQL Server when it execute the first stored proc:execute GetExpenseById...
View ArticleRe: Please update PB Documentation regarding WIN32 System Calls for x86/x64
While I generally agree that the documentation related to accessing the windows API functions (or other DLL functions) needs much improvement, I also have to caution you that using the API requires...
View ArticleRe: Please update PB Documentation regarding WIN32 System Calls for x86/x64
In PB 10 and above you should be calling the W version: Function boolean SendMessageString(...) Library "user32.dll" Alias For "SendMessageW" or add ;Ansi: Function boolean SendMessageString(...)...
View ArticleRe: How to handle rowversion (timestamp) datatype of Microsoft Sql Server in PB?
I think you need to preallocate blob space for the retrieval. But before you go down that path, heed the other's advice. The datawindow already supports what you are trying to do and you REALLY NEED...
View Article