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. Nitrous270

    Array Question

    That did the trick. I knew there had to be something simple. Thanks, Skie
  2. Nitrous270

    Array Question

    I'm pulling in a IPAddress using WMI and then I'd like to convert the IP Octets into an array. I'm having trouble creating the array. I'm probably missing something simple but I can't seem to figure this out. Can someone explain why this doesn't work strIPAddress="192.168.0.1" arrIP=...
  3. Nitrous270

    Sysprep Drivers

    Our company has a good working image of WinXP Pro with a drivers folder for various models. We have added a new PC model to the list that we support so when that was done we reorganized the drivers folder elimated duplicate drivers for the same piece of hardware. So say model_1 and model_2...
  4. Nitrous270

    Find userID from full name using AD

    mrmovie's very first little bit of code helped me come up with this then I put in an excel spreadsheet manipulated the input and output the way i wanted to show on the spreadsheet and tied it to a command button on the spreadsheet. Works great for me here is my final code for both functions...
  5. Nitrous270

    Find userID from full name using AD

    From tsuji's post I think I want to clarify how I currently retrieve this information. I'm using MS Outlook, connected to an exchange server. I get a list of names but I need their user ID so I enter the list into Outlook as if I'm going to address the email to these users. Sometimes the name...
  6. Nitrous270

    Find userID from full name using AD

    Okay I was looking at the script in this thread and wondering is there a way to go backwards. If I have a user's full name is there a way to go backwards and retreive their user ID? http://www.tek-tips.com/viewthread.cfm?qid=463223 Also as an FYI from that thread I tried the following and...
  7. Nitrous270

    Netdom - Does not work the first time

    It works fine the few times I have tested it from the command prompt. However I have another idea that came about yesterday when I was testing it... If I run the script from a active directory account that has admin privlidges on the PC I have to run it 2 times. If I run the script from a...
  8. Nitrous270

    Netdom - Does not work the first time

    I have this piece of my code that is calling netdom to remove the PC from a domain and put it into a workgroup. The first time I execute the script it acts like it disjoins it from the domain. However, when I look at My Computer > Properties and the Network Identification tab the PC is still...
  9. Nitrous270

    Expireing Inputbox

    Thank you tsuji. Sometimes its just knowing what to search for anyway your answer led me to this website ... http://www.devguru.com/Technologies/wsh/quickref/wshshell_Popup.html And with that info I constructed this generic script. Basically the user has to answer "Yes", change the input...
  10. Nitrous270

    Outlook Address Book

    I currently have a VB Script that returns the UserID but would like to take it one step further by using Outlook Exchange Server Address Book. Basically if I input a UserID into the address line of a new email and I click on check names it changes the UserID to the first and last name of the...
  11. Nitrous270

    Expireing Inputbox

    Is it possible to have a visual basic script have an Input Box to accept a custom answer and if the user doesn't make an input within a specified time then it accepts a default? This is the best piece of code I can come up with so far but the StrPtr() function seems to return an error no to...
  12. Nitrous270

    Getting Rid of "Importing ...." Message Window

    Bill, Yeah i will admit i'm kinda bad about that (the stars and responding) My work on the database I've been workin' on has been sparatic and thus so have my trips to these forums. I've tried to post solutions to common problems that I've found other users having trouble with as well. But I...
  13. Nitrous270

    Supressing "Importing..." Image Box

    Here is a link to a different thread I posted on how I solved the problem. thread702-588996
  14. Nitrous270

    Displaying Pictures

    Here is what is a link to another thread I posted on my solution to this problem. thread702-588996
  15. Nitrous270

    Getting Rid of "Importing ...." Message Window

    Well i've looked all over these forums and couldn't find a definate answer to the problem of hiding the "Importing ..." Image message box when displaying images on a form so I thought I'd post what found and did. First of all I searched the web and found this thread on another forum...
  16. Nitrous270

    Skip Record

    I have a form with two entries that are somewhat hardcoded into the database and don't need to be edited or even seen. Is it possible to skip over these records based on a field on that form? I mean I could do a check when the form updated and if true advance to the next record but if the user...
  17. Nitrous270

    Shift+Tab

    Okay well I have some subforms in which I try and use Shift+Tab on some fields that will not go back to the main form. Hopefully this clarifies, Nitrous270
  18. Nitrous270

    Supressing "Importing..." Image Box

    Hmm no luck. I tried that on both the Form_Current event and the AddPicture button and both still displayed the importing image box. Any further suggestion? Thanks, Nitrous270
  19. Nitrous270

    Shift+Tab

    There are a few places on my form that i had to manually set the focus using VB how can i do the same using Shift+Tab to make the focus go backwards? Thanks, Nitrous270
  20. Nitrous270

    Supressing "Importing..." Image Box

    Is there a way to supress the "Importing such and such Image" Box and progress bar when I go to a new record on a form. I've already tried. Any other suggestions? Private Sub Form_Current() DoCmd.SetWarning (False) Code to assign picture path DoCmd.SetWarning (True) End Sub...

Part and Inventory Search

Back
Top