Tagged Questions

Sybase PowerBuilder - programming language and IDE from Sybase. Very popular in the early 90s before being eclipsed by Visual Studio and failing to provide an adequate solution for web applications. Outside of StackOverflow, the best resource for PowerBuilder help is the Sybase Newsgroups (and their Google Groups archive). Also possibly of interest: The International Sybase User Group, PowerBuilder Journal

learn more… | top users | synonyms

17
votes
7answers
514 views

Is contributing internal tools to open source worth the effort?

I know this is a general question, but I'd like to hear other people's opinion about our case: I work in a small company. Our main development tool is PowerBuilder, which is a very limited IDE with a ...
11
votes
7answers
3k views

Is there a viable SCC integration for Subversion?

What recommendations do you have for a Subversion client that supports Microsofts standard SCC API? So far, I've found two possibilities: TortoiseSVN SCC. Seems neither mature, active nor supported ...
8
votes
2answers
736 views

Acquire images from scanners from Powerbuilder

I am using EZTWAIN from a powerbuilder application to acquire images from an HP scanner. Recently I tried a Kodak model (i1120) and it seems that it is not supported. Specifically the application ...
8
votes
11answers
4k views

PowerBuilder 11.5 & Version Control

What is the best version control system to implement with PowerBuilder 11.5? If you have examples of how you have did branching/trunk/tags that would be awesome. We have tried to wrap our heads ...
8
votes
8answers
4k views

Porting a PowerBuilder Application to .NET

Does anyone have any advice for migrating a PowerBuilder 10 business application to .NET? My company is considering migrating a legacy PB application to .NET (C#) and I am just wondering if anyone ...
8
votes
6answers
2k views

An alternative IDE for Sybase Powerbuilder

Does anyone know of an alternative IDE for Sybase Powerbuilder? It feels pretty clunky, after working with VS2008 and Eclipse. If not, has anyone successfully worked with this language outside the ...
5
votes
2answers
697 views

Create WPF Browser (XBAP) Application in PowerBuilder 12?

Is it possible to create XBAP applications in Powerbuilder 12 ? I learned that powerbuilder 12 supports WPF but im not sure about WPF Browser (XBAP) Apps. Any help or link is appreciated. Thanks!
5
votes
3answers
2k views

Is there a way to handle the dynamic change of a dropdown for a single row in a grid-based datawindow?

Is there a way to handle the dynamic change of a dropdown for a single row in a grid-based datawindow? Example: NAME LIKABILITY PURCHASED IN COLOUR (Text) (DropDown*) (Text) ...
5
votes
4answers
1k views

Powerbuilder Dynamic Array Manipulation

string array[] long lBound, uBound lBound = LowerBound(array[]) // = 1, empty array value uBound = UpperBound(array[]) // = 0, empty array value array[1] = 'Item 1' array[2] = 'Item 2' array[3] = ...
5
votes
7answers
777 views

Telling if a transaction has uncommitted updates

In our application, there's a database update that is committed only after a consequent update is being executed (both using the same transaction, of course). However, we've discovered a rare flow in ...
5
votes
4answers
826 views

How to make PowerBuilder UI testing application?

I'm not familiar with PowerBuilder but I have a task to create Automatic UI Test Application for PB. We've decided to do it in Python with pywinauto and iaccesible libraries. The problem is that some ...
5
votes
2answers
903 views

Spy++ for PowerBuilder applications

I'm trying to write a tool which lets me inspect the state of a PowerBuilder-based application. What I'm thinking of is something like Spy++ (or, even nicer, 'Snoop' as it exists for .NET ...
4
votes
1answer
94 views

What does a negative color (-1, -2) mean in PowerBuilder?

The PowerBuilder documentation states that colors are encoded in a long number between -2 and 16777215. I quite understand how RGB encodes colors in a long (b*256/256 + g*256 + r), what I don't ...
4
votes
3answers
315 views

Looking for a simple .Net, 3D drawing API (assembly)

I am looking for a simple 3D drawing API for .net. The shapes I need to draw are: Hollow Cylinders Hollow Spheres Hollow Cubes 3D lines 3D text to annotate the shapes The functionality I am looking ...
4
votes
3answers
285 views

Significance of date 02/31/2157?

I work in a large scale IT support environment. Twice now we have seen an invalid date of 02/31/2157 being inserted in an Oracle DATE column. So far I have not been able to reproduce this problem, ...
4
votes
3answers
539 views

DataWindow Error: Row changed between retrieve and update

I am getting an error when updating a DataWindow which says "Row changed between retrieve and update". What is the soltuion?
4
votes
1answer
396 views

How to read a Web.Config in Powerbuilder 11.5.1?

My office mate created a web service application to be consumed by a .Net application on the presentation layer. He wants to read the connection string from the web.config. Thank you in advance.
4
votes
2answers
1k views

How to combine “|” character in run () command in powerbuilder in order to read an txt file as metadata output of a file (pdf)?

Could you please tell me how to use "pdftk mypdf.pdf dump data | findstr NumberOfPages in powerbuilder run command and save this metadata in a file by using the following code like this: string ...
4
votes
4answers
4k views

Saving a datawindow as PDF in PB 10.5

I have a grid datawindow with a picture in it's background (with dimensions of an A4 page) and I would like to export both data and the picture as a (single page) PDF file. I used several combinations ...
4
votes
2answers
386 views

Is there a free diff tool for PowerBuilder?

I do know of a couple of PowerBuilder diff tools that are shareware. But are there any that are freeware or open source?
4
votes
2answers
578 views

Column names in dynamically generated datawindows

When I dynamically create a datastore using SyntaxFromSQL (in order to generate datastore source code, based on a SQL SELECT statement), with syntax like this string ERRORS, sql_syntax, dwsyntax_str, ...
4
votes
2answers
1k views

Full Build, Incremental Build and Deploy within Powerbuilder

What is the difference between a Full Build, an Incremental Build and Deploy within Powerbuilder? The only difference I can see is that Deploy allows you to update the PBDs for, well, deployment.
4
votes
2answers
525 views

Powerbuilder language documentation

Where can I find documentation for the actual PowerBuilder language. I am referring to the kind of code you get when you select "Edit Source" from a right-click menu on the library painter. Not the ...
4
votes
4answers
1k views

How do I add 2 years to a date in powerbuilder and account for the leap year correctly?

How do I add 2 years to a date in powerbuilder and account for the leap year correctly? We have a medical license application where the user would like the date to go expire two years. Current ...
4
votes
1answer
330 views

How *does* Powerbuilder POST work?

Unfortunately searching for 'Sybase Post' doesn't get me the answers I'm looking for. I want to know what the actual function is of POST As in .. procedure lala POST procedure1() procedure2() I'm ...
4
votes
1answer
318 views

How do I get the PowerBuilder graphicobject for a given HWND handle?

In my (PowerBuilder) application, I'd like to be able to determine the graphicobject object which corresponds to a given window handle. Simply iterating over the Control[] array and comparing the ...
4
votes
4answers
483 views

Going to jump into Powerbuilder. Any advice

This might be a weird question. After all, most people want to jump OUT of PB not IN. However, after careful analysis, I feel that Powerbuilder can get things done so much more rapidly than C# in the ...
4
votes
3answers
557 views

.NET interop in PowerBuilder

I'm looking for a way to do two-way communication between a PB object and a .NET (C#) object. In looking at Brad's .NET version of his GUI controls, I see how to give the .NET object a reference to ...
3
votes
4answers
200 views

PowerBuilder Alternative

I'm looking for a multiplatform (or web-based) alternative to Powerbuilder. I need an alternative to datawindows and the facility to create fast UI components.
3
votes
1answer
174 views

Gradually porting PowerBuilder/C++ application to C#/WPF or Winforms

I have a chance to start porting a legacy application written in C++/Powerbuilder to c#. We have a feature this sprint that launches an independent dialog and I just went through the exercise of ...
3
votes
2answers
253 views

Unable to connect to ftp server

I'm trying to connect to an ftp server through a powerbuilder application using windows api functions. I manage to connect to the ftp server through Internet Explorer (so I don't think it's a ...
3
votes
1answer
156 views

How to get return codes from PGP Command Line code

I am using a McAfee E-Business Server v8.6 and I wanted to get the return codes from the encryption/decryption commands from the command line. I run the said codes from PowerBuilder. I wanted to get ...
3
votes
1answer
125 views

Window without border like Corel Draw start up from powerbuilder

Friends, many a times I saw Corel Draw start up window. It has no shape; that means it contain balloon shape and has no border. I also created start up image and I placed on one window. Now I want to ...
3
votes
2answers
532 views

PowerBuilder 12 vs Visual Studio - Designer support

I have control designed for VS2008 and VS2010. Will it work in Power Builder 12 designer as well? or Would I need to create any design.dll
3
votes
3answers
399 views

Add event to dynamically declared control

This is a PowerBuilder question. I'm using PowerBuilder 12 Classic. I have a window in which most of the controls are declared dynamically in code using OpenUserObject. When one of these controls ...
3
votes
2answers
199 views

PowerBuilder and Visual Studio files in same StarTeam project?

We have a system that is largely written in PowerBuilder 11.5 and we are using a single StarTeam project to hold the source code. Now we are wanting to add some related websites developed in ASP.NET ...
3
votes
4answers
305 views

Is there anyone out there using Clear Case with Sybase Powerbuilder?

Word has come from upon high to standardize our SCM system. And upon the clay tablets was written Clear Case. I am reaching out to anyone who is actually using this configuration - to get best ...
3
votes
2answers
506 views

add a watermark to a powerbuilder data window

we have some confidential reports that we would like to add a watermark to when the print them out -- anyone know if you want add a watermark in a powerbuilder datawindow? Thanks
3
votes
1answer
392 views

How to show unexpandable nodes in Powerbuilder Tree Datawindow

I am using a tree datawindow in powerbuilder. This repesents a mixture of tree and table. My problem is: the tree doesn't visibly distinguish between expandable und non-expandable nodes. If a node ...
3
votes
1answer
246 views

Change treeview scroll position thru PowerScript

How can I change Treeview Scroll Position thru PowerScript? Im thinking to synchronize Scroll position of a datawindow and treeview but I cant seem to get it to work. Thanks!
3
votes
3answers
671 views

Possibilities of PowerBuilder 12

I'm a .NET developer, and I heard that since release 12 PowerBuilder enhanced integration with .NET. What are the advantages of using Sybase PowerBuilder over normal WPF programming techniques and so ...
3
votes
4answers
345 views

Powerbuilder “runtime”

I've copied (not installed) a system developed with Powerbuilder, from a salvaged hard drive. I want to run the application, but of course, it asks for several DLLs and stuff like that, which are not ...
3
votes
2answers
500 views

Invoking .Net COM assembly from Powerbuilder application (without registration)

We have a Powerbuilder 10 application that is using .Net COM assemblies. We are trying to embed the manifest in the PB application (to invoke COM assemblies without registration). The merged manifest ...
3
votes
2answers
193 views

PowerBuilder Plug-in Architecture

PowerBuilder seems to have some support for plug-ins since version 10. However, I can't find any documentation nor tutorials about this. The only hints I can manage are by examining the COM objects ...
3
votes
2answers
2k views

How could I create a Gantt-like chart in a datawindow (Powerbuilder)

I want a rather simple (and cheap) solution, just for presentation purposes (and just to show the task duration bars - no connection lines between them). So, I am not interested in buying some ...
3
votes
1answer
706 views

Two questions about the itemchanged and itemerror events

Within PB6.5.1 and PB9.0: Question 1: In itemchanged event: return 1 In itemerror event: return 3 At runtime,the sequence of events fired is: ...
3
votes
7answers
2k views

PowerBuilder for a Java programmer?

A friend of mine uses in his company an ERP software written in PowerBuilder. Unfortunately the (one and only) developer is going into retirement soon. My friend really likes the software and wants to ...
3
votes
1answer
585 views

Looking for a Regular Expression extension

I'm looking for a Regular Expression library I can use in our application, which is written in PowerBuilder (PB has some RegEx functionality, but it's too limited for my needs). Required ...
3
votes
2answers
1k views

Check if a file is open from another process

How do I check if a file is already used by another process from Powerscript ?
2
votes
1answer
30 views

PowerBuilder 12 how to determine encoding of input file

I'm new to PowerBuilder 12, and would like to know is there any way to determine the encoding (e.g. Unicode, BIG5) of an input file. Any comments and code samples are appreciated! Thanks!

1 2 3 4 5 6