337 Posted Topics
Re: do politics ! collect lies and give promises to the ppl and become a senator ! Then take bribes from the businessmen around you,either you don't need to go after them,they'll come after you. | |
Re: The only reason why wglMakeCurrent failing is as the depth that I experience is your code is between glBegin(...) and glEnd(). However you better call GetLastError() and get the more detailed error information. Many things can be happen to fail this.I have mentioned the most possible case. | |
Re: There are 2 options to you. 1. Develop everything with C++/C (using QT/Windows Forums 2.0(like AD said)/wxWidget/win32 API). 2. Write a simple HTA (HTML application ) as your nice interface and link it with your C++/C console mode program. The second method is not bad as many ppl say, I … | |
Re: Oh, I forget that,the Royal family have invited me man. But you know I don't have any time, because going there won't put $10 in my pocket,unless going there will take out $10 from my pocket.Seriously no offence , I don't care. Kings may be hero's and they may be … | |
Re: [QUOTE=Ancient Dragon;1543381]UFO = Unidentified Flying Object -- it doesn't mean the UFO came from some other planet, all it means is that no one knows what it is. Most UFOs are eventually identified. Now if you asked us if we believe there is intelligent life on other planets, my answer … | |
Re: You working with a project where #define UNICODE is defined , If you want to continue with your UNICODE way, then I suggest you to typecast your asci to unicode. use any trick in here, [url]http://social.msdn.microsoft.com/Forums/en/Vsexpressvc/thread/0f749fd8-8a43-4580-b54b-fbf964d68375[/url] | |
Re: simple, three tier, from the theories that I have learned from sem 2 in my BIT , 1. Presentation layer - XHTML/CSS/JavaScript/Ajax/XML/XSLT/FLASH.. etc 2. Application layer - PHP/Java(Jboss or tomcat)/or any other application server. 3. Database layer - SQL (concrete: MySQL is easy to use with PHP). Just do a … | |
Re: I have studied about US politics (not a expert) but I can definitely contribute to this thread more facts. But I'm not going to openly criticize US politics because I'm not a US citizen, even after if I granted the US-Green Card(I have applied so),I don't think it's ethical to … | |
Re: this is too sad for me. I don't like to talk about that. Life is not a complete bottle , it's a half filled bottle,so there's no point here. | |
Re: // :NOTE: "C" structures and "C++" structures are different. "C++" structures support every features that supported by the "C++" classes. The only difference is it's default access is "public" in structures. "C++" structures support inheritance, polymorphism , virtual functions, RTTI (run time type checking) and all. | |
Re: according to the Buddhist teaching, Gods are also beings in Sansara who are also helpless like us,who are suffering, In Buddhism there is nothing that says "universe is created by gods". It's anoths the complete freedom, your no longer a god/evil/human. I'm sorry ,this is not a exercise to inject … | |
Re: This doesn't seems to be a big codebase. This is around 25KLOC.So the answer is just read and understand the code. May be using IRC you may find a mentor to help you while you digging to the code. Mentors are by default feeling free to help. | |
Re: you'll end up with hell of a debugging time. :) contaz you got the job, you walk in a part where demons and monsters are willingly ready to kill you. | |
Re: [quote] So my question to you comes down to this: Do you know a good way to parse the XML response such that all end-values (int, string, double, boolean) are intuitively accessible while keeping the ability to nest array's and struct's? [/quote] it depends on your application.How you going to … | |
Re: come on man, just read what computer trying to tell you. You should have the patient to listen to her.Patient makes you a good programmer. | |
Re: >> Hi there ! Actually I am a beginner in c++ and i have a problem to convert pseudocode to c++ No problem , How much you are a beginner? are you just after write the ascii "hello world" program? or do you know basic core-c++ ? | |
Re: :( , and with respect I don't like this that Acient Dragon , experienced C++ programmer saying I hate linux. | |
Re: Interesting, [code] #include <iostream> #include <string> int main() { std::string string1="0123456t stores 0"; string1[6]=0; // injecting the 6th index with null character. for(int i=0;i<18;i++) std::cout << string1[i]<<std::endl; return 0; } [/code] because it created on the heap the old data are still accessible. But from the meaning of string, string … | |
hi all, I got the HSPDA modem , and I want a packet analyzer (sniffer) for that. Could somebody suggest me a name of a good sniffer for HSPDA ? or is it possible to capture the UTMS packets over the Modem Without going deep into the modem firmware? in … | |
Re: she is Samantha Carter from Star-Gates...Hmm I just kidding bro. anyway , is really Neha Dalvi from India Mumbai. [url]http://forum.xcitefun.net/neha-dalvi-raise-to-fame-miss-india-2010-t41896.html[/url] anyway bro,the world is totally a different place.some are beautiful and some are ugly like me.:( That's something that we can't change.But I know one thing The way that I … | |
[quote] •… Linux is basically a DOS based OS. •These days we are using 128 and 256 bit processors. •A compiler is a software that converts code written in a particular programming language to machine code. To compile a program, you must hit ALT+F9. (It took me a while to … | |
Re: you can do this easily with a state machine. search on google how to code a simple state machine. | |
Hi , I hate the hard copy versions of the Books. Those books are really weight than me . I get hard time in carrying them. what I need is CHM or PDF or djvu , html or txt ebooks. where I can transaction (pay money and download ) those … | |
Re: [QUOTE=spoonlicker;1477826]Nope, hex is not machine language's actual working level, which is binary and EAX and other registers. Is there any program that can input direct machine language instructions to the processor from machine language itself and have it do whatever told is what I ALSO want to know.[/QUOTE] well yes … | |
Re: that is really good! Thanks. | |
Re: >>This poll will close on 17th Sep 2010 at 16:22 or now it's 2010 ???? I can remember something on 2009 and something on 2012. I can say one thing that those floks will never show up their face in TV after the 2012 , he he heh. world will … | |
circle.h [code] // // circle.h // defines the functions to draw circle. // #ifndef CIRCLE_H #define CIRCLE_H #include <windows.h> typedef struct tagCircle { int x; int y; int radius; } Circle; /* set the window handle */ void SetWindowHandle(HWND); /* set pixel @parms int x xposition @parms int y yposition … | |
Re: [QUOTE=WaltP;1123200]Are binary files? I suspect not. [ICODE]strcat()[/ICODE] is only useful on text, not binary information. [B]nezachem[/B] is correct because an image is binary. You need a different way of processing non-text information.[/QUOTE] as long as you can encode '\0' to a different value, it won't be a problem. I have … | |
Re: you defined that [code] #include<dos.h> [/code] so that means this is a program that written to the old pain DOS environment. Try with the turbo C++ v3.0 or djgpp if you can't find turbo C++. I seek is there any way that you can compile dos under codelite ? well … | |
Re: I think you can use the ODBC technology to connect to a simple access database. Because you are asking for a very simple database.I don't have a idea how much that word 'simple' is stronger here.Working with the ODBC is dead easy. Assuming you are on the microsoft windows machine. … | |
Re: * geek in designing new fashion stupid jeans and denims. ( don't PM me asking to help me). * I think I studying computer science in English :P | |
Re: hi, I just got a suggestion for you. Starting from the [url]http://www.kernel.org/[/url] is something you should not do.Because you don't know the Operating system concepts right.So you should have a operating system course.What about a free one. This is what you need. [url]http://www.osdever.net/bkerndev/[/url] and if you wish to develop under … | |
Re: [QUOTE=Ancient Dragon;887094][URL="http://www.imdb.com/title/tt0031381/"]Gone With The Wind[/URL]. Great 1939 epic about the Old South (USA) Civil War and the mixed-up love between four people. The most commonly quoted line in US today is: Rhett Butler said "Frankly, my dear, I don't give a damn." Also anything directed by [URL="http://en.wikipedia.org/wiki/Cecil_B._DeMille"]Cecil B. DeMille[/URL][/QUOTE] what … | |
Re: Oh my god ! Why we too marked in read ? we are a country that uses less computing. Personally I'm only using computer for educational purposes. | |
today we are eating and drinking happly. becos we luck for that. but did you know how many ppl died becos of lack of food ? see these pictures . [url]http://3.bp.blogspot.com/_5vkPiCEjjdg/R4EthhsJTkI/AAAAAAAAAIk/mCkmZP7Ymz4/s400/famine_lying.jpg[/url] [url]http://static.guim.co.uk/Guardian/world/gallery/2008/jun/13/food/GD7599695@A-malnourished-baby-c-4197.jpg[/url] [url]http://www.freewebs.com/jeevakarunyatrust/horror%205.jpg[/url] [url]http://www.freewebs.com/jeevakarunyatrust/horror%202.jpg[/url] I get shocked after seen these things. and after today I will surely change my food … | |
Re: If your machine is 32-bit hardware.Then , If the void* points to the memory location 0x00000100h then , &a = 0x00000100h &b = 0x00000104h &c = 0x00000108h &ch = 0x000010Ch and when you initializing like this way , you should be ready to handle memory exceptions otherwise this code is … | |
Re: [CODE] City* City::getNextUnvisitedCity() { // This is not working here!! City *last = nextCities->GetLastElement(); // TODO: return a proper object return NULL; } [/CODE] As you can see you have left a TODO: , should I have to complete that TODO: ? so you just have to iterate all the … | |
Re: hi,I review your code. I can see you can use recursion instead of this. | |
Re: [code] memset(psBuffer, 0, sizeof(psBuffer) ); [/code] This line is not necessary.After the string concatration the strcat function will add the null character end of it. And if your thread is sloved then please so mark this thread as sloved. And unless there are linux operating systems like BusyBox the comands … | |
One of my friend had to do this surgery [url]http://en.wikipedia.org/wiki/Carpal_tunnel_syndrome[/url] I'm sooo sad.Many people say that working as a computer programmer is more safer than other jobs.But???? Actually my idea is when they design hardwaer like mouse keyboard and touchpads they should be more carefull.Otherwise ppl will suffer from the … | |
Re: [QUOTE=Ancient Dragon;155307][URL=http://www.wotsit.org/]This[/URL] might help -- shows different file formats.[/QUOTE] True , that site contains much more to know about file types. and their healders. But I'm too lazy to write the helder parsing and data extraction framework. Instead of writing it groud up what I doing is just normally download … | |
Re: :) Cultivated my interest in reading keep it up ! Yes please write more, we like to read more. | |
well PHP is a powerfull text processing language designed mainly as a CGI ( common Gateway Interface ) programming language. But PHP supports rest of other features using the library extensions. For a example you can call any win32 API call in your PHP script using the win32 API library … | |
Re: The model of the VB6 and the C++ is different. You are familar with the VB6 application development which are deadly event driven.C++ is a hybrid programming language where you also can write event driven applications.for a example QT /wxWidget have RAD tools which like VB6,But you can't start at … | |
Re: In the line number 9 I can't understand why you hardcode that to 37 ? [code] pos=dsl; [/code] ???? | |
Re: This program does not need any log keeping.Because it's very simple. For a example secnario. When a user login you can log that to a file. like in this format. "User:<username> had logged in time:<time> with priviledges:<granted priviledges>\n" like that. When you want to debug your application using log files, … | |
Re: 1. Create a structure for a simple telephone directory system named struct telDirectory{}composed ofchar username[20], long telNum, char address[20]. so starting with your first question, so about C++ structures fresh your knowledge. [url]http://www.cplusplus.com/doc/tutorial/structures/[/url] and Start to write that structure. [code] struct tellDirectory { char userName[20]; long tellNum; char address[20]; }; … | |
Re: you need to access to the symbol data of the compiler. use a utility program like nm,objdump etc. | |
Re: If you want to write error logs, you can redirect the streambuf of the std::err to the local file.Then you just write to the std::err with << operators. actually same as you write to a file. Are you asking about the exceptions? Then you can set up your SEH routine … |
The End.