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 Wanet Telecoms Ltd 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 bluzegtr

  1. bluzegtr

    NT Login Script

    Hey thanks for the reply. That is correct. All that is listed under User Manager for the script is login.bat I will check out kixstart. Don "I feel more like I do now than when I got here." ~ Defcon Moderator ~
  2. bluzegtr

    NT Login Script

    C:\WINNT\system32\Repl\Import\Scripts\login.bat And, as it should, it appears at: \\server\NETLOGON\login.bat Thanks "I feel more like I do now than when I got here." ~ Defcon Moderator ~
  3. bluzegtr

    NT Login Script

    I have both 98 and XP clients on an NT 4 domain. Clients running XP SP2 are not executing the script: net use f: "\\gateway server\g" net use g: "\\gateway server\f" net use h: /home net use p: "\\gateway server\ppc" net use t: "\\gateway server\f" net use lpt2: "\\gateway server\epsonlq-" net...
  4. bluzegtr

    Can't Update Text or Memo field

    I get the table to update the field with: UPDATE TabA SET TabA.Numb = '::Numb::', TabA.Jobs = '::Jobs::', TabA.Desc = '::Desc::' WHERE TabA.PRACTID = '::PRACTID::' I have not had to implicitly declare the table before. Why would I need to declare the table implicitly for text or memo...
  5. bluzegtr

    Can't Update Text or Memo field

    I have noted that I can update numeric fields and text fields that are set to length of 50. For text fields set at 255 length or for type=memo, I cannot update. Is there some constraint that I don't know about? Don "I feel more like I do now than when I got here." ~ Defcon Moderator ~
  6. bluzegtr

    I am using FP 2002 w/MSA DB backend

    For anyone who cares, I discovered when usign the WHERE clause, the syntax must be as follows: - For numeric fields - WHERE this_value = ::that_value:: - For text fields - WHERE this_value = '::that_value::' "I feel more like I do now than when I got here." ~ Defcon Moderator ~
  7. bluzegtr

    Can't Update Text or Memo field

    Can't Update Text or Memo field - using FP 2002 w/MSA DB backend. For this one update I have 3 fields that are affected: Numb - Number,double Jobs - Number,double Desc - Memo (also tried converting to text) This portion works: UPDATE TabA SET Numb = '::Numb::', Jobs = '::Jobs::' WHERE PRACTID...
  8. bluzegtr

    I am using FP 2002 w/MSA DB backend

    I am using FP 2002 w/MSA DB backend. SELECT statements work fine. I get the the following error when executing and UPDATE query: Description: [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1. Number: -2147217904 (0x80040E10) Source: Microsoft OLE DB Provider for ODBC...
  9. bluzegtr

    FP 2002 Query MSA 2002 DB

    FrontPage 2002, Access 2002 I am using an example from http://www.spiderwebwoman.com/tutorials/doubledropdown.htm I created and ASP (search1.asp) I created a form and populated one drop down list with a DB Query. Ex: SELECT DISTINCT [TTR Data].State FROM [TTR Data]; The action of the form is...
  10. bluzegtr

    Query a Access Database

    Did you ever find a solution to this? I have an Access 2002 DB and am using an ASP to access it but am having difficulty getting the DB to return only what I asked for.

Part and Inventory Search

Back
Top