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

  1. SysAdmMke

    Add CR/LF to Multiline Text Box

    Thank again jebenson! Appreciate the help! That worked.
  2. 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...
  3. SysAdmMke

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

    jebenson Thanks guy! This works great and just want I wanted. Appreciate your help and all the rest of guys the help! Yes I could have read it into an array as well. If I want to go previous text, then I guess I would have to do that. Like have a back button. The only read to go back...
  4. SysAdmMke

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

    well how to do call the button event from the load form event? it seems it won't work unless the variables are declared in that procedure.
  5. SysAdmMke

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

    Thanks Skip So when I click the button,it will read the line one line at a time each time i hit the button? This is what I am trying to do. Intead of reading thr entire file in at once. -Mike
  6. 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...
  7. SysAdmMke

    Polycom IP 320

    Thanks, no i didn't know about endpoint. I am just got this phone from ebay and no instructions or software was shipped with it. Just the phone and the power cord. I am trying to get my feet with with Asterisk and Freepbx. So is it that I would run endpoint, it would create a file that I...
  8. 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...
  9. SysAdmMke

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

    But there is no real difference between logging as a local admin or logging on as domain admin. You still have the sames rights to the box its just that domain admin allows you to get at shares where the local admin would not. Correct? -Mike
  10. 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...
  11. SysAdmMke

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

    Ok, so what your saying is I am not going to infect my network any less by logging on as a Local Workstation admin versus a domain admin?
  12. 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...
  13. 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
  14. SysAdmMke

    RJ45 to RS-232 Db 25 and Db9

    Actually what I was wondering if the color codes from RJ45 to DB9 to DB25 were. Example: Blue - Pin 2 on DB9 Blue/White - Pin 3 on DB9 Orange - Pin 4 Orange/White pin 5 on DB9 Or do I just make up my own colors? I am just saying if there was a standard for this I would follow it. Thanks Mike
  15. 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
  16. SysAdmMke

    Environment Variables

    Ok got it! Thanks for the help!
  17. SysAdmMke

    Environment Variables

    Thanks PHV How come when I go to the DOS command prompt and type SET It doesn't show up on the Environmental Variables List. and if I echo %TEST% . Does this mean it is losing the variable when the script closes? Thanks Mike
  18. 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...
  19. SysAdmMke

    hp 8150 n network printer

    Need more info. What is the IP address of the printer? and what is the IP address of the computer?
  20. 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...

Part and Inventory Search

Back
Top