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 NthDegree

  1. NthDegree

    Query / loop: Auto filling a column until next instance..

    Buy Monarch? For that little snippet of code? The proverbial "killing a fly with a shotgun" theme. :)
  2. NthDegree

    Query / loop: Auto filling a column until next instance..

    You will not need to add the DAO. though.
  3. NthDegree

    Query / loop: Auto filling a column until next instance..

    dhookom is correct, when you enter the code, you will need to click on tools, references and then add the reference "Microsoft DAO 3.6 Object Library" that will have the definition for the database and recordset keywords so the interpretor knows how to process them. Depending on your version of...
  4. NthDegree

    Query / loop: Auto filling a column until next instance..

    A little bit of code (and if you dont have any forms with VBA code attached where you could run this code from) a simple macro. create a module and add the following code: Option Compare Database Option Explicit Public Function Update_Column() Dim db As Database Dim rs As Recordset Dim...
  5. NthDegree

    Assigning values to a new column

    Open a query in SQL view mode and enter the following: UPDATE Table1 SET Table1.numbercolumn = IIf([textcolumn]="Q",1,2); then just run it.
  6. NthDegree

    Help with SQL

    Open a query and go into SQL mode, enter the following and then run it. select distinct iif((SELECT count(cat1) FROM table1 where cat1=true and date1=#01/01/05#)=0,0,1) as count1, iif((SELECT count(cat2) FROM table1 where cat2=true and date1=#01/01/05# )=0,0,1) as count2 from table1 Repeat...
  7. NthDegree

    Adding router to network switch

    I'm not sure I know what you mean by enable DHCP on the Ethernet NIC's. We are using static addressing on our LAN.
  8. NthDegree

    Adding router to network switch

    We are currently running a LAN with a Windows 2003 server and a few Windows XP Pro computers using a Dlink switch. We are using static addressing with the server being 172.16.0.1 and the other computers using 172.16.0.x. To give us internet access we have installed a DSL line/modem and a...
  9. NthDegree

    Wireless NIC for Internet and LAN NIC for file/print sharing, How to?

    I have laptops that will be connecting (using a NIC) to an internal LAN server (the server will not be connecting to the Internet). The laptops also have a wireless NIC that they use to connect to the internet. Problem is that when I have both adapters enabled I can get to the LAN just fine but...

Part and Inventory Search

Back
Top