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. mcswew

    career advice??

    Hi, My back ground is Unix admin, shell scripting and some amount of C programming. I've just been offered a job in another dept of my present company as a network solutions engineer. Basically this will involve designing network solutions for customers that want to include our products in their...
  2. mcswew

    constructor question

    Thanks Rich! I appreciate your insight. Will
  3. mcswew

    constructor question

    Hi Matt, I just found out that digData is not a class but a pointer of type short. The code in a local.h file is typedef short int16; typedef int16 digSample sample.h then declares the class sample as class sample { public: digSample* digData; etc....} and finally sample.cpp has...
  4. mcswew

    constructor question

    Hi, I am looking at some code that has a class called sample that has as a private member an instance of class digitalSample called digData. the code for the sample default constructor is sample::sample():digData(0){...contents etc .....} I read this as the sample default constructor...
  5. mcswew

    limiting an input to be from 0 to 10

    Thanks Ken, That did the trick. Like many times before I wonder why I did not get it myself. I appreciate your help Willie
  6. mcswew

    limiting an input to be from 0 to 10

    Hi, This I Know is probably a very simple question but... I need a validation rule in a database field which limits the integer value that can be entered to be between 0 and 10. I am trying to use expression builder but my syntax is wrong something like 0>= AND <=10 can anyone provide the...
  7. mcswew

    table question...adding two fields to create a third field??

    Hi Jeff, Thanks, that answers my question. I actually want to add a java front end to this database so I will just have to do the calculation prior to loading the database field. I just thought access might do it for me. Willie
  8. mcswew

    table question...adding two fields to create a third field??

    Hi, I am designing an access table where two fields are integer fields. A third field also an integer field is the multiple of the first two integer fields. Is it possible in an access table to add the contents of two columns and automatically update the third column. i.e price per column item...

Part and Inventory Search

Back
Top