Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~14.8K People Reached
About Me

Student

Interests
Hollywood movies, reading novels, hanging out and programming
Favorite Tags

23 Posted Topics

Member Avatar for Bhoot

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 …

Member Avatar for V._549
0
11K
Member Avatar for Bhoot

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 …

Member Avatar for Jay Cox
0
227
Member Avatar for Bhoot

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 …

Member Avatar for pdtx
0
340
Member Avatar for Bhoot

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 …

Member Avatar for JRM
0
105
Member Avatar for Bhoot

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 …

0
101
Member Avatar for Deme

[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", …

Member Avatar for Deme
0
212
Member Avatar for Bhoot

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 …

Member Avatar for Bhoot
0
138
Member Avatar for Bhoot

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 …

Member Avatar for ddanbe
0
232
Member Avatar for Bhoot

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 …

0
89
Member Avatar for Bhoot

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 …

Member Avatar for Bhoot
0
133
Member Avatar for Bhoot

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. …

Member Avatar for Bhoot
0
638
Member Avatar for Bhoot

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 …

0
72
Member Avatar for Bhoot

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 …

Member Avatar for ghostdog74
0
297
Member Avatar for Bhoot

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 …

Member Avatar for Bhoot
0
251
Member Avatar for Bhoot

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 …

Member Avatar for Bhoot
0
148
Member Avatar for Bhoot

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) == …

0
68
Member Avatar for Bhoot

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 …

Member Avatar for Bhoot
0
276
Member Avatar for Bhoot

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?

Member Avatar for Freaky_Chris
0
53
Member Avatar for Bhoot

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 : …

Member Avatar for Bhoot
0
159
Member Avatar for Bhoot

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 …

Member Avatar for Bhoot
0
198
Member Avatar for thenic

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 …

Member Avatar for kenji
0
116
Member Avatar for manzoor

:| umm..you mean the value? for value, dereference it. *variable gives the value.

Member Avatar for e_agam
0
79
Member Avatar for Geard2

yes..this is correct provided that the pointer > struct node* LL you are passing is the starting of the linked list. ;)

Member Avatar for Bhoot
0
29

The End.