tonofsteel Posted August 27, 2003 Posted August 27, 2003 I have been trying to search many things, but the minimum length of a word to search for I find is ridiculous, especially for a programming forum. Key Codes cannot be searched because of this. API Functions, For Loops, and many more cannot be searched. Sure you can get functions, but you get too many results and most of them are not even related to API. How do you search anything API for that matter. There is probably a reason for this so someone inform me about this Quote
*Experts* Volte Posted August 27, 2003 *Experts* Posted August 27, 2003 Every word that you ever enter into a forum post is indexed in the database for searching, which, obviously, can get extremely large. However, since there are so many common short words, indexing words such as "the" and "as" would cause the size of the database to increase significantly. It would also force a reindex of the database (using up bandwidth) and probably slow the forum down significantly as well. Quote
Leaders John Posted August 28, 2003 Leaders Posted August 28, 2003 ...How do you search anything API for that matter... What is wrong with searching by API name: ShellExecute, or constant name: WM_CREATE? Quote "These Patriot playoff wins are like Ray Charles songs, Nantucket sunsets, and hot fudge sundaes. Each one is better than the last." - Dan Shaughnessy
pjv Posted August 28, 2003 Posted August 28, 2003 You might be searching to find that stuff out? Pete Quote
tonofsteel Posted August 28, 2003 Author Posted August 28, 2003 Yea just what pjv said, searching for an API function that does...... Anyways what VolteFace said makes sense so I guess gotta live with whats there. :) Quote
*Experts* Volte Posted August 28, 2003 *Experts* Posted August 28, 2003 If you want to search for something like 'OCX' you can search for 'OCX*' -- it will search for all words beginning with OCX, but there aren't many of those. :p This might not work for somethings, obviously, like 'COM*' since there are many words that start with COM. Quote
*Experts* Nerseus Posted August 28, 2003 *Experts* Posted August 28, 2003 You're searching for APIs, FOR Loops and more... but nothing specific? It sounds like you might want a website that shows tutorials and guides for beginners? The forums are more for problems or issues that people need help with (with the exception of the Tutors Corner and the Code Library forums). Check out the various FAQs at the top of the forums. -Ner Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
tonofsteel Posted August 28, 2003 Author Posted August 28, 2003 Some times I forget something particular about something. Such as the step function of a for loop, and instead of hunting through 50 sites with 200 tutorials for the one line of comment that i need, so instead i just search old stuff here to see if some newbie like me asked the question before. Its not a big deal really I was only curious as to why Quote
*Experts* Nerseus Posted August 28, 2003 *Experts* Posted August 28, 2003 Well for syntax, you can check the MSDN library. For APIs, I use google (but you must know the exact API name). As a rule of thumb, it's a good idea to keep a little code repository for yourself. It could be a bunch of txt files, a bunch of small projects (what I generally do), or a custom tool that stores code snippets and lets you organize them and search them. It will be invaluable as you learn more and more coding tips. I guestimate that once you have about 50 tips packed away in your head you start losing one for about every 10 new ones you pick up. -Nerseus Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
tonofsteel Posted August 29, 2003 Author Posted August 29, 2003 Thats a very good tip. I was wondering if professional programmers that program for a living just remember everything or if they do have to keep referring back to code examples and text books. But I will keep what you said in mind, thanks. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.