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 TouchToneTommy 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 morlassino

  1. morlassino

    VB Search Word Excel Documents

    Anyone know if there is a way using VB.NET to search a word doc in a folder for a specific word or phrase? i can find and locate files i just am unable to search for keywords in the files in the directory. thank you MARIO P ORLASSINO ASSISTANT MANAGER IT
  2. morlassino

    Login Problems to the DC

    Use the wizard on win 2003 server to setup the vpn it makes life so much easier. There are a few things you need to do to make sure the vpn will work you need access to the router b/c you will need to foward some ports to the server. also a static external ip would be a good idea, and the...
  3. morlassino

    Windows 2003 SRV Password Complexity problem

    ok.. i finally figured this out. After changing all the policies i had to reboot the server for the changes to stick. that was the only thing i never tried. Very Strange thank you all for you help MARIO P ORLASSINO ASSISTANT MANAGER IT
  4. morlassino

    Windows 2003 SRV Password Complexity problem

    ok tried all these ideas still not working? MARIO P ORLASSINO ASSISTANT MANAGER IT
  5. morlassino

    Windows 2003 SRV Password Complexity problem

    i have disabled this in the domain group policy and the OU group policy and it still is enforcing it how do i shut this feature off. I have tried everything help please!!! MARIO P ORLASSINO ASSISTANT MANAGER IT
  6. morlassino

    SQL INSERT

    thank you i think i finally got it.. MARIO P ORLASSINO ASSISTANT MANAGER IT
  7. morlassino

    SQL INSERT

    Private Sub ADD_Click(Index As Integer) Dim oconn As New ADODB.Connection oconn.Open "Provider=sqloledb;" & _ "Data Source=dc-devlp01-srv/hcc_sql_srv;" & _ "Initial Catalog=breakdownsvb1104;" & _ "Integrated Security=SSPI" oconn = "insert into brkdetails(busno)...
  8. morlassino

    SQL INSERT

    i am still having problems... i have tried many different things dim cn as new adodb.connection cn = "insert into brkdetails(date) values('11/6/04') cn.execute cn.close can anyone help please!! MARIO P ORLASSINO ASSISTANT MANAGER IT
  9. morlassino

    SQL INSERT

    I AM SORRY I may sound stupid i am new to VB what should i do something like this... Set SQLSTRING = New ADODB.Connection SQLSTRING = "insert into brkdetails(busno) values('548')" Adodc1.RecordSource = SQLSTRING MARIO P ORLASSINO ASSISTANT MANAGER IT
  10. morlassino

    SQL INSERT

    what is wrong with this SqlString = "insert into brkdetails(busno) values('548')" Adodc1.RecordSource = SqlString Adodc1.Refresh it inserts but i get error that can't while not open.... MARIO P ORLASSINO ASSISTANT MANAGER IT
  11. morlassino

    VB DATA COMBO BOX AND SQL

    I thank you i got it to work i needed to remove the # signs that caused an error. but what had happened is the record source for the adodc1 was set to a table and then i was forcing to change once i put a sql statement in the record source on the properties of the adodc1 it worked that you for...
  12. morlassino

    VB DATA COMBO BOX AND SQL

    i changed the name of the field on both tables to dateid and still same thing MARIO P ORLASSINO ASSISTANT MANAGER IT
  13. morlassino

    VB DATA COMBO BOX AND SQL

    i now get an error object required.. i am at a lost pstrselect.Open = "SELECT date from brkdetails WHERE date = #" & DataCombo1.Text & "#" i get error object required with pstrselect = "SELECT date from brkdetails WHERE date = #" & DataCombo1.Text & "#" i get "incorect syntax next to...
  14. morlassino

    VB DATA COMBO BOX AND SQL

    i have maybe a simple question please forgive my stupidity in advance. I am new to VB and i have programmed in VFP but i need to switch to VB. anyway i have two tables on SQL Server one is the parent and othe ris a details my question is that i would like to use a datacombo box to choose a date...
  15. morlassino

    Conditional Formatting in Grids VFP

    oops i misspelled i still get the error the error i can't seem to get past is a 'data tyoe is invalid for this property.' i am confused... i thought i had it set up right what i am trying to do is have if the grid box one of the values matches the critea it changes the font to strike through...

Part and Inventory Search

Back
Top