Does InkPicture support Multiple page Tiff file?
InkPicture supports TIFF file?
Problems using d3.js library in Powerbuilder
I am struggling with a java script graph from a D3.js library.
I have downloaded the library and data ( open source) files from github.com, and executed in the browser in html without trouble. But when I try to open it up from powerbuilder ( 12.5), I get the following script error: “Cannot obtain the property “prototype” of null reference or undefined”.
I am getting mad with it: how is it posible that I can open the graph with any browser and I cannot open it within powerbuilder?
if anyone knowswhere the problem is, please could you tell me?
thanks in advance
will two sysam served pb licenses cover two different rdp users?
Hi. We recently installed a sysam license server for PB 12.5 on a Windows 2008 server. The installs were done while operating under RDP. The person who installed sySam and PB, is able to access pb without a problem. However, another PB developer who also needs access is not able to use PB. If we install another license for PB, will the second developer be able to RDP into the server and use PB? Does the second developer need to generate the additional seat for PB and install that additional seat under his RDP login? Thanks. Doug.
Problems using graphics with the library d3.js in Powerbuilder
I am struggling with a java script graph from a D3.js library.
I have downloaded the library and data ( open source) files from github.com, and executed in the browser in html without trouble. But when I try to open it up from powerbuilder ( 12.5), I get the following script error: “Cannot obtain the property “prototype” of null reference or undefined”.
I am getting mad with it: how is it posible that I can open the graph with any browser and I cannot open it within powerbuilder?
if anyone knowswhere the problem is, please could you tell me?
thanks in advance
Powerbuilder and SAP Solution Manager
Hello,
Do you know if SAP Solution Manager supports Powerbuilder? or, what SAP product can I use to complement powerbuilder through the entire development cycle of a system, including stress tests?
Thanks in advance!
Isaac Cabrera
Transaction not Connected - After Deployment
Hi everyone! Im new here in SCN and also to PowerBuilder series. My supervisor asked me to deploy the finished PB12.5 app to a test computer where I can personally test the system. I have created an installer of the PB app, and i managed to install it successful in the test computer, i have also created a custom PB runtime packager where I package the necessary PB runtime dll, and microsoft dlls. The problem is this, when i try to run the PB App, it ran, but when i try to login using my admin account, the app throws an "Transaction not connected"
i have used the PB runtime packager and also link the app path to C:\Program Files\Sybase\Shared\PowerBuilder Folder but still i cannot make a transaction with my database server.
notes: my user account have access to the database server
i have put the necessary runtime dlls in both sybase\shared folder and in the folder where my exe is located
i have use PB runtime packager but still no luck.
im using MS Sql Server
the dlls i deployed are: atl71.dll, libjcc.dll, libjtml.dll, libjutils.dll, msvcp71.dll, msvcp100.dll, msvcr71.dll, msvcr100.dll, nlsnsck.dll, pbdwe125.dll, pbshr125.dll, pbsnc125.dll, pbvm125.dll
please help me save my job, i am new to deploying PB apps..
thanks and more power!
Retrieve Data from SAP Table by using PowerBuilder
Hi Guru,
Currently we are using Microsoft Visual Studio (SSIS) with Xtract IS components to download data directly from SAP Table.
In order to reduce dependencies especially on PowerBuilder application, wondering is there any method that can directly download data from SAP Table instead of using SSIS and also without calling any Function Module or BAPI.
PowerBuilder version that currently using is 12.5 build 3072.
Been search for web but get no any clue on this information.
Please advice,
Million thanks,
Transaction not connected - PB.NET deployment
Hello, all
I am sure people have encountered this issue already, but I cannot find a specific answer to this deployment issue.
A PB.NET (12.5.2) app works fine in the test environment. The test environment is a server machine with full SQL Anywhere 16 installation.
When I try to deploy the app to a client machine (Win7 with SQL Anywhere client install) the app does not even load the ODBC driver. There are no errors in the event log and the sql error on connect is "Transaction not connected" (code -1).
PB Runtime is installed on both machines.
Update: Apparently, the server machine had the VS shell installed for debugging of a separate .NET app.
When I installed the VS shell on the deployment machine everything started working.
So, the question changes: Obviously, it is inconceivable to install VS shell on all deployment machines.
Does anyone have a small installation of just the required components for deployment?
Thank you
How to include a 2D Barcode in Powerbuilder 11.1 ?
Hi All,
Our labeling application is in PB11 and we are unable to include the 2D barcode in PB 11.
When i searched in google ,it seems like we need to consume the .NET third party dll and runtime dynamically set the font from the third party.
Is there any native way we can use 2D barcode font in PB ? is there any free font available ?
If the .net dll is COM visible and shall we call this from PB11.1 using OLE ? is it supported.? if not how to use this.pls help
Any suggestions would be helpful .Thanks
Regards,
Krish
How to solve the "procedure has not been executed or has no result" error
Recently we are getting the "procedure has not been executed or has no result" error while executing Procedures and Dynamic SQL queries in our PowerBuilder 12.5 Application. Can anyone diagnose the cause of such error messages? Better still can someone help us in finding the resolution for this issue?
Thanks in advance!
Hai, I am migrating existing Power Builder Application to Web Application where i am getting error message like below. Please assist me how to solve this error
Error when compiling generated C# code:
w_util_update_tshml_data(52,3): error CS1502: The best overloaded method match for 'Sybase.PowerBuilder.DB.PBSQL.RpcFuncCall(System.IntPtr,
Sybase.PowerBuilder.DB.DBStatement, Sybase.PowerBuilder.IPBValue[], Sybase.PowerBuilder.PBObProtoArg[], Sybase.PowerBuilder.PBObReturnArg,
Sybase.PowerBuilder.PBTransaction)' has some invalid arguments
Infomaker 11.1 Webkey needed
Hi,
I bought few years ago Infomaker 11.1 and install it on a computer.
Now, I need to install infomaker on my new Computer.
The reseller of infomaker : Wavesoft told me :
- Go on the following website : http://sybase.subscribnet.com/webkey
- enter the Authorization Key : JYDCS-77JY4-R4T4D-7L6JV-74HMY
I have an error message : error, contact the service support .....
Could you please help me. Thank you ?
I want to use a VposCOMAPI.dll, written by vs2010, from PB9 or later.
I want to use a VposCOMAPI.dll, written by vs2010, from PB9 or later.
I use the following code:
OLEObject obj
int ret_code, ret_Code2
obj = create OLEObject
String Auth_code, Rsp_code, Rsp_msg
ret_code = obj.ConnectToNewObject("VposCOMAPI.dll")
if ret_code <> 0 then
destroy obj
messagebox("error", "Error !" + string(ret_code))
return
else
obj.apiInit()
obj.CARD_NO="9999111188882222"
obj.MERCHANTID = "0909090909"
obj.executeAuth()
ret_Code2 = obj.AUTH_RETCODE
if ret_Code2 = 0 then
Auth_code = obj.APPROVE_CODE
Rsp_code = obj.RESPONSE_CODE
Rsp_msg = obj.RESPONSE_MSG
messagebox("OK", "OK !")
else
messagebox("error2", "Error2 !")
end if
destroy obj
end if
I got the ret_code “ Errorcode -2 ( Class name not found )”.
Anybody could help me ?
Could I use the VposCOMAPI.dll in this way ?
Thanks !
Jack
PS : The VposCOMAPI.dll works in VS2010
1 Add Reference --> Browse
2 VB sample code
Public Class Form1
Dim ac As New VposCOMAPI.ApiClient
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim retCode As Integer
rspCode.Text = ""
rspMsg.Text = ""
approveCode.Text = ""
txnNo.Text = ""
txnDate.Text = ""
apiResult.Text = ""
ac.setPORT(443)
ac.setLogFile("D:\workTemp\vposApi.log")
ac.setURL("nccnet-vpostest.nccc.com.tw", "/vposMert/servlets/apiControl")
ac.setMERCHANT_ID(merchantId.Text)
ac.setTERMINAL_ID(posId.Text)
ac.setEXPIRE_DATE(expireDate.Text)
ac.setCARD_NO(cardNo.Text)
…
3 C# sample code
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.IO;
using VposCOMAPI;
namespace testCSapi
{
public partial class Form1 : Form
{
public Form1() {InitializeComponent();}
private void send_Click(object sender, EventArgs e)
{
int retCode = 0;
ApiClient ac = new VposCOMAPI.ApiClient();
ac.setURL("nccnet-vpostest.nccc.com.tw", "/vposMert/servlets/apiControl");
ac.setLOGFILE("D:/workTemp/vpos/log/testCSapi.log");
ac.setMERCHANT_ID(merchantId.Text);
ac.setTERMINAL_ID(posId.Text);
ac.setEXPIRE_DATE(expireDate.Text);
ac.setCARD_NO(cardNo.Text);
…
View Workspace Properties closes powerbuilder 12.0 build 5530
The company I work for has been using Powerbuilder Classic Version 12.0 build 5530 for quite some time on several different windows 7 machines. We have successfully installed, and have been running it on 6 machines and haven't had any serious problems with the functionality. The 7th machine is not allowing me to right click any workspace to view the workspace properties without it crashing. Without this, I cannot setup source control.
I have re-installed it multiple times as administrator, disabled our source control, disabled all win7 visual settings, and have yet to get it to work. Our company also uses PB 10.5, and that works fine on the problematic machine.
Any suggestions?
Not Able to Access the Properties of Workspace and Target
Hello
I have install PB 11.2 Build 9027 on my laptop ( Winows 7 (64 bit))). PowerBuilde is open and able to see the existing code.
But when I am trying to access the properties of Workspace or target for Source code control Setup, Properties will not come and nothing happen, I am not able to view the properties of Workspace and targets.
One more think I notice ,when I was trying to create new application (File > New > Target Tab > Application) then window will not open.
Please provide me some suggestion on this issue.
Thanks
Amit Maheshwari
installing powerbuilder on a remote server for two developers
Recently, our company was purchased by another company. Soon, we will have to move our PB 12.5 instance to a remote server. Two developers will need development access to our 12.5 product code. Each developer will have a unique SSO login to the remote server. They will be accessing the remote PB instance using RDP through the company VPN. Generally, they do not need access to PB at the same time. What's the best way to install PB in this situation?
Thank you,
Doug
Datawindow .net - End Of Life Notice
Hi Community,
I want to know if there is a migration path for .net developers using Datawindow .net in their applications?
Is there some third party products in order to migrate the Datawindow .net functionality ?
Or after the "End Of Life Notice" all companies must migrate manually to another architecture, it is the only option?
Thanks in advance for your help.
Best Regards,
Douglas
Forcing Expressions in a Datawindow
PB 11.5.2
Greeting All,
My understanding is that all datawindow expressions run, calculate, etc.. when each row is retrieved.
I have a user-defined function() in a tooltip expression that returns the time left from one datetime to another.
My desire is that each time a user hovers over the object within the datawindow, the Tooltip expression is re-run.
Is there a way to tell a datawindow row to re-run the expressions within that row, or even specifically against a particular expression (tooltip!)
Thanks!
Jason Lipman
dwobject in PB.NET
After a test migration of our app from PB12.5 classic to PB.NET we found a different behaviour regarding dwobjects which causes a lot of problems.
One ouf our basic functions uses the column number to return a dwo.
Ex: my_dw.object.#1.
In PB.NET it returns a dwo ONLY if the column has a UI control in the DW. We have tons of DWs which are only used in our data layer and never shown to the user, they contain only one control for one column so most of the columns do not have a UI control assigned there.
That is no problem in PB classic, we always get the dwobject back, no matter if there is a UI control or not.
I could not find anything in the "Unsupported feature" documents about it, so consider it as abug or working as designed?
Thanks
Dirk
Powerbuilder 12.6 Invalids Characters
We just upgraded our application from PB 12.5 to PB 12.6 and are getting invalid asian characters in datawindows with a string field defined. When entering a window/object that contains a datawindow and selecting an open text field to type in, the following characters appear.
ࠀ夠䑛攀氀攀琀攀
This is happening throughout the entire application and only after upgrading to 12.6. Did some testing and noticed in only happens when Edit.Case is set to Upper in the datawindow. With Any and Lower it remains empty.
If anyone has any input or thought on how to solve this please let me know.
Thanks,
Arturo