Dec() does not work when using different language OS
Dec() does not work when using different language OS: Using PB 12.5, OS English and French, DBParm: DecimalSeperator = '.' Database Driver is automatically able to understand the decimal separator and...
View ArticleError starting Powerbuilder 12.5
where i start powerbuider 12.5 i get that error "c:\windows\system32\dhcpsvc6.dll"
View ArticleRe: Error starting Powerbuilder 12.5
It sounds like you have a system configuration issue. That's not a PowerBuilder file. It's a Windows system file used to support IPv6.
View ArticleRe: Dec() does not work when using different language OS
Use the Replace function to replace period with comma. If the string already has a comma, the Replace will just do nothing.
View ArticleRe: Error starting Powerbuilder 12.5
Hi, if you migrate from Pb9 to Pb12.5 you now authenticate Powerbuilder using SySam. I encountered problems if IPV6 protocol was enabled. Try disable IPV6 in you network configuration.Good luck
View ArticleRe: Printing bar codes with Powerbuilder 7
Don't run regsvr32 just run the reg file I provided. Then add the dll to the gac by running this line at a command prompt... "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\NETFX 4.0...
View ArticleRe: Problem using dll in PB 11.5 webservice
Bruce Thanks a lot for your response. Changing the user identity of the app pool in the webserver resolved the problem. But as always new questions emerge: Is there any tool for automating the...
View ArticleRe: Consuming PB .NET datawindow in PB Classic
Thank you, that's exactly what I needed. I was able to consume my PB .NET datawindow with my custom WPF control in PB Classic!
View ArticleRe: Stored Procedure Still Running
Personally, I would both trace the connection and fire up the sql server Profiler tool to see what is going on. Under normal circumstances, your application code should wait for the procedure...
View ArticleRe: Web Forms with IE 10
No is not possible, the default.aspx file that is generated for web forms contains <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.0)" /> For compatibility mode is necessary this:...
View ArticleRe: Stored Procedure Still Running
I like this idea but any reasn why PB is not waiting for the stored procedure to actaully finish like a regular report run thru a dataindow ?
View ArticleRe: Stored Procedure Still Running
Thanks for the suggestion. Yes, Im positive its running. I'm able to watch the process loop thru rows in the main procedure, execute the calling procedur and insert rows using SP_WHO. Its very easy to...
View ArticleRe: Problem using dll in PB 11.5 webservice
The only time I had to write an installer for a web service I just used the setup project in Visual Studio. I had to tweak it a bit because without a patch it didn't (at the time) support installing a...
View ArticleRe: Consuming PB .NET datawindow in PB Classic
Cool. I couldn't perhaps interest you in writing an article for the PowerBuilder Developer's Journal explaining how you did it? I'm sure a number of other folks might be interested. Along those same...
View ArticleAnyone using the Websphere plug-in with Pb 12.5?
Hi All Is anyone using the Websphere plug-in with PB 12.5? We have a business opportunity that requires an n-tier deployment with Websphere. The PB application is already developed as Fat client and...
View ArticleRe: PB15 Beta Program
Bruce Armstrong wrote: >>I have no idea on his plan for the framework at this time. If you have no idea what the plan is for the framework, why do you feel obliged to denigrate it in a post?...
View ArticlePFC 12.5 Classic Released
I have marked this release as 'beta', so please give any feedback you might have on it so we can make it even better! Please note, an enhancement was added to allow configuration files to be stored as...
View ArticleRe: Problem using dll in PB 11.5 webservice
That's correct. The global variables are only global within the context of a single instance of the service. What you're thinking of is a static variable, something that would be shared across all...
View ArticleRe: Anyone using the Websphere plug-in with Pb 12.5?
Thanks Bruce ... I think that supports my analysis... "The most recent release of that product (version 1.1 released in Sept of 2008) is only available for the Windows platform" 5 years ago !????I...
View ArticleRe: Problem using dll in PB 11.5 webservice
Hi Ruben; There are no global variables in a WS ... even though you reference things like SQLCA. Instead, the generated code really treats these like instance variables and they are cleaned-up at the...
View Article