Re: Issue reading file from webservice
The path name is ok - I can take the string value in the debugger, paste it into windows file explorer and it opens fine. The code is a bit ugly as I did a real quick and dirty copy some lines from...
View ArticleRe: Datawindow BUG in Powerbuilder .NET (12.5.1 4953)
What I've discovered, if you go directly to the Column Specifications and try to add a column, PB does crash. However, if you first hit the Data Source Icon on the menu bar, then add the column, it...
View ArticlePB.Net 12.5.2 Dynamically Created Updateable DW
performed the usual ds_obj = create datastoreds_obj.create(sqlca.syntaxfromsql("select keycol,col1,col2 from tab1","style(type=grid)",ls_err1),ls_err2) Then created the ds_obj.modify string to identify...
View ArticleDynamic datawindow with parameters, how to modify sql select?
How to change sql select in Sybase.DataWindow.Wpf.DWDataWindowControl PB 12.5 dynamically? int rtn = dw.SetSqlSelect(usql); // return -5, doesnt change sql...
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
You set row status, but not column status. Yes the row is marked as modified but which columns are marked? PB will not guess for you. And be certain you read the documentation about changing status...
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
You don't need to set what columns when he is doing the whole row. 0 indicates the whole row is being set.
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
You should do a modifiedcount to see if any rows were actually modified.
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
Directly from the documentation: Change column status when you change row status Changing the row status changes the status of all columns in that row to NotModified!, so if the Update method is...
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
Thanks for the replys. I had created a datastore nvo so I could trap what's happening within the datastore.NewModified! => Datamodified! is allowed. ModifiedCount > 0, also indicated by the...
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
Can you try this. Take the datawindow syntax into a text file. Import that file into a library. Did it import without errors? Can you try that datawindow to see if it will update successfully? It might...
View ArticleRe: Problem in saving PDF's in PB.NET 15 (greek regional settings).
I did try to use PDFSharp.dll from pb 12.1 with pb 12.5.2, but had same issue... Maybe this is related to the way they use PDFSharp internally in PB.NET 12.5... And I saw that it also happens through...
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
I know I'm coming at this from a different angle than you (migrating 6.5 apps vs. new dev) but when I run into quirks in PB .net 12.5.2, I go back and vet them in PB Classic 12.5.2 to validate that the...
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
Just tried it in classic, and it does not work there either. Update returns 1. sqlcode = 0.trace file contains no update statements. That's as far as I have dug, but looks like the same behavior....
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
Scott had the correct answer. After setting the row to Datamodified, I had to go back and set each column to Datamodified. Puzzled tho why the UpdateEnd would claim rows were updated when none were.
View ArticleRe: PB.Net 12.5.2 Dynamically Created Updateable DW
Maybe it's like when you do a query that returns 0 rows, the SQL statement still was successful.
View ArticleRe: PB .net 12.5.2, datawindow retrieves choke on Oracle TO_CHAR function
You can't used database specific commands (e.g., TO_CHAR) in a SQL statement using an ODBC driver What you have to do is specify the ODBC equivalent than then let the ODBC driver convert it for you....
View ArticleRe: PB .net 12.5.2, datawindow retrieves choke on Oracle TO_CHAR function
It's been working in PB Classic all along, still works in PB Classic 12.5.2, same ODBC connection. Doesn't work in PB .net 12.5.2 This is the identical trace in PB Classic 12.5.2 Well, for proprietary...
View ArticleRe: using preauthentication in SoapConnection
Hi Kimon, Is it working on Easerver without preauthentification? May be you have some missing dll in your Easerver\bin directory: EasySoap125.dll, ExPat125.dll, libeay32.dll, ssleay32.dll,...
View Article