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: *

  • Users: bcoates
  • Content: Threads
  • Order by date
  1. bcoates

    Getting LDAP info

    I have a script that is creating users then adding them to a group inside a OU. If a user already exsists in the domain how can a query AD given just the cn to get the ldap path so i can add the user to the group? Thanks
  2. bcoates

    Unable to join win2k domain

    I have a win2k server acting as DC and the DNS server. I am attempting to join my new server 2003 server into the domain but when i do i get the error: The following error occured while trying to join the domain The account is not authorized to login from this station I am using an...
  3. bcoates

    Chat Server with BSD sockets and Select()

    I am trying to write a program that uses BSD Sockets to create a server then accept connection from mulitple clients. When the server recieves a message from a use it should then send it out to all connected clients. Where is there an example of how to do this many google searches have returned...
  4. bcoates

    Continuosly displayed form

    I need to show a form that is always at the top of the screen no matter what application is being used at that moment. Similar to the little bar that comes down when you are using Remote Desktop that displays the IP address. Probably a real simple question but im a n00b to C#. Thanks
  5. bcoates

    Undoing Alt-Enter in a spread sheet

    I have a spreadsheet where one column is the customer name. The column next to it is the items the customer purchased. Normally the items column has a separate row for each item, but someone used the alt-enter method to put all the items in one cell instead of each item in its own row. Is there...
  6. bcoates

    Query to get difference between tables

    I have two tables that i joined by name in the relationship editor. I need to get all the records from table 2 where there is no match to table 1. ex TABLE 1 Name Description tab_name tab_name descript1 tab_name tab_name descript2 tab_name2 tab_name descript3 TABLE 2 Name...
  7. bcoates

    Formatting Word using a macro

    I am writing a macro in Word 2003 I am outputting a picture and then putting a table after it. How do i put a space between the picture and the table? Code Snippet below. 'Outputting the picture set objshape = ThisDocument.shapes objshape.AddPicture 'Between this picture and the table i need...
  8. bcoates

    Change file extension

    How do i change a file extension from file.tmp to file.wmf I know it is easy and i say thank you in advance.
  9. bcoates

    Import Excel(2003) into Access(2003)

    I have a Excel workbook with many worksheets, each worksheet corresponds to a table in database. How do i write a vbscript that would sit on the desktop that imports the worksheets to the tables and overwrites the exisitng data?
  10. bcoates

    Folder manipulation

    How can i check the creation date of a folder then delete it if it is over two weeks old?
  11. bcoates

    sending logon name to an email

    How do you write a script that will get the current log-on name and then send it to a specified e-mail. I will be using gmail as my temp smtp server.
  12. bcoates

    type mismatch error when using CDate

    When the following script is run i get a type mismatch error at the line where i call the CDate function. dim duedate dim diff Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile("c:\duedate.txt", 1) strtemp = objFile.readline duedate = CDate(strtemp)...
  13. bcoates

    Copying file to a folder

    I have a file that i am copying from a mapped drive to: C:\Documents and Settings\All Users\Start Menu\Programs\Startup when i run the script i get a permission denied error even if i am the admin. I think think it is something to do with the spaces but dont know how to fix it.

Part and Inventory Search

Back
Top