Re: PB/PBSSC-proxy setup failure...any help accepted
That's because TortoiseSCV is not a "full" subversion client. It's an extension for Windows Explorer to allow it to interact with Subversion. You still need a 'regular' subversion client for PBSCC to...
View ArticleRe: PB 12.5 Webform - Send PDF as attachment
I know this is an older post, but after searching around in vain, I thought I'd try here. I'm trying to make sure of the MapVirtualPath function in our webservice we are created in PB Classic (12.5)....
View ArticleRe: How do you upgrade the Powerbuilder Virtual Machine on EAServer?
I put the folder names back the way they were and I ran the setup program for the 12.5.2 EBF. The setup program recognized that I was trying to install the PBVM on a machine running EAServer as opposed...
View ArticleRe: How do you upgrade the Powerbuilder Virtual Machine on EAServer?
I used filemon to check and EAServer is using the 12.5 PB Virtual Machine (which is what I want). It is just the PB Heap Dump summary that is using PBVM 11.5 for some reason. I tried changing the...
View ArticleRe: How do you upgrade the Powerbuilder Virtual Machine on EAServer?
BTW: What version of EAS are you using PB 12.5 with - EAS 6.3?
View ArticleRe: Web Service FileSystem operation
Chris, I've seen many references on the forums about PB's mapVirtualPath, but can't find anything in PB itself (help, etc.) What do I need to include in my project to reference this method?...
View ArticleRe: Web Service FileSystem operation
Hi Jim, It is a webform method. Look in Chapter 7 "Functions for .NET Web Forms" in the PB help files. hth,Mark
View ArticlePB Classic webservice accessing folders outside of the "session" folder
We have a desktop application written in PB Classic 12.5. We are attempting to add a new web service to allow another system to send us some information (which we currently do by running the PB app in...
View ArticleRe: PB Classic webservice accessing folders outside of the "session" folder
Hi Jim; Correct ... the MapVirtualPath ( ) method gives you the "virtual" folder location of the Web Service / Web Forms application code that is executing under IIs. Regards ... Chris
View ArticleRe: Web Service FileSystem operation
Hi Jim; You would use it something like this ... #if defined PBWEBSERVICE then is_virtual_path = "JIM.txt" is_virtual_path = MapVirtualPath (" is_virtual_path") #end if Regards ... Chris
View ArticleRe: Web Service FileSystem operation
Ok, turns out this isn't really what I was looking for, so have started a new thread. Thanks!
View ArticlePowerBuilder 11.2 COM saveAs PDF issue (Windows 7)
Hi, I have a COM component build by PowerBuilder 11.2. When I tried to save as PDF, its returning -1 and create 0 byte PDF. But the same code working fine on the classic application and generates PDF...
View ArticleRe: PB/PBSSC-proxy setup failure...any help accepted
Bruce Armstrong - Do I have to uninstall TortoiseSVN to use the new client? Can you outline a installation sequence that I can use.
View ArticleRe: PB/PBSSC-proxy setup failure...any help accepted
You don't have to uninstall TortoiseSVN. It's just a different client. You just need to get the Subversion command line executable installed so that PBSCC-Proxy can use it.
View ArticleRe: Powerbuilder application crashes after upgrade to 12.5.2 (build 5006)
No, we don't use PFC in our application. regardsAntony
View ArticleRe: Sort data at client side to improve performance?
You would have to try it both ways and judge for yourself to be sure. There are a lot of variables like type of database, version of PowerBuilder, size of the resultset are some of them. Before and...
View ArticleRe: Sort data at client side to improve performance?
okay. thanks. If I do something like:datetime stime, etime select getdate() into :stime...retrieve data with datawindowselect getdate() into:etimethen how to calculate the elapsed time?
View ArticleRe: Sort data at client side to improve performance?
replace the second select getdate with: select datediff(ms,:stime, getdate()) into :li_msecs
View ArticleRe: How to collapse other expanded item
In the datawindows Expanding event, try calling the datawindows CollapseAll method.
View ArticleRe: How to collapse other expanded item
Maybe you can set an instance variable of the currently expanded item. If a user expands another item, collapse the previously expanded item(from the instance variable) and set the instance variable...
View Article