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

    Link custom field to default forms.

    Hi. I've added a custom field to the newpost.aspx file in sharepoint. How can I link this field to the existing code that sharepoint calls when you submit this form?
  2. tru178

    what does this error mean?

    error C2819: type 'employee' does not have an overloaded member 'operator ->' employee is a structure defined in employee.h. i get this error when trying to populate that stucture by reading it from a data file in file "readit.cpp". readit() receives a pointer to that structure. the...
  3. tru178

    pointing to array of structure and file i/o help/

    oops. my bad. i haven't worked with C before so i didn't know that File was a reserved word.
  4. tru178

    pointing to array of structure and file i/o help/

    I did what you said and made a header file with my structure in it and include it in my files but still the same error. the error "error C2227: left of '->name' must point to class/struct/union." still exists. However, if i use the dot "." operator instead of the pointer...
  5. tru178

    pointing to array of structure and file i/o help/

    Hi. I'm trying to write this program where i read data from a file to an array of structure. here are parts of it. ---------------------------------------------------------- struct employee { char name[20]; int empnumber; }; employee file[20]; void file2(employee *c); main() { employee...
  6. tru178

    error LNK1561 help!

    I'm using microsoft visual c++ 6.0 and I'm getting this error. "LINK : fatal error LNK1561: entry point must be defined" I've check other websites that suggested that I remove the last \ in the directory to the lib file. Still gives me the same error. Anyone know how can i fix this?

Part and Inventory Search

Back
Top