No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Student
- Interests
- Hollywood movies, reading novels, hanging out and programming
23 Posted Topics
i am developing a visual studio solution that contains two projects. Each project has its own namespace : Project1 : namespace MainProject.Project1 Project2 : namespace MainProject.Project2 My problem is that i cannot access 2nd project's namespace in the 1st project and vice versa. I tried to add the namespace through … | |
First of all, the keylogger that i am developing is not at all for offensive and destructive purposes. :) I am developing a client monitoring application in C#.NET. Keylogging is one of the features in my application. Though i have developed the code for the keylogger, i have not been … | |
I am dealing with multiple monitors in which i required to use EnumDisplayDevices() API. However, the linker gives me following error log (i am using VC++ 6.0) : [CODE]Linking... SourceCode.obj : error LNK2001: unresolved external symbol __imp__EnumDisplayDevicesA@16 Debug/AllianceProject.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe.[/CODE] I tried … | |
I am working on an assignment to host a website. I am using LAMP architecture for that. What I am confused at this point is to where to store my website folder(s). What I thought was to put it in /srv/www/ : /srv/www/MyWebsite. But then I was advised that I … | |
Inorder to list all the workstations on a LAN, i have used NetServerEnum() after importing it. On running the program, it seemed to work fine. The two existing machines were detected correctly. However, i want the list to be refreshed whenever required (some refresh button). So i detached the wire … | |
Re: [QUOTE=Deme;867627]I don't think so, I just use a switch/case which then calls it and thats all, heres the complete code: [CODE] #include <cstdlib> #include <iostream> #include <fstream> using namespace std; char* Username = new char[255]; char* Password = new char[255]; char* User = new char[255]; void Join() { ofstream DataBase("DataBase.txt", … | |
In my client-server architecture, the cilent-side application would send specific messages to the server-side application. How should i handle those messages? Previously, in a small project, i had just passed the received message to a method where it would process the message through a switch case structure. However, this doesnt … | |
We are developing a client monitoring network application. We would require IP addresses of all the computers in the network. how do we retrieve these IP addresses ? I have already seen some code that makes use of unmanaged C++ or WinAPI. But I would prefer C# code (ofcourse). I … | |
I am developing a client-server application. However, here the situation is a bit different : There is only a single client that would connect to several servers that are listening for a connection. This means that the only client would require the port numbers of all the server exes. I … | |
I am developing a form application (UI) through which I need to connect a client to multiple servers. For that, i would require an array of either Socket objects or TcpClient objects. My dilemma is where i should put this array. I cannot put the array in the static class … | |
Currently I have started with my college project - Network monitoring, which may include features like keylogging, application blocking, h/w restrictions, catching snapshots, file operations surveillance, etc. (i mean as many as i would be able to add.) The platform for this project is C#.NET which is new to me. … | |
I have written the following java applet code, mainly with the aim of suspending a thread instead of nullifying it and creating an another instance of it. I want to know if the below written code is safe, or, in other way, good code to follow? [CODE] public class AppletThread … | |
i have come across a question which asks to write an awk command that displays all records having 2nd and 3rd characters same. i could write the solution in sed, using tagged regular expression, as follows : [QUOTE] sed -n '/^.\(.\)\1.*$/' emp.list [/QUOTE] However, as far as i know, tagged … | |
I have been working on a program which requires to retrieve the names of all the current windows on the desktop. I can retrieve the name using the Windows API function GetWindowText(). But i require a function to retrieve the handles to all the windows. I want to know which … | |
i am developing a project in vb 6 which deals with printing lots of forms and invoices - all containing user-filled details. The invoices have different structures - some are tabular (with irregularly placed columns, however) while some are plain text (letter-like). i am going to use MS Access for … | |
I am developing a peer-to-peer RAT tool. The mechanism i use is as follows : client-side : connect to the server. server-side : listen and accept the incoming connection. The related code is as follows : [code] // client - side : void ClientDialog::connectToServer() { if (connectingSocket_.Connect (_T("bhoot"), PORT) == … | |
I am writing a RAT in which i have also included a keylogger as a DLL file. here is my code in the keylogger.dll : [CODE] //function.h -- the file which will be referenced by my RAT project file.///////////////////////// extern "C" __declspec(dllexport) void setHook(); //keylogger.h////////////////////////////////////////////////////////////////////////////////////////// #if !defined(AFX_KEYLOGGER_H__5979CE3A_20A6_4172_BBF1_9F7C091CC182__INCLUDED_) #define AFX_KEYLOGGER_H__5979CE3A_20A6_4172_BBF1_9F7C091CC182__INCLUDED_ #if … | |
My project is to develop a 2D LAN ( 2- player) game in MFC. Would anyone of you recommend a game which would be easier to develop? | |
Well, this post might seem weird but as i am very much confused, i thought to seek some help from here. My question is : When should i call a base class implementation of a message handler in my own implementation? ( I am talking about MFC.) For example : … | |
Does CWnd::GetClientRect() include the toolbar region? Whenever i use InvalidateRect(), i pass the entire client region for repaint, inorder to retain the client window contents : [code] InvalidateRect(NULL); [/CODE] But this affects my toolbars ( my application has two toolbars. ) - they disappear. I think it is because of … | |
Re: You said that you want to do it through while loop (not 'command' :) ). For that, take some character/BOOL variable and assign to it the value Y/y/TRUE. Then, run the loop with the condition so that it evaluates to be true at the first loop. For other loops, just … | |
Re: :| umm..you mean the value? for value, dereference it. *variable gives the value. | |
Re: yes..this is correct provided that the pointer > struct node* LL you are passing is the starting of the linked list. ;) |
The End.