- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 4
- Posts with Downvotes
- 3
- Downvoting Members
- 3
28 Posted Topics
Re: [QUOTE=marco93;872134]You don't need any hook (!) Simply use Win32 System apis (2 lines of code to swap mouse buttons...)[/QUOTE] hey can u pls explain me how exactly to invert it??...what lines to change and all??....thanks in advance | |
Hi, I have this idea to control a PC remotely using sms. Here is how I would do it. 1.Facebook allows users a lot of control over their accounts through sms including private messages. So, getting the message to facebook through sms is easy. But the PC has to take … | |
Re: Is there any message or crash file after this? Or does it go off? The way you say it, it doesn't seem to shutdown. | |
IDM boosts the download speed. Is there any software that does that for browsing? Like an addon for chrome, firefox? If not, why is it that IDM can download at a good speed while the browser cannot download the webpages fast enough? | |
Re: A much simpler way, if this concatenation is just part of a much bigger program, is to use atoi and itoa. itoa() the two numbers, then strcat(), then atoi() back. | |
Re: > using std::cout; > using std::endl; [Check this to see the difference between using std::cout and cout](http://www.dreamincode.net/forums/topic/18071-difference-between-cout-and-stdcout/) Yes, it is. | |
I started with curl and now I'm able to post form data, obtain html pages and all that basic stuff. But I'm unable to analyse individual data in the obtained webpage. Like filtering all the images, videos and things like that. I can do that in Javascript, but that can … | |
Re: Looks like there are solutions in google. Search around in other forums and make sure somebody else in daniweb doesn't have the same problem, before posting. | |
I have installed ubuntu 11.04 using wubi installer inside windows.I am not able to find sysconfig in etc folder.I need to change the auto eth0 settings.And I accidentally deleted the auto eth0 configuration.Any way i can get it back.Any help would be greatly appreciated. Thanks in advance, Prasanna | |
Hi all, I am just going through C++ basics now and I read that enum types cannot be input directly with cout and cin and such.And also that type coercion from int to enum is not allowed.But when i do this, [CODE] enum SumEnum{ENUM1,ENUM2,ENUM3} SumEnum VarEnum; scanf("%d",&VarEnum); printf("%d",VarEnum); [/CODE] It … | |
hi all guys, I have just started CURL programming in vc++.But I don't have a good place to start reading more about it.I do understand the basics of it,but I want a procedural tutorial to learn more about it. Is there any proper site to learn from basics to higher … | |
VC++ 10 gives error when libraries and headers related to libcurl are added to project.Even if curl.h is not included in the code, C2065 undeclared identifier _SH_DENYNO //this is in xiosbase... the above error comes. Is there a problem as there is no libcurl version for vc++ 10? ....libcurl works … | |
[CODE] #include "stdafx.h" #include<iostream> #include<string.h> #include<fstream> #include<stdio.h> #include<cstdio> #include<curl\curl.h> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { return 0; } void main() { int p; CURL* curl; curl=curl_easy_init(); }[/CODE] The above is my code and I am trying to compile it in vc++ 10.But the error is: error LNK2019: … | |
Hi, I am looking for some advice here.I have basic knowledge of C++ and regularly write programs in it.I haven't tried anything related to networking in it.I want to start now and I'm clueless about the possibilities.I am novice in knowledge of networks and people have recommended many books but … | |
I want to learn basic web query vc++.I googled around and found that libcurl was the library needed.I have downloaded the necessary files from curl.haxx.se .I do not know how to use these files and make the actual header file and then actually include it in my project. Any help … | |
I have installed ubuntu 11.04 using wubi installer inside windows.I am not able to find sysconfig in etc folder.I need to change the auto eth0 settings.And I accidentally deleted the auto eth0 configuration.Any way i can get it back.Any help would be greatly appreciated. Thanks in advance, Prasanna | |
Hi, I am behind a SQUID proxy.I need to set proxy settings for cmd.I'm using win7 so proxycfg cannot be used.I used netsh like this: netsh winhttp import proxy source=ie Internet explorer had my proxy settings already.Now the problem my proxy requires username/password authentication.I do not know how to set … | |
Hi, I made a program that lists all possible anagrams of a word.Now I'd like to include anagrams of subsets of letters in the word.I have the code for making the subsets also now.But i do not want merge them as a single code.So I'd like to know if there … | |
If I write windows API application using vc++ 10,does the .exe file work in any windows computer or is vc++ a necessity in the other computer also? | |
I have started with windows programming.I am now in the painting and repainting part.When the WM_PAINT is called,the entire client window is supposedly validated,does that meaen the window comes to the foreground and becomes the active one? Or have I misinterpreted the meaning of validation of window? Please help. Thanks … | |
[CODE]void SubGen(char* s) { //rearrange s ... for(int i=0;i<strlen(s);i++) { for(int j=i+1;j<strlen(s);j++) { if(s[i]==s[j]) { char temp=s[i+1]; s[i+1]=s[j]; s[j]=temp; } } } //s arranged.... Sub[0][0].push_back(s[0]); for(int i=1;i<strlen(s);i++) { if(s[i]==s[i-1]) { vector<string> temp; for(int j=i-1;j<Sub.size();j++) { for(int p=0;p<Sub[j].size();p++) { temp.push_back(Sub[j][p]); } } for(int j=0;j<temp.size();j++) { temp[j].push_back(s[i]); } Sub.push_back(temp); } else { … | |
[CODE] vector<vector <vector<char>>> Sub; Sub[0][0].push_back(s[0]);Sub[0][0].push_back('\0'); Sub[0][1].push_back('\0'); [/CODE] I have the above code and it says "vector subscript insaccessible" for the assignments.What could the reason? Thanks in advance, Prasanna | |
I need a little help with algorithm for my code.Given a word "abacus" i have the code to find all its anagrams but i need to include also the words that are smaller in length than the original word. That is, I wanna be able to list ABA,AAB,ACA....ABAC,ABCS....so on. Thanking … | |
[CODE]#include<stdio.h> #include<stdlib.h> #include<string.h> void main() { char* a[10]={"asd","QWE","ghj"}; printf("%s %c",a[2],a[2][2]); // prints properly... "ghj j" puts(a[1]); //prints properly..."QWE" a[1][1]='t'; //gives segmentation fault.... }[/CODE] what is the mistake in the code...??/..pls help..have an exam in 6 hrs...thank you.... | |
char* p=(char*)malloc(10); in the above state ment,has the memory been initialised??...what is the difference between allocatingg it and initialising it?? thanks in avdance... | |
Im looking for some real c++ programming challenge...please post the most difficult you have encountered yourself....thanks in advance.... | |
i need a command in c++ to scan the first keystroke the user enters ....(i.e) user doesnt have to press <enter> key...i need to scan as soon as he types....please help...thanks in advance.... | |
Re: I have a similar problem now. http://www.daniweb.com/software-development/cpp/threads/379740/1634777#post1634777 |
The End.