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 Mike Lewis 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. bobbyforhire

    VPNGROUP unable to access inside devices over vpn

    Need a second pair of eyes, i'm able to ping the inside of the PIX firewall 192.168.2.254 from the VPN client but nothing else inside. PIX Version 6.3(5)145 interface ethernet0 auto interface ethernet1 100full nameif ethernet0 outside security0 nameif ethernet1 inside security100 hostname...
  2. bobbyforhire

    Cisco ACS. Using Radius and Active Directory

    Hello All - I am currently useing ACS 5.2 and have no problem using Tacacs+ with AD access. But with Radius it seems I can only get the Local identity store to work, does anyone know if you need to do something special to get Radius to work with active directory with Cisco ACS?
  3. bobbyforhire

    Tacacs+ not working

    I have setup the Cisco Secure ACS server. I am not having any issues with the login part but when I go to try to use the enable mode it doesn't take my password. If I just hit enter it will ask for the old password, then the new, then to confirm then end's up with auth failed. Using the...
  4. bobbyforhire

    CCENT Lab Help with SDM Please!

    Use version 5.x of Java to do anything with Cisco. You can uninstall your current version and head over to oldversion.com and pick up the 5.x flavor...works everytime..70% of the time
  5. bobbyforhire

    L2L ISSUE ASA5510

    I keep on stepping backwards on this one... A - 10.11.230.X/26 | ASA5510 B - 10.3.X.X/16 - MISC PRODUCT I keep getting "No Matching SA,Dropping" Before i was at least getting a crypto map issue. At Step 2. Result of the command: "show run" : Saved : ASA Version 7.0(8) ! hostname...
  6. bobbyforhire

    Loading XLS into Datagrid

    daCSV = New OdbcDataAdapter("SELECT * FROM [sheet1$]", cnCSV) fixed my issue.
  7. bobbyforhire

    Loading XLS into Datagrid

    I know you are pushing me in the right direction i just don't know how to use that connection string with my code to fill a datagrid....sorry
  8. bobbyforhire

    Loading XLS into Datagrid

    and the file actually exist in that location. I moved it thinking it was a security issue, but same results.
  9. bobbyforhire

    Loading XLS into Datagrid

    The Microsoft Jet database engine could not find the object 'xxx.xls'. Make sure the object exists and that you spell its name and the path name correctly I'm not sure what i'm doing wrong here. I keep getting that error. Dim DataFile As FileInfo = New FileInfo("C:\Price\xxx.xls") Dim...
  10. bobbyforhire

    Loading XLS into Datagrid

    Currently I am using a string to manually attach a csv to a datgrid. But now I would like to use a .XLS file but can't think of the connection string. Any ideas on how to change this code so it cna use XLS files? Dim DataFile As FileInfo = New FileInfo("C:\ALL_CARDS.csv") Dim cnCSV...
  11. bobbyforhire

    Export Grid to CSV

    Well, i'm having to manually load the .csv as i can't find a way to setup a schema to use a csv. cnCSV = New OdbcConnection("Driver={Microsoft Text Driver (*.txt; *.csv)};Dbq=" & DataFile.Directory.FullName & ";") So it's just whatever is on the grid that i made changes to i wanted to save...
  12. bobbyforhire

    Export Grid to CSV

    I've been looking for a way to do this and i'm guessing that i will just read the datagrid line by line and export it out to a csv. I'm using UltraGrid and i need to export it out to a CSV, does anyone have any VB code for this as all i can find is c# code. Thanks!
  13. bobbyforhire

    Reading a Large text file line by line looking for items..

    Andrzejek - Good Point. It is working though and if i remove XXX = True after it finds something it will just loop forever, so while it might be bad code, it works.
  14. bobbyforhire

    Reading a Large text file line by line looking for items..

    Well, i didn't go that route i think i went a longer route but it does get the job done and gives me a text file with that i need :) Dim PATH As String Dim CARDCHECK As String Dim PRICECHECK As String Dim x As String Dim ALLCHARS As String Dim...
  15. bobbyforhire

    Reading a Large text file line by line looking for items..

    Ok so importing my path i was abled to find a trend as stated above. All of the names i need will look like this >NAME OF ITEM</A></TD> So i will need to read that line and know that i need to chop off the </A></TD> at the end and grab everything that it has until it reaches a > then add that...
  16. bobbyforhire

    Reading a Large text file line by line looking for items..

    Out of all of that info i only need this Howltooth Hollow=0.10 Howltooth Hollow*=0.65
  17. bobbyforhire

    Reading a Large text file line by line looking for items..

    My problem was really wondering how can i tell it to extract the information that i need, reading the text file line by line really isn't that hard of an issue it's just the "'Do something and read a line from the file sr.ReadLine." is where I am drawing a blank
  18. bobbyforhire

    Reading a Large text file line by line looking for items..

    As the subject states i have a large text file that repeats itself alot with the same strings but with diffrent data. Here is an example. <TD CLASS="products">  <A HREF="http://www.XXXX.com/store/LRW_Howltooth_Hollow.html">Howltooth Hollow</A></TD> <TD CLASS="products"...

Part and Inventory Search

Back
Top