Forum: Python Jul 11th, 2008 |
| Replies: 1 Views: 723 I want to let users select a line of text by triple-clicking anywhere on that line. How can I use the API to support the feature? |
Forum: C++ Jun 26th, 2008 |
| Replies: 1 Views: 1,623 Is it possible to have Netbeans set up for Cygwin and for Borland 5 free compiler then let me choose a compiler for each project? |
Forum: Python Jun 24th, 2008 |
| Replies: 3 Views: 1,353 You should consider making a soundex class.
http://en.wikipedia.org/wiki/Soundex
This should help more than using regex. |
Forum: Python May 23rd, 2008 |
| Replies: 2 Views: 1,075 I want to make Python code to make a new directory then put you into it, same as typing md and cd yourself, but only one command typed. I can use os.chdir() but after Python program exits I return to... |
Forum: Python May 1st, 2008 |
| Replies: 1 Views: 454 SysFileTree() in REXX offers an easy way to work with all files (or subset) in a directory tree. For a summary of the function, see... |
Forum: Visual Basic 4 / 5 / 6 Apr 11th, 2008 |
| Replies: 1 Views: 472 Consider VB.net instead.
See VB is Unicode, isn't it? under http://www.microsoft.com/globaldev/DrIntl/columns/003/default.mspx |
Forum: C++ Apr 4th, 2008 |
| Replies: 7 Views: 784 gcc is a part of Cygwin which you can get at http://www.cygwin.com/ |
Forum: Python Mar 27th, 2008 |
| Replies: 2 Views: 5,758 I want to use Python to make something similar to the fc command found in MS-DOS and Windows. How would I handle opening 2+ files and reading them a byte at a time for comparing? |
Forum: C++ Mar 27th, 2008 |
| Replies: 3 Views: 531 Write scores to a temp file then use wput (wput itself or something you do yourself using its source code) to copy the temp file to your web server. Then make a .shtml to display the scores to users. |
Forum: C++ Mar 26th, 2008 |
| Replies: 8 Views: 2,524 You want the for loop to count 0 to 9.
In
for (i = 0; i > average; i++)
set the middle part to i < 10 |
Forum: C++ Mar 26th, 2008 |
| Replies: 8 Views: 2,524 For average, try
double average;
average = ( myList[0] + myList[1] ... ) / 10;
A for loop is really better, but I will let you try it first.
For number above average
int i,numabove; |