Recent content by tembenite

  1. T

    Make a Function TimeOut after a certain interval

    Somebody has to have a solution for this. Anyone?
  2. T

    Make a Function TimeOut after a certain interval

    If I put the function that called something within a while loop, that uses the timer function, is it automatically going to time out right at the interval I set? (or is it going to wait until it hits the WEND argument?). My problem is that a windows API I'm calling (which does not accept a...
  3. T

    Make a Function TimeOut after a certain interval

    Anyone know how I'd make a function automatically time out after a given interval, regardless if one of the tasks its running has finished yet? I know how to pull the time info from the Timer, but not how to use that information to time out the function. Thanks!
  4. T

    Can I disappear my DB to the system tray...? Please?

    For those of you looking for the 97 Addressof code, I followed the links and was never asked for a membership. Below is the excel document with the "Addressof" information, referenced from the links earlier in this post.
  5. T

    Names of computers on network.

    References The Solution - Code that resulted in the solution The Website for the Author to the above solution (Though No Reference To This Code) ------ Other Sources on the same topic Main VB Code - On Enumeration Article Associated with Above Code VBA Code Using some Wnet Calls C#...
  6. T

    Names of computers on network.

    I Finalley Got it!! Okay, after hours of trying to edit different code modules, aimed at different things then getting the computer names, I finalley found a solution. On the web I found a VB class module that enumerates the domain. I created a new class module in my DB (called cNetView), and...
  7. T

    Names of computers on network.

    I'm working on a strictly code version to do this (Which I will post when I have it done). However, right now I'm just using a shell execution of "net view" captured into a textfile. E.G. Shell "cmd /c ""net view > netview.txt""", 6 I then open the file as a textstream and process the info. It...
  8. T

    Get server time instead of System Time?

    Microsoft has a built in service on most of their servers that will give you the time. I think its port 13? If you telnet to port 13? (google it to see if this is right), it should give you the time for that server. You should be able to capture that feedback in some form to use for your...
  9. T

    Search the users registry for a specific key

    For People Looking for more information on editing the registry Check out the website here . This shows a version of the above code, but it is better documented. There are also a number of example functions to demonstrate different parts of the registry.
  10. T

    Search the users registry for a specific key

    Remote Computer? Okay, is there a way to use this to query a value from a remote computer (that I have admin access to)? I don't need to change anything, just query the value from a remote computer. If anyone could help me adapt this code for that pupose, I would very greatly appreciate it...
  11. T

    Retrieving HTML From Website, Parsing, Then importing - Whats the best way?

    I've searched for this, but I must not have the right search terms. I am looking for a way to load the contents of a website as a string, into my VBA so I can parse it for the information I need. I have been using: Function getWebPage(strURL As String) As String Dim XML As MSXML2.XMLHTTP...
  12. T

    how to run an external program and put its output in access

    You can likely trigger the program from access. As long as its a DOS prompt base program, you can put "YOURPROGRAM > textfile.txt" to capture the screen contents into a textfile. Then you could import that textfile into access.
  13. T

    Access Security - Preventing Cracking the MDW

    Ok, I'm a little concerned. Having somehow managed to type the only admin account password twice incorrectly (the same way) when changing my password, and being locked out, I searched for an MDW cracker. I found a handful of different programs that claimed they could tell you the passwords of...
  14. T

    Okay, I did something stupid - Restoring Full Menus (When Shift is already Disabled)

    Thanks!!!!!! I don't know why I wasn't thinking along those lines. That worked great! Thanks again!
  15. T

    Okay, I did something stupid - Restoring Full Menus (When Shift is already Disabled)

    In securing my database I had already disabled the shift key. When I go back and forth editing the front-end of the database, I frequently re-enable special Keys, etc to make things easier. When I'm done, I re-secure the file. Apparently the last time I did this I was a little trigger happy, and...
Top Bottom