CAP Lock on Task bar on windowsXP Hardware and Software Microsoft Windows by damle1 My key board doesnt show if cap lock is on or off. Is there any way to add it on Task Bar I can do it on word but not other applications Pl Help how to do it Regards reading from .cap file Programming Software Development by ghadahelal hiiiiiii all, i've an application programm , its data is . cap files i need 2 make a programm with c++ , this programm has 2 read from the .cap data is that possible or not *****. cap file Re: reading from .cap file Programming Software Development by Lazaro Claiborn …]hiiiiiii all, i've an application programm , its data is . cap files i need 2 make a programm with c++ , this… programm has 2 read from the .cap data is that possible or not *****. cap file[/quote] Yes it is possible! Here… Re: Initial Cap Words Within Text File Programming Software Development by Tavicz ….lang.String[/ICODE] class documentation.[/QUOTE] Well, but this command cap all letters. And I'm interested in the first ones… Your Help.[/I] See? I don't know, how to cap the first letter of every single word in the copied… MS-SQL Standard Memory Cap Programming Databases by mrwilsondg … tweaking? Is there anyway to surpass that 2 GIG memory cap on MS-SQL Server 2000 Standard? Tnx in advance! :o driver.cap Community Center by naslicer at times u wouder bt daniweb still gives you hope to continue howver atch your stack here we go. its an ibm computer with 382mb ram 20gb of hard drive. i was installing widows 2000 bt the pc failed to load one file when settingup files(driver.cap) what could be the solution Frequency cap Digital Media Digital Marketing by Dani What have you found to be the best frequency cap for banner campaigns? I heard that it takes, on average, someone four views of a banner ad before they will click on it. Initial Cap Words Within Text File Programming Software Development by Tavicz … another,yet. (See code bellow). However, I really need to Cap every word in the source text file and copy the… A "New Normal"; Large-Cap Tech Stocks in Play? Digital Media Digital Marketing Search Engine Strategies by Brian.oco … Wall Street observers could lead to buying opportunities in large-cap technology stocks. Says Greg Merlino of Ameriway Financial Services "… Using the function Cap Programming Software Development by ari$av3s … (prose); return 0; }[/CODE] where would I insert the function Cap to capitalize the first letter of each word? Am I… Re: Using the function Cap Programming Software Development by ari$av3s I was under the impression that there was a cap function that came with the language when using the appropriate … Re: Using the function Cap Programming Software Development by Ancient Dragon …;1606644]I was under the impression that there was a cap function that came with the language when using the appropriate… Re: CAP Lock on Task bar on windowsXP Hardware and Software Microsoft Windows by Ancient Dragon You might check out some of [these free apps](http://www.downloadcollection.com/freeware/caps-lock-on-app-windows.htm) Re: MS-SQL Standard Memory Cap Programming Databases by campkev I don't think so. Also, you might want to check your stored procedures and make sure they are all as efficient as possible. Profiler is a great tool for locating queries that are causing problems. Re: MS-SQL Standard Memory Cap Programming Databases by mrwilsondg [QUOTE=campkev]I don't think so. Also, you might want to check your stored procedures and make sure they are all as efficient as possible. Profiler is a great tool for locating queries that are causing problems.[/QUOTE] yes sir.. :cheesy: its only 2GIG for MS-SQL 2000 Standard. (ahmm.. thats what i read and thats what i have been … Re: driver.cap Community Center by joshSCH You will have to elaborate a lot more than that if you want help.. what are your ibm specs, what were you upgrading from, what happened after the driver failed.. etc. Re: Initial Cap Words Within Text File Programming Software Development by javaAddict Does the code that you provided works? Because it seems OK. What errors do you get? Also, check the API for the String class. There should be a method for turning a String to upppercase Re: Initial Cap Words Within Text File Programming Software Development by ~s.o.s~ > writer.write(line); [ICODE]writer.write(line.toUpperCase());[/ICODE] Since you are reading in a line from the file in a String, consider looking at the [ICODE]java.lang.String[/ICODE] class documentation. Re: Initial Cap Words Within Text File Programming Software Development by ~s.o.s~ Ah, I misread the question. Anyways, use the String companion mutator class i.e. [URL="http://java.sun.com/docs/books/tutorial/java/data/buffers.html"]StringBuilder [/URL]to process the line read since Strings in Java are immutable.[code] StringBuilder buf = new StringBuilder(line); // Process this buffer character by character, … Re: Initial Cap Words Within Text File Programming Software Development by Tavicz I see there could be a way, however I dont see how to make it. :( Could you show an example? When I have a text file, how to upcase it (1st letters? I know the solution is somewhere near, but I can't reach it. :( Re: A "New Normal"; Large-Cap Tech Stocks in Play? Digital Media Digital Marketing Search Engine Strategies by debthelpsource Yes, things are pretty bad but I think it's also important to know that there must surely be light at the end of the tunnel and not to give up hope. SNIP Re: Using the function Cap Programming Software Development by WaltP You can't. It's a static string and cannot be modified. Re: Using the function Cap Programming Software Development by arindam31 [CODE]#include <stdio.h> #include <ctype.h> #include <string.h> int main(void) { char prose[] = "to be or not to be that is the question\n"; char *ptr; ptr = prose; puts (prose); *ptr = *ptr-32; printf("The new text with starting letter CAPS is \n"); puts(prose); return 0; }[/… Re: Using the function Cap Programming Software Development by Narue [QUOTE]You can't. It's a static string and cannot be modified.[/QUOTE] Aroo? prose is an array initialized with a string literal, it can most certainly be modified. [QUOTE][B]>*ptr = *ptr-32;[/B][/QUOTE] Good god, are people [i]still[/i] doing this? The world is not ASCII anymore, folks, use toupper() if you want to be one of the cool kids. Re: Using the function Cap Programming Software Development by ari$av3s Thanks for the help. :) To Narue: toupper certainly is a little more elegant, but i'm studying with a really old school c programmer who kind of wants me to go through the basics [thinks it will encourage good practices] so he probably would want to see me use *ptr ... To Arin: Close, but I have to write a function that will capitalize the first … Re: Using the function Cap Programming Software Development by Ancient Dragon You will have to check each character to find the spaces and/or tabs, then convert the next non-white-space character to upper case (there could be more than one white-space characters between words). You have to use a loop to do that. As for toupper(), check your compiler to see if it supports it. Almost all C compilers do. Don't know about … Re: Using the function Cap Programming Software Development by Narue [QUOTE]i'm studying with a really old school c programmer[/QUOTE] While [I]his[/I] code may be shit, I wouldn't recommend inheriting that particular trait. [QUOTE]who kind of wants me to go through the basics [thinks it will encourage good practices] so he probably would want to see me use *ptr ...[/QUOTE] Yeah? How about [ICODE]*ptr = toupper(*… Re: Using the function Cap Programming Software Development by ari$av3s I know I probably have to use some sort of while loop to search for a null. Re: Using the function Cap Programming Software Development by Narue [QUOTE]I know I probably have to use some sort of while loop to search for a null.[/QUOTE] Yes, you're searching the string for words, so some sort of loop will be involved. Think about how you might do it manually given only a look at one character at a time. Given "this is a test": [CODE=text]'t': It's not whitespace. We're not in … Re: Using the function Cap Programming Software Development by arindam31 Yes , i agree with everyone that isupper is a modern solution....but i just wanted toshow how pointers are helpful in these situation..Yes you have to find the blanks and then convert in Capital every word following the blank......You can do it by again pointer or the isupper.......I suggest you practice both.....We should know all kind of …