cancel
Showing results for 
Search instead for 
Did you mean: 

PB opening Internet Explorer Windows in Citrix

Former Member
0 Kudos

Greetings,

We have a PowerBuilder application that we are migrating to Citrix.  One of our business requirements is that when Internet Explorer is launched from the application, it does not open in a new window if an IE window is already open.

We are finding that the PowerBuilder application always opens a new Internet Explorer window in Citrix.  This behavior overrides the settings in Internet Explorer.

Has anyone had any issues with Internet Explorer calls from PowerBuilder?

Thanks,

Karl

(We are currently on PB12.0, soon to migrate to 12.6.)

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I'm not doing it on Citrix but this is how I launch an URL in the users default browser:

Function long ShellExecute ( long hwindow, string lpOperation, string lpFile, &

             string lpParameters, string lpDirectory, long nShowCmd &

             ) Library "shell32.dll" Alias for "ShellExecuteW"

String ls_null

SetNull(ls_null)

ShellExecute(Handle(w_main), ls_null, as_url, ls_null, "\", 1)