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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by talln6e

  1. talln6e

    Server Application Error

    I don't know why you are getting this error. I think I get a popup window when I log in to Windows with the same message. I do know that you can get to the Event Log by clicking - Start / Programs / Administrative Tools / Event Viewer There are commonly three Event Logs. Click one on the left...
  2. talln6e

    File.Copy("c:\dirname\abc*.txt... Does Not Work!

    Thank you for your help, but unfortunately, when I try File.Copy("c:\sourcedir\abc*.jpg","c:\destdir\abc*.jpg",True) or File.Copy("c:\sourcedir\abc*.*","c:\destdir\abc*.*",True) neither work. Thanks again Nouman and Sypher for your time!
  3. talln6e

    File.Copy("c:\dirname\abc*.txt... Does Not Work!

    Thanks Nouman But I really want to have one copy command. This utility I'm writing may be used to copy 1000 files at a time. I also have a similar looping routine you may be interested in seeing: Dim SourceDir As String() = Directory.GetFiles("c:\sourcedir\", "abc*.txt")...
  4. talln6e

    File.Copy("c:\dirname\abc*.txt... Does Not Work!

    I am trying to copy a block of files from one folder to another. I would like to refer to these files by the first few characters, using a wildcard. The command File.Copy("c:\sourcedir\abc*.","c:\destdir\abc*.",True) does not work. Does anyone know the proper way to do...
  5. talln6e

    ShellExecute to open a hidden window not working

    I want to exec a url in VB6 or Vb.Net, but NOT open a window when doing so. Using ShellExecute from VB6 with 0 for a hidden window is the closest I can get, but the window is opening anyway. Does anyone know another way? This is my current code: Dim myurl as string Dim res As Long myurl =...
  6. talln6e

    Using SQL to copy data from Excel to Access in VB

    I am doing something very similar - With objConnection .Provider = "Microsoft.Jet.OLEDB.4.0;" .ConnectionString = "Data Source=" & strXlsFile & ";Extended Properties=""Excel 8.0;HDR=No;MaxScanRows=16;""" .Open End With strQuery =...

Part and Inventory Search

Back
Top