Re: PowerBuilder7 and MS Word 2010
You haven't given us much to go on. Best you're likely to get are shots in the dark, and suggestions on how to collect more information. If I didn't want to mess with changes in code, my first...
View ArticleRe: Can't install PB 12.5 Eval
Take a look at this thread. I had problems too installing 12.5.2:http://scn.sap.com/thread/3450304
View ArticleRe: Can't install PB 12.5 Eval
Installing in safe mode seems to have worked OK. It was suggested by Beverly Duquette in the thread Terry Dykstra pointed me to.
View ArticleProblem using dot-notation in argument to my function
I am using Powerbuilder 12.5. The problem is that I send null into a function but inside the function, the parameter variable contains a number like 12 or 16. This problem shows up when all 3 of these...
View ArticleRe: Problem using dot-notation in argument to my function
IIRC, dot notation returns an any value. So PB is trying to do an implicit cast of a null any value to a long any value. But by definition null has no datatype so PB can't figure out the casting. So...
View ArticleRe: PowerBuilder7 and MS Word 2010
Do all computers have the same version of Word? Get the actual numbers fro Help -> Additional Version and Copyright Information. Wheeley
View ArticleRe: Problem using dot-notation in argument to my function
Hello Christine. I think Chris is right about the Any. If there is a bug, it's in the compiler. We were always told that when the compiler got to "Object." it stopped looking at the statement, leaving...
View ArticleRe: PBONFatalError Variable for EAServer
It appears to be an environment variable. The documentation doesn't say if a EAServer restart is required after changing it. SyBooks Online
View ArticleRe: PBONFatalError Variable for EAServer
Hi Roland; You are correct ... the Environment variable would be (for example): PBOnFatalError=restart You should do a "RESTART" from Sybase Cantral (EAS Console) after setting this.so that the...
View ArticleRe: PB COM registration issue on Windows 7 machine
Hi Matt, Thanks for your responses. I have copied all the supporting dll's then registered the COM component. That worked. Thanks,Senthil
View ArticleRe: How to check if a service is running?
This function will do the trick /*Syntax : of_is_process_runningDescription : Check if a process is running on a server.Arguments : as_process => Process to check e.g. 'notepad.exe'. as_server...
View ArticlePowerbuilder on Windows 7 stopped running
I've got a customer with a Powerbuilder system designed for a single user, no network, just a single connection. They used to be running SQL Anywhere 7, but they just moved to a new Windows 7 PC and...
View ArticleRe: Powerbuilder on Windows 7 stopped running
Hi Gabriel; Unfortunately, Sybase (and now SAP) have done away with the free "stand-alone" version of SA that we could deploy from the normal PB installation into production for just cases like this...
View ArticleRe: PBONFatalError Variable for EAServer
Yes, the documentation says it's an environment variable. How do you set an environment variable when EAServer is running on a Windows server as a service? Do you do it by right-clicking on "My...
View ArticleRe: PBONFatalError Variable for EAServer
Windows 7: Right-Click on "Computer" icon on desktop or Start menu.Choose Properties.Click "Advanced system settings" link on the left.Click the "Environment Variables" button.Click the New button...
View ArticleRe: PBONFatalError Variable for EAServer
Hi Mark; Yes, either ... 1) MyComuter => Properties => Advanced System Settings => Environment Variables (make sure you set the PBOnFatal as a "System Variable") 2) Yes, you can add a SET...
View ArticleRe: Problem using dot-notation in argument to my function
Thanks, everyone, for the help. I have found that either casting to a LONG or using GetItemNumber() solves my problem. And even better than that, I have a reason WHY this was happening. I have a course...
View ArticleRe: PBDOM : Exporting to XML file gives a single line
Hi Tarek again, Check that info:Formatting the exported XML HTHJacob
View ArticleRe: PBDOM : Exporting to XML file gives a single line
You can use the ActiveX components.Here are visual basic examples: vb6 - Forcing MSXML to format XML output with indents and newlines - Stack Overflow
View Article