Re: How to use Team foundation Server for Powerbuilder version control
As long as you don't have any duplicate objects, same folder will work.
View ArticleRe: Release memory after call to .NET COM object via OLE
For ll_index = 1 to 100 lole_data = iole_wcf_client.tcp_d_maint_client_store_data_ret(FALSE)Next As you can see very simple. It looks like each loop the memory jumps up almost as if a new OLEObject is...
View ArticleRe: release date of powerbuilder 15
July 2014:Where is PB 15? How loooooooooooooooooooooooooooooooooooong is the wait?
View ArticleRe: Signing .NET assemblies with reference PB assemblies
OK, apparently, it is a problematic error message.I kept getting the message that the Pb assembly does not have a strong name, but it went away, when I signed it as well. Then, the main PB.NET assembly...
View ArticleRe: Signing .NET assemblies with reference PB assemblies
Maybe SAP should change the message to "first sign all your referenced assemblies" or something...The error message about the strong name comes from Windows. Not sure how much control SAP has over that.
View ArticleRe: Release memory after call to .NET COM object via OLE
Also, don't forget to dispose your stream reader... d_maint_client_store_entity[] clients; string assemblyFile = (new...
View ArticleAny news about Powerbuilder 15 or future roadmap from July-2014?
Does anybody know some news about Powerbuilder 15 or future roadmap fom July-2014?
View ArticleRe: Debugger stopped working in PB.NET
Hi Arcady, Yes I ran across the same problem some time ago. I don't know how it got fixed but I don't have the problem now. I can tell you I run PB on a separate VM from VS and I'm running PB 12.5.2. I...
View ArticleRe: Has SAP has changed the way licenses are issued?
Sounds like the SAP sales person was either misinformed or there miscommunication or some kind of misunderstanding on my clients part! I have straightened them out now though and they are "good to go"....
View ArticleRe: release date of powerbuilder 15
There are some things they seem to be infinite. The universeThe trial period of WinRARThe waiting period of Powerbuilder 15
View ArticleRe: Release memory after call to .NET COM object via OLE
How would I destroy lole_data? Also, are you saying the same lole_data isn't used each time in the loop and a new one is created, wouldn't the old one be marked for garbage collection at least? There...
View ArticleRe: Is it possible to use PB 12.5 assemblies in PB 12.5 classic
I was actually talking about using a PB assembly built in PB.NET, not a .NET assembly.But it appears that I am having serious trouble using PB assembly in anything other than a WPF app.I opened a...
View ArticleRe: f_init_global function without PFC
to be more specific,I need to allow the referenced PB assembly to use global variables from the calling .NET assembly.I tryed to use global structure but it does not get instantiated in the PB...
View ArticleRe: How to use Team foundation Server for Powerbuilder version control
In your target file you need to update the LibList pbls to reflect the new paths. Example "SUPPLIER\\supplier.pbl" (assuming you put the supplier.pbl in a folder called 'SUPPLIER'. Don't bother...
View ArticleHow to copy transaction object
Suppose I have transaction object mytrans in pb, and it is already connected to server. Then I want to create a new instance of transaction object, but want to get the same connection info from...
View ArticleRe: How to copy transaction object
You mean something like this: blob_sqlca = create transaction ls_user= sqlca.logidls_psw= sqlca.logpassls_domain=sqlca.domain_idblob_sqlca.DBMS= SQLCA.DBMSblob_sqlca.Database= SQLCA.Database...
View ArticleRe: How to copy transaction object
how to implement it? Umm - you just copy the attributes (ivars) from one to the other. Of course, you could create a function/method to do that (since PB classic does not support copy constructors)....
View ArticleRe: How to copy transaction object
Hi Kent; Matt's suggestion and example works - but, its the hard way. Instead, use the GetTrans ( ) method as another alternative. For example: transaction emp_TransObjemp_TransObj = CREATE...
View ArticleRe: How to copy transaction object
Thanks, Chris. but for my case, there is no datawindow instance. I just want a new instance of transaction to run a SP.
View Article