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 gkittelson 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: *

  • Users: pmccafferty
  • Order by date
  1. pmccafferty

    Struct Array

    in my .c file i have a struct atop of the program defined as follows: #define MAX 10 int curtab; static struct tab { int count; int use; } tab[MAX]; with the initial function following it like so: int tab_create(int init_count) { int i; for(i=0; i < MAX; i++) {...
  2. pmccafferty

    Adding a .css and .js to a web site

    I am trying to upgrade my menu bar to a switch-menu bar found here (http://www.dynamicdrive.com/dynamicindex1/slashdot.htm) How do I use the .css and .js that is provided with this demo for my existing website?
  3. pmccafferty

    C# Web Application

    Is it possible to envoke methods and procedures from an existings C# file and use them in a Web Application? For example: Is this possible? "test.cs" using System; namespace test { public class test() { string test() { return "Hello World"; } }...

Part and Inventory Search

Back
Top