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

    Please help how to temove spaces from CSV file

    Hi there, Thank you for the response, I tried that but unfortunately it did not work...I got the following error - C:\perlscripts>perl -pi.bak -e 's/\s*("?)\s+,/\1,/g' test.csv Bareword found where operator expected at -e line 1, near "'s/\s*(?)\s+,/\1,/g' test" (Missing operator before...
  2. hayesb2

    Please help how to temove spaces from CSV file

    I need to remove spaces from fields in a CSV file... Using the following command works, but it does not remove the spaces from any fields in the CSV that are within double quotes - perl -pi.bak -e "s/\s+,/,/g" file.csv How would I expand that command so that it also would remove the trailing...
  3. hayesb2

    Vbscript - How to fill out IE form?

    Just a couple questions since I'm new to vbscript... 1) Where is the call to the funciton? Is it initiated when the SelectRadioByValue(oIE.document.All, "Mr") = True condition is met? 2)I will have multiple seperate Radio selections to populate. I do not see in the code where it specifically...
  4. hayesb2

    Vbscript - How to fill out IE form?

    Thanks. I will give it a try...
  5. hayesb2

    Vbscript - How to fill out IE form?

    I tried this - .Item("prefix").Checked = True But gives error that the Object doesnt support that method.
  6. hayesb2

    Vbscript - How to fill out IE form?

    How could a radio have a value of "Mr."? If you want it to be selecetd, try checked=True. I wondered the same thing, but thats the code I have to work with... ----------------------------------------------------------- Danp129, Got the checkbox to work...
  7. hayesb2

    Vbscript - How to fill out IE form?

    I can get the textbox and drop-down to work, but cannot get the radio or checkbox selections to work. Please see the code I'm trying to work with below - RADIO <input type="RADIO" name="prefix" value="Mr" ></font></font> <font size="1">Mr.</font></b> <font size="1"></font><font...
  8. hayesb2

    Vbscript - How to fill out IE form?

    .Value isn't the right method for radio/drop-down selection... Sorry I am new to VBscript and not familiar with all the property/methods. Below is the error- Object doesn't support this property or method: 'Item(...).Value'
  9. hayesb2

    Vbscript - How to fill out IE form?

    Danp129, Thank you!! Thats exactly what I needed to get my start! Let me know if you get the drop-down/radio button to populate...
  10. hayesb2

    Vbscript - How to fill out IE form?

    Can anyone provide a sample vbscript which would be used to popoulate a text box in IE and select an option from a drop-down box? (Reason being is I need to fill out lots of forms and do not know how to code a .vbs file to make IE active and populate...A simple example should point me in the...
  11. hayesb2

    WD 200GB ATA-100 w/ 8 MB Cache Buffer extremely slow! Why??

    I have a new AMD64 3200+ system w/ 1GB RAM. My Hard Drive is a Western Digital 200GB ATA-100 (8 mg cache buffer). I defrag often but my hard drive constantly is running. I close out programs via msconfig, run spyware bot and destroy and spyware and it still runs alot. Anyways, I ran SiSoft...
  12. hayesb2

    How to start DHCP client service after renew lease failed

    Ok for DHCP in my registry - Depend \onService keys, when I double-click it it shows the following dependancies: Tcpip, Afd, NetBT For NetBT : Tcpip I do not see the SYMTDI or NISDRV listed anywhere. When I go to manage my computer-> services-> DHCP Client it says 'Starting' but I cannot...
  13. hayesb2

    How to start DHCP client service after renew lease failed

    Yes I did recently uninstall Norton Antivirus, and the problems seemed to start happening around that time. Hmmm...Have you heard of this being a problem before? I am not at the pc with the problem at this moment, but I will try doing what you suggested later today and post the results....Thanks...
  14. hayesb2

    How to start DHCP client service after renew lease failed

    When I type &quot;regsvr32 ipmontr.dll&quot; i get the following error message: 'ipmontr.dll was loaded, but the DllRegisterServer entry point was not found. This file can not be registered.' Any other help or assistance??
  15. hayesb2

    How to start DHCP client service after renew lease failed

    I've tried repairing XP...no luck. When i type 'netsh int ip reset reset.log' I get the following error message: Initialization Function InitHelperDll in IPMONTR.DLL failed to start with error code 10107 Any help or suggestions??
  16. hayesb2

    How to start DHCP client service after renew lease failed

    OK installing another protocol is a good idea and something I have not tried. However, I thought you could not uninstall TCP/IP in Windows XP. In the network properties, the Uninstall option is not a selectable option when highlighting TCP/IP. Can you give me any info on how to uninstall?
  17. hayesb2

    How to start DHCP client service after renew lease failed

    I am having this exact same problem on a laptop. Can anyone help? I have searched the interent and cannot find an answer...
  18. hayesb2

    Move Comp-3 Field

    I am only trying to move an input packed field to an output packed field. However cannot move the entire group because I am adding fields in the output. WORKING STORAGE. 10 LVL-OUTPUT. 15 INFO-OUTPUT PIC XXX. 15 KEY-SEQ-OUTPUT PIC S9(3) COMP-3. 10...
  19. hayesb2

    Move Comp-3 Field

    I am reading in a field on an input file as a PIC S9(3) COMP-3 field and simply want to move that to another PIC S9(3) COMP-3 field. However I am having problems trying to accomplish this...Can anyone help?

Part and Inventory Search

Back
Top