Hi Michael, Have you tried using the Unicode versions of the function(s)? Change "SHGetSpecialFolderPathA;Ansi" to "SHGetSpecialFolderPathW" and do the same...
Since you are using PB11, why not use GetFolder(title, directory) PowerScript function instead of APIs? I believe this has been there since PB8? ... [Non-text...
Hi all, Have any of you encountered this problem when consuming a web service? The definition of the method signature in Web Service proxy is wrong. I am...
Angel, I intend to use SHGetSpecialFolderPath to return a directory path that varies depending on the operating system or is subject to change by the user or...
Hi All, I'm currently working in PB 9.02, windows xp, Oracle 9i. I'm trying to move certain rows from the primary buffer to the delete buffer, but getting a...
Why move the row to the delete buffer when you can simply delete the row instead [li_rtn = ids_food_header( ll_row)], which should be pretty much the same...
Yeyi, I get the same error when I use the Unicode versions. I was hoping that someone already using the function could tell me if my declaration in ...
Mike, If you move row 1, your beforerow parameter ends up being zero. I've never tried using anything less than 1 for that parameter so I don't know if that...
Thanks, I'll try using the 1. The plan is to move the rows back to the primary buffer later in the process: don't want those rows to be seen by more...
That's OK! I need the rows later in the process, they will be added back to the primary buffer to be processed: ids_food_header.update() ... From: Susan...
As Michael alluded to, be careful of your row statuses when moving rows, you may end up inserting existing rows by moving to ad from the delete buffer. Turning...
So tired, so very tired... I meant you could consider COPYING all the rows you want to a copy of your datastore. ________________________________ From:...
I figured out my problem and it was another "Duh" moment. Windows writes the path to the lpszPath parameter (ls_appdata in my code). I needed to initialize...
Mike, If you use the PFC, the Row Management service can undelete a row but it uses a dialog box. In addition, rows can only be restored if the datawindow is...
If that is the case, then stop moving them to the delete buffer. Use your find string to build a filter and filter your dw. dw.Update() processes the filter...
Thanks, but it's a unique situation. The rows needing to be moved have the same values as the rows included in the datastore. they are identified by the...
Hello guys, I have a datawindow with left join...I want to UPDATE the first table and do an INSERT on the other table. How can I do this in multitable update...
Hi JB, I think that if you change Table to Update, make all the columns of the 1st table not updateable and all the columns of the second one updateable, and...
Good morning/evening! I wanted to declare a memory vaiable and store value in it from PB's DB editor's ISQL Session Tab by the following script. declare...
In a datawindow, all the tabs of the columns are zero, when the user clicks a cell in a row, the background of the cell becomes black, and the printout is...
I am having the exact same problem - in PB 11.5 Database painter ISQL Session. It won't spit out a variable value. Only a SQL result set. But I am connected...
Hi guys, I use a simple select statement " select count(*) from my_table" which works well in design mode. When i call it during run time " select count(*)...
hey, are u using Update() function, then use resetflag as false,as second argument of update function. then using modify ,change the updateable columns and...