Re: easiest EAServer replacement?
Hi Marc; You can use either PB Classic or PB.Net to transpose your NVUO into a Web Service. The only question about PB Classic vs PB.Net is whether your JavaScript can support the REST protocol...
View ArticleRe: easiest EAServer replacement?
I would like to look into converting my NVOs to .net. Have you considered using PB.Net to create WCF services and just host them in IIS? Or create .Net assemblies and reference them using WCF services...
View ArticleRe: How to get active page tag name in a variable in cb_1 clicked event
If the button is on the page itself, then the parent of the button is the page. So: string ls_name = parent.classname( ) If you need the name of the tab, simply follow the same logic - the parent of...
View ArticleRe: easiest EAServer replacement?
Thanks Mark -Since I have not used PB.net before and really need to show a proof of concept to a client soon, I am really looking for the fastest/easiest way to get my NVO's deployed to IIs instead of...
View ArticleRe: easiest EAServer replacement?
Hey Marc, Sounds like a lot of fun and a great opportunity to learn a little .Net. Start small with a demo app that gets data from a db using a datastore and returning it back. You'll make lots of...
View ArticleRe: How to get active page tag name in a variable in cb_1 clicked event
Similar to Chris pseudo-code: dragobject ldo_tabpage ldo_tabpage = tab_1.control[tab_1.selectedtab] MessageBox('Tag',ldo_tabpage.tag)That would give you the tag of the currently active tabpage.
View ArticleRe: Powerbuilder application error R0002
Looks like you have not connected to the database yet using the transaction object (proccall) you have created.
View ArticleRe: Menu become unresponsive in power builder
I suggest that you check the code from the menu, what message it is sending and ensure that the frame has the appropriate event to handle/capture the message that the menu is sending... If that was...
View ArticleRe: DDE server option hanging the application
Hi Chris, Can you let me know the link in which I can raise this issue to SAP technical support team ?I am still getting the issue sporadically, thought of raising it with SAP. Regards.. Babin
View ArticleIs it best practise to decalre shared variable to pass variable between more...
I have opened windows1 string name1windows 2 siring name2 windows 3 string name3window4 I wan to get the value of variables name1,name2,name3 in windows4 and also I want to get the value of...
View ArticleRe: DDE server option hanging the application
AFAIK: Home | SAP Support Portal Note: You will need an active SAP Technical Support account to use this feature.
View ArticleRe: Is it best practise to decalre shared variable to pass variable between...
FYI: "Shared" variables only work between multiple instances of the same Window Class.
View ArticleDataWindow.Print.Paper.Source not working
hi to all,i'm trying to change the paper source for a printer before printing a datastore, but it seems to not work.i have tested all the paper.source values in this way with no success. for ll_c = 0...
View ArticleRe: DataWindow.Print.Paper.Source not working
I would assume that you did something like this, did you?for ll_c = 0 to 14 ll_s=lds_1.modify ("DataWindow.Print.Paper.Source='" +string(ll_c)+"'") if ll_s <> '' then messagebox(ll_s ,ll_c)...
View ArticleRe: Problem to modify fields in datawindow
hi ChrisWe're doing a test, you know that when we tried what you discuss with explorer 8 we could edit the field which I will mention that since chrome, explorer 11 There we had been able to make, you...
View ArticleRe: Is it best practise to decalre shared variable to pass variable between...
I'm not sure I understand exactly what you're asking but when you declare instance variables for objects, you can specify their read and write access. For example, if in window1 you declared this...
View ArticleRe: Problem to modify fields in datawindow
FYI: The Webforms feature only supported up to IE9. Sybase never updated it for IE 10 and beyond. Then they removed the Webforms feature in 12.5.2 & dropped supported for it.
View ArticleRe: Problem to modify fields in datawindow
Hi Gabriel, IE10 mostly work in compatibility mode. Have not tried IE11. I gave up and did some tedious re-engineering for some data entry datawindows that simply weren't enterable from Chrome and/or...
View ArticleRe: DataWindow.Print.Paper.Source not working
Hi Neil,i have tried without using quotes and also the dot notation but pb does not change paper source.
View ArticleRe: Powerbuilder application error R0002
have you tried to pass all the arguments when you call the procedure?
View Article