Re: Using SharedObject to call webservice in multithread
Did you mean to share a script?
View ArticleRe: PB 12.6 : Problem with menu in 64 bits executable
Hi Jacob, I've also generated a template application and the 64 bits exe works OK.I suspect the problem is with some code in my application.I'll post later when I find something. Regards,
View ArticleRe: PB 12.6 : Problem with menu in 64 bits executable
Jacob, the problem is with our translation system.When I disable it, the menu works just fine.Still have to find the problem in this process...
View Articlehow to create treeview in datawindow for data editing?
Suppose I have table like:mytree(id, parentid, ....) It contains tree data with parent-child relationship. I want to maintain this data. There are 2 solutions: Use treeview to load data from mytree...
View ArticleRe: PB 12.6 : Problem with menu in 64 bits executable
The IDE always runs as 32-bit so it would work correctly.
View Articlehow to write a recursive function to create a treeview from data in datawindow?
I have a parent-child data in a datawindow from a table mytab(id, pid....)Then I want to use to data to create a tree in treeview. I try to use recursive function, but have problem with datawindow as...
View Articlehow to use rowid in filter for datawindow?
I try to use filter to filter data in datawindow, likedw_1.SetFilter("column = value")dw_1.Filter() then I can get data from this datawindow like:GetItemNumber(row, column_name)GetItemString(row,...
View ArticleRe: how to use rowid in filter for datawindow?
What about GetRowIdFromRow and GetRowFromRowId methods for DataWindow control ? ________________AUS Julián TagarroNeoSistemas SRL
View ArticleIs PB 12.5 compatible with windows server 2012?
Is PB 12.5 compatible with windows server 2012? Thanks in advance!Pedro Soares
View ArticleRe: Not Able to Access the Properties of Workspace and Target
Hi Amit, PB 11.2 was not supported on Windows 7 but I run it without any known problems and so do many customers. Try right clicking on the icon or exe and explicitly choose "Run as Administrator". Pat
View ArticleRe: how to write a recursive function to create a treeview from data in...
Try using a datastore, see below. I haven't tested that but I think that should work. of_addnode(treeviewitem node, rootrow): int li_rows,li_newitem, i treeviewitem li_tvitem datastore lds_1...
View ArticleRe: how to write a recursive function to create a treeview from data in...
If you must use code like this, filtering the datawindow or datastore whilst trying to read from it as you are is just going to create pain. Why not use the query from your existing datawindow as the...
View ArticleRe: how to write a recursive function to create a treeview from data in...
Sorry, "as you're trying to do" should have been "as Neil suggested"; but you would preferably use dw_1.object.data.primary instead of importstring().
View ArticleRe: how to find out a treeviewitem in treeview?
Hi Kent; Have a look at the TV control's GetItem ( ) method. FWIW: You might also find the FindItem ( ) method useful as well. Good luck. regards ... Chris
View ArticleRe: how to override ancestor's script?
Edit some script or a comment in w_2.ue_myevent and with a right click in the script editor disable "Extend Ancestor Script" in the context menu. Menu -> Edit has also the "Extend Ancestor Script"...
View ArticleRe: how to override ancestor's script?
Hi Kent; FYI: While in the script painter for W_2 - use the RHMB and un-check the "Extend Ancestor Script" option. Note: If you are not adding code to W_2 - make sure that you have at least one...
View Article