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 dencom 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: SysAdmMke
  • Content: Threads
  • Order by date
  1. SysAdmMke

    Add CR/LF to Multiline Text Box

    Ok.. I am stumped on this one. I want to populate a text box each time a button is pressed but when I do that, it wants to overwrite the same line each time instead of doing a new line. example: textbox1.text = name(n) It puts the name in the text box then when I increment the array and put...
  2. SysAdmMke

    Reading a text file line by line by clicking the Next Button

    Private Sub cmdLoadConfig_Click() Dim strTextLine As String Open "C:\abcd.txt" For Input As #1 Do While Not EOF(1) Line Input #1, strTextLine txtRangeSelect.Text = strTextLine Loop Close #1 End Sub I can understand on how to read in file but how do i loop for when the user clicks the next...
  3. SysAdmMke

    Polycom IP 320

    Ok, I downloaded the Asterisk Now distro, 1.7.0 from Asterisk.org I can add the extensions using Freepbx that came with it but cannot do anything with the phone. I was able to add a soft phone and that came up just fine, but the polycom ip 320 does not want to dial anything. I have checkd...
  4. SysAdmMke

    Logging on to Workstation as a Local Admin instead of Domain Admin

    I have a fellow IT Systems Administrator who insists on logging on as the local admin instead of domain admin whenever he works on someones PC. His reasoning is because if there is malware or a virus, the domain admin account as more access throughout the domain and it could easily affect...
  5. SysAdmMke

    Logging on to Workstation as a Local Admin instead of Domain Admin

    I have a fellow IT Systems Administrator who insists on logging on as the local admin instead of domain admin whenever he works on someones PC. His reasoning is because if there is malware or a virus, the domain admin account as more access throughout the domain and it could easily affect...
  6. SysAdmMke

    Deploying Office 2007

    thread68-1413487 Anybody ever get a answer on this? If you use the MSI file to deploy MS Office 2007, it will ignore the MSP custom file. Thanks Mike
  7. SysAdmMke

    RJ45 to RS-232 Db 25 and Db9

    I am making a straight cable db25 to db9 connection using CAT 5 wiring. What I am wondering is what is the standard for the color code for serial communications? Thanks Mike
  8. SysAdmMke

    Environment Variables

    set oShell=createobject("WScript.Shell") set envSystem = oshell.Environment("system") var = "TEST" envSystem.item(var) = 1234 'create the env variable When I use the code above, my variable gets set under the environmental variables under my computer. This is good but I also want to see this...
  9. SysAdmMke

    Need help opening port in back to back isa config

    How do I open port 15425 in a back to back isa config? ISA 1 Nic 1: Internet Feed Nic 2: DMZ 192.168.163.1 ISA 2 Nic 1: DMZ 192.168.163.250 Nic 2: Internal Basicaly I need port 15425 open from ISA 1 and have it point to a machine in the internal network. I created a protcol on...
  10. SysAdmMke

    How to get Website to use domainname only

    For some reason, it I go directly to my web site internally name without www it displays fine. When i tried it on the outside with www, it works but without the www and just the domain name, it says page cannot be diaplayed. Where do I configure this to not use www? Is this in the listener...
  11. SysAdmMke

    Add items to WORD standard toolbar

    How would I add the SAVEAS icon to the Word 2003 standard toolbar using vbscript? Thanks Mike
  12. SysAdmMke

    mysql multiple delete question using checkbox

    Can anyone tell me why the code below will not delete the records I check? I went though the code several times and just don't understand it. Can anyone help? Thanks Mike <?php $link = mysql_connect("xxxx.org", "xxxxx", "xxxxx"); $tbl_name="signups"; mysql_select_db("ms150", $link); //...
  13. SysAdmMke

    Redirect Terminal Services local C drive to users local c drive

    Does anyone know of a way to redirect a Terminal Servers local C: drive to a users local drive. I have a application that runs on the Terminal Server and outouts to the C: drive. When it outputs, it is writing onto the Terminal Servers local C: drive. I need to to write to the users local C...
  14. SysAdmMke

    Phones and Cards

    I just started playing with Asterisk @ home. Anyone know the cheapest place to get phones? Also what is the cheapest for FXO cards for plain old phones? Thanks Mike
  15. SysAdmMke

    Alerts on Console

    We used to get alerted on the console when a tape was exported to the portal. Someone how this was turned off and I cannot figure a way to turn it back on. Any one have any ideas? Backup Exec. 10 Dell Power Vault Tape Library Thanks Mike
  16. SysAdmMke

    Blackberry 7750's

    We just accquired some new 7750's however nobody can read attachments from them. It just says cannot open attachment and puts a read x. Any ideas?

Part and Inventory Search

Back
Top