266 Posted Topics
Re: I'd done that by sending AT commands to a GSM modem via a microcontroller. But I think there'd be something similar for doing it through a website. Although I've not learned J2ME, I think that's what J2ME is all about. | |
Re: [url]http://www.codeproject.com/KB/GDI/kanjifont.aspx[/url] Though, I'm not sure whether it will help you in the case of Hindi. | |
Re: [QUOTE]I've read of the version issues (having to convert to Access 97) but I downloaded service pack 6 and I have no problem accessing tables on a test Access 2000 database on my work pc.[/QUOTE] It worked even with Access 2003 on my PC. [QUOTE]The business I work for want … | |
Re: Go through all [URL="http://www.cprogramming.com/tutorial/computersciencetheory/sorting1.html"]these[/URL] tutorials first. | |
Re: [QUOTE]Any tips welcome! Even if it doesnt solve this. =D[/QUOTE] Codes along with relevant comments always get more help! | |
| |
Re: [URL="http://www.ucancode.net/Visual-C-Printing-PrintDlg.htm"]This[/URL] may be relevant. | |
Re: Inside the if blocks that you've commented, wait for a character to be pressed by the user. That would print all the results on the console, and at the same time, the user will be able to view them page-wise. | |
Re: [QUOTE]i was wondering if it was possible to make a mmorpg using C++, with out being to proficiant in javascript and html and either what software i would need or where to start.X[/QUOTE] You need to start with C++. Be specfic with your questions. MMORPG is too vague. | |
Re: [QUOTE]I have a little problem with two panels that are on top of eachother with the exact same Size. What I am trying to do is with 2 buttons to choose wich panel that will be visible and not visible. So what should happen is that only one panel can … | |
Re: [CODE] printf("how many words u wanna sort\t"); scanf("%ld", &num); getchar(); words=(char *)calloc(num, sizeof(char));[/CODE] Put the above statements in the main() function and the code should be fine. EDIT: You'll also adjust the scope of some variables. Do that, too. Post any further problems you have. | |
Re: Just create your normal application and add it to the scheduled tasks. You don't need to worry much about (regarding the code) the scheduling part. | |
Re: [QUOTE][B][U]modify[/U][/B] the program siutably so that once the calender for a particular year has been displayed on screen , and year has been displayed on the screen,then using arrow keys the user must be able to change the calender in the following manner:[/QUOTE] Modify which program? | |
Re: What compiler are you using? If you're using one of those old compilers, make the memory model large. Dynamic memory allocation would be a better solution. | |
Re: [QUOTE]" e:\program files\microsoft visual studio\vc98\include\lt360lib.h(182) : error C2146: syntax error : missing ';' before identifier 'LT360LIB_LinkedCnt' e:\program files\microsoft visual studio\vc98\include\lt360lib.h(182) : fatal error C1004: unexpected end of file found "[/QUOTE] If you've got the header file from a genuine source, the only possible problem is that you might not have … | |
Re: Does this appear to be a homework help site? Show your efforts and specify your problems in order to get effective help. | |
Re: [QUOTE]So I do whatever they ask me but I don't get the point of this.[/QUOTE] The point is, that they are meant to teach C++ using example codes. [QUOTE]How do I put this writings to work?[/QUOTE] You'll come to realize that as you go on pursuing C++. As of now, … | |
Re: [URL="http://www.math.grin.edu/~stone/courses/fundamentals/IEEE-reals.html"]Here's[/URL] another article that might be of help. | |
Re: The simplest method is to use brute force. Develop your first program using that, then look out for further optimizations. | |
Re: Check out [URL="http://forums.msdn.microsoft.com/en-US/vbgeneral/thread/41e5a1fd-b33a-4e62-b73a-aa364c5dae5c/"]this[/URL]. | |
Re: [URL="http://www.regular-expressions.info/unicode.html"]This[/URL] may help you. | |
Re: [QUOTE]Make TextBox's property : MultiLine = True ScrollBars = 3 ' Both[/QUOTE] For just a horizontal scrollbar make ScrollBars=1. No need for making it MultiLine if you don't need the vertical scrollbar. | |
Re: [QUOTE]i'm still stuck (mainly cos i'm not using ADOOB).[/QUOTE] Then, use it ;). Frankly, I couldn't find out the solution to your problem from your post. Post the entire code if possible/feasible. | |
Re: Not [QUOTE]infile>>s1; s2; s3;[/QUOTE] But [CODE]infile>>s1>>s2>>s3;[/CODE] After that, check your program for bugs and return if you need any help. And yes, use code tags for posting your code from now onwards. | |
Re: What kind of database do you have? How do you want to update it? Automatically? | |
Re: [QUOTE]i-card hav speicifc format with a image[/QUOTE] Do specify that format of that I-card. Manipulating only images is easily done in Java. Or you want to do something else? | |
Re: Another 'fossil' thread bumped up right through :D | |
| |
Re: [QUOTE]I wanted to know that does anybody can provide me the source code of : how to find the shortest path between different countries.?[/QUOTE] Google for the [B]"Traveling Salesman Problem"[/B]. You might come across some help. | |
Re: [QUOTE]i need to take some details like company name, contact no. and address during the installation of the project itself.[/QUOTE] If you want to add those details, go to Project-->Add Form and select About Dialog. Specify the information there and link it with the menu option Help-->About in your application … | |
Re: Other IDEs for the same are Win-AVR, ICC-AVR, CodeVision AVR etc. Try them. | |
Re: [QUOTE]I know that if I use "r+" in my popen, I should be able to read and write, but it segmentation faults whenever I add the "+", so I assume somehow it doesn't work for [B][U]me[/U][/B].[/QUOTE] Oh! It's not biades towards anyone ;). There must be some other problem. Refer … | |
Re: vijayan121 has just provided the functions, you'll have to adapt them according to your main code and use them. His functions will compile, but how do you expect them to run?! | |
Re: [QUOTE]Where should I state my do-while loop and how do I go about counting the score to be displayed as three separate scores " wins, losses, ties" do I need to ++ each case as a win,loss,tie?[/QUOTE] Insert the switch(userChoice) into a do-while loop and specify a break condition for … | |
Re: AD already answered that: [QUOTE]The second example is ok because string literals are not put on the stack but reside in global space (the heap). You can safely return objects or pointers to objects that reside in the heap because they are unaffected when a function returns to its caller.[/QUOTE] | |
Re: If you don't get any reply after about 5 days, you probably won't get any afterwards. Check out [URL="http://www.daniweb.com/forums/thread129466.html"]this[/URL]. | |
Re: Use code tags :D [QUOTE] // for ( int i = 0; i < 20; i++ )//initializing the elements of array n to 0 as long as the elements are less than 20 add 1 // n[ i ] = 0; [/QUOTE] Why have you commented intialization statements? | |
Re: Ditto. You've just typed your assignment :D | |
Re: The solution is already given in the previous posts... Wonder why the OP didn't get back. | |
Re: [QUOTE]in office Xp then convert into Access 97[/QUOTE] Why do you need that? Why not work in the same version you want to run it on? [QUOTE]Also i can able to add sub menu in the menu editor and write relevant command in the submenu and execute in the same … | |
Re: Or use %u as addresses are of the type unsigned int. | |
Re: Sorry, I didn't get what particular problem you're facing. | |
Re: It should be rs.Fields(i) instead of rs(i). Also maybe there's some problem with the connection of record set with the database file. Please post the entire code. Use code tags. | |
Re: [QUOTE]Does anyone know a good way to measure how much time is spend ONLY calling? So not the function itself, purely the call?[/QUOTE] Time.h has a function clock() which returns a structure of the type clock_t, which is again defined in time.h. Use that. [QUOTE]Lesson learned? The top one is … | |
Re: [QUOTE]why do you want to remove the first element and then add one to the end. maybe it would be better to keep the 5 elements and move the data inside them? so temp = A(0) A(0) = A(1) A(1) = A(2) A(2) = A(3) A(3) = A(4) A(4) = … | |
Re: Please be more specific. Specify the format of the records in the text file. Or else, state what exact problem you're facing in doing the above task. |
The End.