Jump to content

goodsyntax

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About goodsyntax

Contact Methods

  • Website URL
    http://
  • Yahoo
    wilsoncd35

goodsyntax's Achievements

0

Reputation

  1. Another option is GooeyScript. Regardless of what the Woodchop site says, it is free/public domain. He states it in some places but not in others, where he hasn't updated his site. Anyhow, it is a COM application that will allow you to render a dialog window, add labels, buttons, etc. if you want. Can capture events too. Good luck http://www.woodchop.com
  2. If you are really curious then you might browse www.borland.com and go to the Developers center. There are many downloads of source code for Delphi there. Also can download a trial version of Delphi. ALSO, in the Museum there are several versions of Turbo Pascal for download which is sort of the pre-Delphi, object pascal. Once you have learned TP, Delphi is a breeze.
  3. I think what you are trying to do, with IE, is near impossible to do. Having that kind of control over the browser is not allowed. I could be wrong, and it wouldn't surprise me if someone hasn't done it. Should all of your users be using IE as a browser, or at least have it installed on their machines, then you might consider using an HTML application. This is essentially the same as any other HTML file but the file has an .hta extension insteal of .htm;.html;etc... Also, there are some header attributes that you can add to the the file in order to control the window a bit more. Anyhow, HTAs run with the same access to the system as any other executable (exe, bat, etc.). You can not host them from a web server either, they will act as a download (open, save, dialog window) should you try to browse to them. Your script (windows script host code) can be embedded within the hta and this script can call on local resources (again, like any other regular exe). I use HTAs similarly to what you describe. When the user logs in my script (not HTA) checks the database to see if they have accepted our "agreement" in the past year. If they haven't then \\drive1\folder1\agreement1.hta is executed. The form has no close button, can only run as a single instance, etc. I hope this helps out. Check out the path below for docs on HTA from Microsoft. http://msdn.miscrosoft.com > library > web development > html applications
×
×
  • Create New...