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 SkipVought 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. cornboy88

    Extracting the content of pdf Document

    look here: http://stackoverflow.com/questions/3367390/read-pdf-form-data-using-itextsharp
  2. cornboy88

    JavaScript to validate <asp:CustomValidator>

    Forget the Custom Validator <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $('#<%= btnSubmit.ClientID %>').click(function () { if...
  3. cornboy88

    row change in table

    I am navigating a table with text boxes using the arrow keys on the keyboard with the script below. I need to change it so is does not need the id of the text boxes. but it still needs to go you and down in the same column as the one you started in. The below script assumes you are using aspx...
  4. cornboy88

    Datagrid reorder

    I have some javascript that will work with 2 buttons on the side of the datagrid. then when the user selects the row they can move the row up or down. I need some help changing the script. I need 2 buttons at the end of each row. When a button is pressed it moves the record either up or down in...
  5. cornboy88

    Saving Data to text file.

    I have a program that prints out pdf files. I have a list of 30 Bulk centers. Right now I print out one bulk center per sheet, each sheet has 3 spots to print the center info. It kind of looks like this: 1 1 1 < this is one page 2 2...
  6. cornboy88

    file shares stop after reboot

    I am currently running Web Server 2008 and I have shared 2 folders. When I reboot the system the server stops sharing the folders. I have 2 NICs in the system both have static IPs. One of the NICs has our "domain name" with it and the other has "unidentified network". Not really sure how to...
  7. cornboy88

    onfocus/onblur problem

    I have a input(file) box that is loaded with the web page with a button to dynamically add more input boxes. I want to change the color of the background of the input boxes when they have focus. the input box that is static works fine in IE7 but not FF3. When the add button is clicked the boxes...
  8. cornboy88

    Find files on a system

    try this: Set FSO = CreateObject("Scripting.FileSystemObject") Set WshShell = WScript.CreateObject("WScript.Shell") objextension = ucase(inputbox("Find What File?","Find")) if objextension = "" then BtnCode = WshShell.Popup("You either hit CANCEL or left the text box blank." & vbcrlf &...
  9. cornboy88

    Serial Port

    You could use MSComm control. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/comm98/html/vbobjcomm.asp or by API. http://www.thescarms.com/vbasic/CommIO.asp here are some more examples: http://www.vbrad.com/pf.asp?p=source/src_mscomm_tutorial.htm...
  10. cornboy88

    Migrating from OE to Outlook

    I am using Outlook 2002 sp3. If there is a outlook icon on the desktop, right click on it and choose properties. Now click on "show profiles". Delete the exchange user account. OR When Outlook is open. From the menu bar: tools > Email accounts > view or change > next > Highlight the exchange...
  11. cornboy88

    Retrieve information from registry

    Here are some snipits that should at least point you in the right direction. Rgistry [COLOR=green]'read the registry w/REGEDIT[/color green] Dim oWS : Set oWS = CreateObject("WScript.Shell") oWS.Run "regedit /e /a tempfile.txt...
  12. cornboy88

    Recursive File Search With VBScript

    try this: Dim FSO, WSH, objDirectory, objFile, TheFiles Set FSO = CreateObject("Scripting.FileSystemObject") Set WSH = CreateObject("Wscript.Shell") Set objDirectory = FSO.GetFolder(InputBox("Enter Starting Folder path!")) Set TheFiles = objDirectory.Files Parentfolder =...
  13. cornboy88

    Delete files older than modified date

    try replacing: If DateDiff("d", Now, srcFile.DateModified) < -7 Then with If DateDiff("d", Now, srcFile.DateLastModified) < -7 Then Hope this helps.
  14. cornboy88

    Removing a empty line from a Text file

    try this: Const ForReading = 1 Const ForWritting = 2 Set objFSO = CreateObject("Scripting.FileSystemObject") Set objOutputFile = objFSO.CreateTextFile("C:\Tolisbon\output.txt") Set objTextFile = objFSO.OpenTextFile("c:\emigrants\btd04.dat", ForReading) Do While objTextFile.AtEndOfStream <>...
  15. cornboy88

    WMI Inventory to SQL

    Is this it? http://cwashington.netreach.net/main/default.asp?topic=news
  16. cornboy88

    map drive to remote system

    NET USE [devicename | *] [\\computername\sharename[\volume] [password | *]] [/USER:[domainname\]username] [/USER:[dotted domain name\]username] [/USER:[username@dotted domain name] [[/DELETE] | [/PERSISTENT:{YES | NO}]] NET USE {devicename | *} [password | *]...
  17. cornboy88

    mapping drive to computer not in domain

    have you tried to delete the mapped drive? net use g: /d net use g: \\jack\shared\games /user:bob\bob1 xxxxxx
  18. cornboy88

    USB Drive encryption

    I don't know if it will run off of a usb drive, but take a look at this link http://passwordsafe.sourceforge.net/
  19. cornboy88

    mapping drive to computer not in domain

    Have you tried at cmd file? net use z: \\pcname\share /user:domain\username password the only thing is it will leave the user name and password visible
  20. cornboy88

    Can't logon to Domain following GHOST

    Here are some links that should help you. If these links don't work for you do a google search. http://www.microsoft.com/technet/prodtechnol/winxppro/deploy/duplication.mspx http://www.uea.ac.uk/itcs/software/xp/xp-sysprep.html http://www.jsiinc.com/SUBM/tip6200/rh6207.htm

Part and Inventory Search

Back
Top