Windows Programming - January 2012 (Page 3)

Interact with harddisk
 
i want to directly goto a sector and then dump the data from that area of hard drive how can i do this? i am using windows 7 and the drive type is fat32.
[2 replies] Last: Thanks. (by time to c)
how to use window thread
 
how to use multiple threads in order to reduce the time of encryption. when i use 1 thread to encrypt 5mb file, time taken is 5 seconds but when i use 2 threa...
[8 replies] Last: To encrypt a file more quickly, you should look at async file i/o, whi... (by andywestken)
Using a Console in a GUI application
 
Hey, I have a windowed application, in this application I am using a lot of math. I need to make sure that I got my formulas correct, but it is difficult to out...
[7 replies] Last: I think edit boxes are good in some places. And you can't escape from ... (by andywestken)
Creating a custom web browser
 
hello everyone. I am trying to make a custom web browser. I know that there is such a control in Microsoft Visual Studio. however,for the custom things do I ...
[12 replies] Last: Well, then IHTMLDocument2::Navigate can solve part of your probem. Re... (by andywestken)
dll programming and c sharp
 
ok first of all i don't know much about dlls and i never done any GUI stuffs before. i created some console based application but now i need it with GUI. ...
[2 replies] Last: Thanks. that's really helpful. (by time to c)
Something for practise
 
So am learning and understanding pretty good how do thing work right now,so i would just ask somebody if you could give me some programs for practise i would be...
[2 replies] Last: Thanks (by nhrnjic)
by NYP
Does anyone how to make this work?
 
http://s1236.photobucket.com/albums/ff451/threatn/?action=view&current=112.png I do not know how to do it with an array and atoi. Using visual studio C programm...
[2 replies] Last: well start by application entry point: int main { return 0; } ... (by codekiddy)
Binary Search Tree Copy Constructor Question
 
Before I post, I want to note that I've been searching for 4 hours and tinkering with this and to no avail. I know it's a common question but please bare with m...
[2 replies] Last: That's definitely the culprit here. Any idea how I'd just get to the d... (by Its a Wes)
by alsecz
earliest WM_??? event where HWND already exist
 
Hi All, I have a problem with Window dialog creation to be able to register my event handlers to my HWND. I would like to find the earliest! WM_ command where ...
[4 replies] Last: I am unclear about your original problem. Under normal circumstances, ... (by andywestken)
by sab
Sending mail in c++ using gmail as smtp relay
 
Hi guys, I would like to know how to send mail in c++ on a windows platform. I have referrred to the jwsmtp external library but am unable to get it p...
[no replies]
Refreshing a SINGLE character in Console?
 
I'm writing a game for the windows console, but the whole screen flickers whenever an action is performed. I ignored it until now, when my colleague said that i...
[6 replies] Last: I'm kind of curious about this haha. Should post some code :D or a vid... (by ResidentBiscuit)
C/C++ Runtime Library and Thread APIs
 
Hi, CreateThread() / ExitThread() _beginthreadex() / _endthreadex() I was looking on some forum and there it is recommended to use these in pair. Als...
[3 replies] Last: No, the "issue" with CreateThread() is either that certain CRT data st... (by webJose)
by siloan
Tray function
 
Hi there, i have this function void tt() { NOTIFYICONDATA Tray; HWND hWnd; //window handle hWnd=FindWindow("ConsoleWindowClass",NULL); //hide the window Sho...
[3 replies] Last: Don't change the project type. Best to just create a new project usin... (by webJose)
windowsx.h message crackers HANDLE_MSG
 
Yesterday in this post... http://www.cplusplus.com/forum/windows/59568/ sloppy9 saw my message cracker scheme which is based on function pointers and is a...
[2 replies] Last: Hah!!! That was it! I returned TRUE (as you say, the reverse of what... (by freddie1)
Unable to execute C#.net exe in c++ code
 
Hi, I kept one button on XP Gina logon screen and am trying to execute an c#.net windows Form exe using that button,when i pressed this button it should sho...
[1 reply] : You probably need CreateProcessAsUser() function, but I don't think th... (by modoran)
function Length
 
hello guys. I wrote this assignment: //--------------------------------------------------------------------------- #include<iostream.h> #include <vcl....
[2 replies] Last: The function "length()" is a member function of std::string objects so... (by Computergeek01)
API, redrawing a window after a mouse click
 
EDIT: Solved this by using... case WM_LBUTTONUP: InvalidateRect(hwnd,NULL,TRUE); break; ---------------------------------------------- So l...
[no replies]
loops problem
 
having difficulty with my code , the user is suppose to input a character and then move it , up , down , ;left and right using the keys : i,j,k,l on the keyboar...
[no replies]
A fairly difficult problem to search for...
 
So basically I'm making a generic sort of class that takes in something and can store, compare it, etc. For testing I just set it up to take in a char and (idea...
[2 replies] Last: Wow, maybe by senior year I'll remember to dereference. *smh* Thanks f... (by Its a Wes)
by FredB
Client connection problem Winsock
 
I am working on a c++ client that will connect to a server I have listening on a port. I can telnet the server, connect to it with a browser, and I already wrot...
[no replies]
January 2012 Pages: 12345... 9
  Archived months: [dec2011] [feb2012]

This is an archived page. To post a new message, go to the current page.