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 strongm 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. efrost2

    Can't ping

    Hi - I've successfully created a VPN connection b/t my BEFSX41 (home office) and Sentinel 1.3. This works great when connecting from another computer either using dial-up of cable modem. However, when I attempt to connect from my work office Sentinel makes the connection, I see the connection...
  2. efrost2

    Control access BEFSX41 and SSH Sentinel

    Thanks markku - can you give some suggestions on how to limit access on the LAN side using username/password .
  3. efrost2

    Control access BEFSX41 and SSH Sentinel

    Hi, I have succesfully created a vpn connection between a Linksys BESX41 and SSH Sentinel 1.3.2. However, I would like to be able to control permissions for vpn users. Currently when a user connects to my network they have complete control, they are able to see all my shares, etc. Is there...
  4. efrost2

    How do I host my website myself?

    I hear ya - I am fortunate to have a cable modem. I run my own web server and email server - everything is behind a firewall of course. I use Winproxy, easy to use, secure and inexpensive. As for the IP my am issued a dynamic IP from my ISP - however there are several companies which let you...
  5. efrost2

    What is a "Public Object Module"

    If you put your UDT in a ActiveX DLL and set the instancing to multiuse that should do it.
  6. efrost2

    Passing a User-defined-type

    Are you getting an error to the effect "...must be a public creatable class.." or something like that? This might work: define a public udt in an ActiveX DLL (instancing set to Multiuse). Then dim a private member variable as your udt type. '''in the DLL Public Type as PersonUDT...
  7. efrost2

    Which programming lanuage to start with?

    VB has a reputation of not being powerfull enough to wright commercial apps - while it is true that C++ dominates the field of shrink wrapped software, VB is King when it comes to business solutions (mainly front ends to databases). However, with VB 6 the language has moved more towards an...
  8. efrost2

    dependant dropdown using array; no second trip to db

    Remote Scripting is the answer! when you select an item in the first drop down you can send this to an asp page which querys the db and get back values WITH OUT reloading the page - very cool.
  9. efrost2

    Session timeout event?

    Yes, I got this far. But what I want to do is have a new page load as soon as the session times out - even if the user does not try to access a protected page. Thanks
  10. efrost2

    Session timeout event?

    Does an event get fired when session variable times out? I would like to have the browser load another page when session times out. Thanks
  11. efrost2

    Is DreamWeaver right for me?

    I am looking for a good and quick way to develop web pages. My experience is with ASP and back end programming. I have used HomeSite, but would like a simpler way to develop rich client side functions (rollovers, menus, etc). Is DreemWeaver a good candidate to work with Active Server Pages...
  12. efrost2

    Web Services?

    When a browser makes a call to a web service does the page get refreshed? I have used Remote Scripting, which allows you to call methods in another asp page WITHOUT refreshing your page. The limitations with Remote Scripting is that you can't send or receive structured data(arrays, object)...
  13. efrost2

    Accessing a variable from Server in client side code?

    I have an asp page which populates a variable on the server side, how do I get access to this variable in client side script. <HTML> <HEAD> <SCRIPT language=javascript> Function GetValue() { //Can I access MyVar here??? } </SCRIPT> </HEAD> <BODY> <% dim MyVar 'do my database stuff MyVar=value...
  14. efrost2

    COM + COMPONENT

    make sure you copy the dll to your IIS machine and then register it.
  15. efrost2

    VBScript on the iMac

    Can you run VBScript on the iMac version of IE? If so are the DOM similar?
  16. efrost2

    Please Help !

    Is the field you are trying to update a &quot;calculated field&quot; ie, is it based on the values of other fields in the db?
  17. efrost2

    IIS

    Sure: create an asp page - name it test.asp <% response.write &quot;<HR>This is a test</HR>&quot; %> save this in your www root directory and point your browser to it. http://localhost/test.asp
  18. efrost2

    Please Help! - Arrays and Variables

    dim sStringOne dim myArray(2) myArray(0) = &quot;hello&quot; myArray(1) = &quot;goodbye&quot; sStringOne = myArray(0) & &quot;string&quot; 'sStringOne will now be &quot;hellostring&quot;
  19. efrost2

    VB Version 6.0 - how do I put my program on the Web?

    If all you need to do is have users submit orders via a browser and then write those orders to a db - this is trivial via HTML and ASP. Then once you have the oders on the backend db you can do whatever processing you would normally do. As far a security goes there are several options: 1. Have...
  20. efrost2

    Problem returning Resultset from COM to ASP

    Try not creating the ADO connection and recordset object in your ASP page and doing this: <% dim oMyObject dim oMyRS dim strClassString strClassString =&quot;PB80.n_clssrch.1.0&quot; 'this is your COM object set oMyObject = Server.CreateObject(strClassString) 'usually there is a method in...

Part and Inventory Search

Back
Top