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!

Why doesn't anyone answer my question?

Programming

Why doesn't anyone answer my question?

by  apatterno  Posted    (Edited  )
If nobody replies to your post, it is probably because of one or more of the following reasons:

1. You haven't asked a question.

2. Your information is inspecific and unclear

3. You have posted your entire program to the forum. Nobody wants to read your entire program. Post only code that is relevant to the problem.

----------------------------------

Also, remember to turn off TGML if you have array subscripts in your code... For example

Code:
long array[256];
for (int i=0; i<256; i++) {
   array[i] = timeGetTime();
}

In that example, the
Code:
[i]
would be treated as an italics tag.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top