Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cbweb2

    In a constructor: pass 1 of its 'non final' args to a private method ?

    Thx Dian for this link ! Cheers, cbweb2
  2. cbweb2

    In a constructor: pass 1 of its 'non final' args to a private method ?

    Hi Dian and idarke, Thanks for your prompt replies. Actually I've found what was wrong and it was much more due to the fact I'm used to developping in C++ and wanted to implement things like in C++ .... One problem is now solved and I have to read tutorials now to be able to manage graphical...
  3. cbweb2

    In a constructor: pass 1 of its 'non final' args to a private method ?

    Hi all, I've to modify an existing Java application and I'm a bit lost ... Actually one public class manages 2 tables and one of its methods calls the constructor of another public class and passes those tables as parameters. The constructor of this second public class does several things and...
  4. cbweb2

    activate a .exe (stored on client-side) from an intranet page ?

    Thanks a million theniteowl, BabyJeffy and tsuji for your very kind help ! You're simply the best !!! As for security, I'm perfectly aware it isn't the best solution (to keep a .html and to avoid getting the message "an ActiveX component can't create an object", I had to change my internet...
  5. cbweb2

    activate a .exe (stored on client-side) from an intranet page ?

    Oups ... a bad copy/paste that I haven't noticed myself ... thanks tsuji ! still an error msg, but an incredible one: "can't find the specified file" ! if I open a DOS window and enter the complete path of the application followed by the parameter, it works ... investigating ...
  6. cbweb2

    activate a .exe (stored on client-side) from an intranet page ?

    Actually, when I create an HTML test page as below: <HTML> <HEAD> <SCRIPT LANGUAGE=javascript> function Click(param1) { var ws = new ActiveXObject("WScript.Shell"); ws.run("file:///D:\myFolder\myApp.exe",param1); return; } </SCRIPT> </HEAD> <BODY> ... <a href="#"...
  7. cbweb2

    activate a .exe (stored on client-side) from an intranet page ?

    The feature 'click to call' or 'click to dial' seems to be very famous nowadays and the company would like to implement it on its intranet. All users have already a multimedia application installed on their computers, allowing them to have voice and multimedia calls. Now a click-to-call from the...
  8. cbweb2

    activate a .exe (stored on client-side) from an intranet page ?

    Thx Jeff and Dan for your very prompt answers ! I've just tried with %20 or a space, and it doesn't work better ... Dan, when you mentioned "Windows Shell Control", did you think about creating a function in javascript like: function Click(param1) { var ws = new ActiveXObject("WScript.Shell")...
  9. cbweb2

    activate a .exe (stored on client-side) from an intranet page ?

    Had to move to another project ... but back now to the one needing to run a .exe ! Well, to better explain why I need to pass parameters: depending on the web page (of the intranet of course) one user is looking at and click on, one parameter is different. So, I've tried to call one .bat file...
  10. cbweb2

    activate a .exe (stored on client-side) from an intranet page ?

    Thanks Dan for this useful tip ! I've just asked the customer and the answer is: 'a signed ActiveX might be acceptable'. I keep my fingers crossed this solution will be really approved. cbweb2
  11. cbweb2

    activate a .exe (stored on client-side) from an intranet page ?

    Hi all, I've to develop a small software (C++) which will be loaded on several computers inside a company. This development is only one part of the project. The 2nd part is: launching this software (with one parameter) from the company's intranet: the user (having a computer with my software)...

Part and Inventory Search

Back
Top