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 Mike Lewis 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. imjbhowe

    showing tooltip from dotnet dll in vb6

    I have a dotnet usercontrol that I embed in vb6 (the main application is vb6). I have it working fine except for one thing. My tooltips do not display when I run the control in vb6. Everything works fine in dotnet. I am using the basic tooltip1.settooltip(controlname, tooltiptext). I have...
  2. imjbhowe

    Trap the event "user account locked out"

    If you can't find out how to trap the event you could run an LDAP query every so often to see if any users accounts are locked out. I am not sure about the server load for a larger system but I don't think it would be an issue for a smaller company. I can send some of the code for running this...
  3. imjbhowe

    How do I get the username of local computer?

    Try dim username as string username = security.Principal.WindowsIdentity.GetCurrent.Name with Imports System.Security
  4. imjbhowe

    Front end server, must it be Enterprise??

    We had the same issue with not needing to purchase Enterprise except for the front end / back end. What we ended up doing was running OWA on the Exchange server and NAT'ing to the Exchange server. We only opened 443 and ran OWA over SSL (port 80 is not even opened). It points directly to OWA...
  5. imjbhowe

    can't get findwindow to work - newbie question

    Thanks, worked great!
  6. imjbhowe

    Display HTML in a Windows form

    I am not sure if this is the proper way to explain this but here it goes. Add a reference to microsoftinternetcontrol com add in and insert an instance of the webbrowser object. Hope this helps
  7. imjbhowe

    can't get findwindow to work - newbie question

    I am trying to test for an open window using findwindow but I always get a value returned in the hwnd variable whether the app is open or not. I have tried putting garbage in for the caption name and it still returns numbers. All the info out there on find window indicates that if the window...
  8. imjbhowe

    Window 2000 Domain Controller Autologin

    Have you checked out "http://support.microsoft.com/default.aspx?scid=kb;EN-US;q310584" If you have further questions please post them
  9. imjbhowe

    Testing for an open window/app and minimizing it

    Thanks for the help but I am still having some issues. I am always getting a number for the handle, I did a test for window name "Minesweeper" and even if it isn't open it still gives a handle value and not a 0 like I am assuming it should. Thanks
  10. imjbhowe

    Testing for an open window/app and minimizing it

    I am trying to have some vb code that will minimize an app if it is open. The title of the app is consistent and I don't necessarily need to test for it because it will be open, I just need to minimize it. Thanks in advance.
  11. imjbhowe

    Scripts in AD..

    You can use wsh, check out for how to map network drive http://www.devguru.com/Technologies/wsh/quickref/wshnetwork_MapNetworkDrive.html
  12. imjbhowe

    Newbie: Multiple Web Sites

    You need to use dns to resolve domain name to ip address and then host headers in the internet services manager to link the domain name to different sites running on the same ip. If you need more detail just ask
  13. imjbhowe

    Windows scripting

    I use windows scripting host to make a .vbs file. It uses a vbscript like language. check out http://www.devguru.com/Technologies/wsh/quickref/wsh_intro.html for more info
  14. imjbhowe

    triggering an event when a form is open

    Thanks, that worked. I am still a very new to vb .net, I only have limites experience with vb 5. I need to get a book. I appreciate the help
  15. imjbhowe

    Roaming Profiles and Exchange

    I would definitely look into using group policy in conjuction with roaming profiles (it will become unmanageable without it). In group policy there are ways to limit the profile size, exclude certain directories from the roaming profiles (like temp internet files) and remove the cached copy of...
  16. imjbhowe

    triggering an event when a form is open

    I am trying to trigger an event when a form is open. I am using sub form_load() ' it is near the end of the code. Here is all the code. I have already tried using sub form1_load() as well but that doesn't work. Thanks in advance. Public Class Form1 Inherits System.Windows.Forms.Form...
  17. imjbhowe

    Does MCP stillexist?

    Go to http://www.microsoft.com/mcsa the mcsa is taking over mcp if I remember correctly
  18. imjbhowe

    Satellite Internet connection question

    try checking the reviews at dslreports.com also starbandusers.com I have supervised one home installation. Check the reviews on dslreports and follow their advice. Make sure the installer knows what they are doing and points the satellite in a knowledgeable manner. It is decent on...

Part and Inventory Search

Back
Top