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 grungekid

  1. grungekid

    Making a control transparent?

    hi, i have tried this but i seem to get an exception that i don't understand: An unhandled exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.dll Additional information: Exception has been thrown by the target of an invocation. however, i dont think this...
  2. grungekid

    Making a control transparent?

    Hi all, I am making a usercontrol but i would like it to make its background colour transparent? Does anyone know how to do this? i would like the background colour to be transperent when the control is moved as well, so it does not affect other controls on the form this is my code so...
  3. grungekid

    help get the nth record from sql table? or the the last nth record?

    i just changed it to this:- SELECT * FROM (SELECT TOP 15000 timestamp, UV_CELL_HIGH_LIMIT_VAL0, UV_CELL_LOW_LIMIT_VAL0, UV_CELL_INNER_VAL0, UV_CELL_OUTER_VAL0,STD_CELL_B_INNER_VAL0, STD_CELL_A_OUTER_VAL0, STD_CELL_LOW_LIMIT_VAL0, STD_CELL_HIGH_LIMIT_VAL0 FROM dbo.T5_AGER_LIGHTUP ORDER BY...
  4. grungekid

    help get the nth record from sql table? or the the last nth record?

    hi all, I have read somewhere that sql server 2000 does not store the row numbers so you cant pick a set list of rows, i.e row 1500 to 1800. if this is true how can i write an sql query to get the last 15000 records of my table, if at all possible The way ive been doing it, is to order by...
  5. grungekid

    hi there can anybody tell me an eas

    That ok if your using a different header! I am trying to get this to work: student.txt John Smith 22 2 1982 02003456 #include <stdlib.h> #include <iostream.h> #include <fstream.h> #include <string.h> void main (void) { //declared variables char instring[100]; char name[24]; fstream def...
  6. grungekid

    hi there can anybody tell me an eas

    hi there can anybody tell me an easy way of reading some data from a text file: the data in the text file is: John Smith 22 2 1982 02003456 i have been using getline and atoi, but i am having some problems! cheers devo

Part and Inventory Search

Back
Top