Tagged Questions
0
votes
1answer
25 views
Child Windows that does not occupy client area
In the Win32 API (pure win32), The Menu bar does not occupy any area from the client area of the window. Which means the origin coordinates of the client area is right under the menu bar to the left.
...
1
vote
1answer
41 views
ProcessID confusion
I'm confused.
Why do notepad.exe have three different process ID's?
1)Spy++ says 000000A48 (eh?)
2)Taskmanager says: 2632
3)GetWindowThreadProcessId says: 1744
I guess that 2632 is the right ...
0
votes
3answers
83 views
Where the value of variables are stored in C
In the following code segment:
int func()
{
int a=7;
return a;
}
Is the code segment where the value 7 is stored in the executable? Or is it in data segment or in the code segment? Will ...
0
votes
1answer
46 views
open a windows file directory for reading/writing in c
I'm trying to write the contents of a windows directory to a file using c. For example, if I had a directory of jpegs (i.e. a directory that contains multiple jpegs) and wanted to convert them to a ...
0
votes
2answers
61 views
How to show more than 50 push buttons on a window?
I have created a Window and then, created 50 buttons on this Window but I can only see 10 buttons on my window. Rest are out of view since I am not able to scroll the window down.
I have added auto ...
1
vote
1answer
57 views
Is Visual Studio 2012 suitable for C (not C++) professional programming? [closed]
I've to develop a service for Windows7 in C. I've to use a few C libraries (GNU Scientific Library among others) and I'm wondering about what IDE to adopt.
With C#, I'm used to both Visual Studio ...
0
votes
2answers
33 views
Handle postthreadmessage() inside a thread which is blocking in while(1) loop or use “Event Driven Sockets”
I have a single server multiple client udp application. There is a single thread (thread#1) with a single socket (socket#1) to receive data from client#1 continuously. The task of this receiving ...
0
votes
0answers
25 views
How to add automatic scrolling bar to a window when number of buttons exceeds window size. (winapi)
I have created a window and added almost 50 buttons to it. But the problem is that I can only see a few of those buttons as my window does not scroll up/down or left/right to show me the remaining ...
1
vote
0answers
34 views
ldap_set_option() is not setting the option “LDAP_OPT_SSL”
I have a windows application that is trying to connect to ldap server running on secured port 10636.
Here's the source:
#include "windows.h"
#include "ntldap.h"
#include "winldap.h"
#include ...
2
votes
1answer
70 views
Escape sequence \a is not working
I have the following piece of C language code, it is running good on my friend's laptop but it is not working in my laptop.
In this code afer this certain time period i wanted to make an alert beep, ...
1
vote
2answers
37 views
Double-buffering *framework* in C and Windows GDI
Background: My client has a very extensive proprietary forms library which is effectively implemented in C (actually, it's a proprietary object-oriented language that basically wraps Windows controls ...
10
votes
3answers
130 views
fwrite() alternative for large files on 32-bit system
I'm trying to generate large files (4-8 GB) with C code.
Now I use fopen() with 'wb' parameters to open file binary and fwrite() function in for loop to write bytes to file. I'm writing one byte in ...
-1
votes
1answer
62 views
Blocking sockets v/s non-blocking sockets in multi-threaded single server multiple client application [closed]
I had been working on a Server Client aplication where Server is going to service(sendto + receivefrom)'x' number of Clients at a time. For this purpose, I have created 'x' number of threads on Server ...
0
votes
1answer
42 views
remove button from a window
Using c++, I have created a window with a "WNDCLASS" structure. I have then used "CreateWindow" again with the system class "button" and set the parent handle to the handle of the window already ...
2
votes
1answer
41 views
How network event FD_WRITE is generated when using Event Driven Sockets?
I am working on newtwork event based socket application.
When client has sent some data and there is something to be read on the socket, FD_READ network event is generated.
Now according to my ...
1
vote
1answer
29 views
fread() fails after reading complete contents of text file
I have written this code which reads contents of text file into a buffer and sends the buffer over the socket until end of file.
The code works fine and after complete file is sent to over the ...
1
vote
2answers
46 views
Read a text file line by line and save each line in the buffer irrespective of data type and length of each line
I want to read one line of the text file, save it to a buffer, send the buffer over a udp socket and then go and read the second line and so on..
So far, since I knew the data type of the text to be ...
4
votes
4answers
85 views
Is there a Linux equivalent of SetWindowPos?
A while ago I wrote a script in C that used the Windows API functions EnumWindows, SetWindowPos and SetForegroundWindow to automatically arrange windows (by title) in a particular layout that I ...
0
votes
1answer
17 views
Code is not updating in Windows
I am running a C program using DEVC++ and CodeBlocks in Windows and the code is not updating.
I just added a single printf message and it is not shown in the output.
I tried clean,rebuild,recompile, ...
1
vote
1answer
47 views
How to declare and link to RoInitialize,RoUninitialize,RoGetActivationFactory and HSTRING Functions in Mingw Gcc
UPDATED: Added what RoInitialize looks like in roapi.h
I am in the process of writing a pure C++11 WinRT library. I do not use WRL or C++/CX(Obviously if I want pure C++11).
I got my code to compile ...
0
votes
1answer
47 views
Threading in C with CreateThread()
I am very much a novice to C, and I am trying to make a program to run MIDI sequences, and basically, I have two functions, both running a different MIDI pattern, and I need them to run in parallel. ...
1
vote
1answer
46 views
fopen() opens the text file successfully for sometime and fails after a specific time
I am trying to send a text file at a socket after every 10ms. The code works fine and keeps on sending the text file over the socket after an interval of 10ms. But after some period of time (like ...
1
vote
0answers
45 views
“Debug Assertion Failed. Expression: (_osfile(fh) & fopen)” error and Fatal Error in visual studio 2008
My following code is compiled successfully and runs perfectly for sometime handling 40 clients but after sometime, it gives an error "Debug Assertiion Failed expression: (_osfile(fh) & fopen)".
I ...
3
votes
4answers
63 views
Windows thread scheduler is unfair?
Sometimes, when I run this simple program
#include <Windows.h>
DWORD WINAPI ThreadStart(LPVOID)
{
for (;;) { }
return 0;
}
int _tmain()
{
SetPriorityClass(GetCurrentProcess(), ...
0
votes
3answers
120 views
What is the most popular C++ gui framework in windows? [closed]
Nowadays there are many windows applications. Several years ago, MFC may be the most popular gui framework to create windows applications. But I think MFC is too old and doesn't have a good OO design. ...
0
votes
1answer
34 views
Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted
My following code gives an error "Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted." if I add a "break" inside my if statement. I have also hghlighted this "break" inside ...
0
votes
1answer
74 views
Unable to copy multiline text file to a buffer
I am trying to copy a text file to a buffer in order to send it over the socket. As soon as the text file does not have any newlines (or \n), the file is successfully copied into buffer. But, ...
0
votes
1answer
41 views
How to get the locale name for my thread?
Say, I can set the locale from my C program using _create_locale as such:
localeUS = _create_locale(LC_ALL, "English_United States.1252");
But what I need is the opposite, i.e. to retrieve the ...
-1
votes
0answers
31 views
Help With Socket Programming In C [closed]
So, today i thought i would try something new, and play with windows sockets. I found a tutorial on the internet http://www.binarytides.com/winsock-socket-programming-tutorial/
Problem is, that ...
4
votes
1answer
62 views
CPU Usage 100% when creating 3 threads and using WSAWaitForMultipleEvents() and WSAEnumNetworkEvents()
I have created 3 threads each thread has one socket each.
Inside each thread, socket is made "Event Driven" and whenever data becomes available for reading, an event is generated.
The code works ...
3
votes
1answer
43 views
Unable to create multiple threads using for loop
I am trying to create 3 threads using a for loop. Following is my code snippet:
DWORD WINAPI ThreadProc0(LPVOID param)
{
return 0;
}
DWORD WINAPI ThreadProc1(LPVOID param)
{
return 0;
}
DWORD ...
0
votes
0answers
43 views
getting usb number written on device
I want to get usb no of the USB drive I am trying it like this
char devicePath[7] = "\\\\.\\@:";
devicePath[4] = (char)( buf );
HANDLE deviceHandle = CreateFileA( devicePath, 0, FILE_SHARE_READ | ...
0
votes
2answers
33 views
Packet forwarded to destination, but application doesnt receive
I am trying to run a simple client-server program on my machine. It works fine if both client and server are on the same system. But if the client is on another system and server is running on mine, ...
0
votes
1answer
48 views
Making udp sockets non-blocking by making the socket Event Driven
I am trying to make my Socket "Event Based". Following is what i tried:
VOID createServerSocket()
{
WSADATA wsa;
//Initialise winsock//
if (WSAStartup(MAKEWORD(2,2),&wsa) != 0)
...
0
votes
1answer
40 views
Output utf-8 to console
I have this code to print an utf-8 char to windows console:
SetConsoleOutputCP(65001);
freopen(NULL, "w,ccs=UTF-8", stdout);
wchar_t u16 = 0x00A9;
unsigned char utf8_b[] = {0xc2, 0xa9, 0x0}; //same ...
0
votes
2answers
39 views
Translate message value to macro? [duplicate]
I need to translate a value to its corresponding message macro, such as 0x100 to WM_KEYDOWN.
Is there any exists open source implementation of this?
-1
votes
0answers
41 views
Programming in Windows 7 (which book?) [closed]
I'm five chapters into Programming Windows, Fifth Edition by Petzold, and I'm uncertain how outdated this book is.
I'm currently borrowing the fifth edition from a professor. Is the difference ...
0
votes
2answers
46 views
Access a spawned process's TIB through FS register?
I'd like to access a spawned process's TIB (I created the process with CreateProcessW successfully).
I have obtained a pointer to the spawned process's TIB through:
GetThreadContext (with ...
0
votes
1answer
75 views
Check if application is installed in registry
Right now I use this to list all the applications listed in the registry for 32bit & 64.
I have seen the other examples of how to check if an application is installed without any luck.
...
0
votes
1answer
60 views
How to pop up message when user accesses facebook.com [closed]
In the company I work there is a general computer that I need to notify users not to enter to a specific website, for example: facebook.com (this is just an example).
How it should work:
when the ...
0
votes
1answer
57 views
Making udp socket non-blocking
I had been working on non-blocking udp socket. The code that I had developed generates a Window Message whenever there is any data to be read over the socket. Below is the code snippet:
void ...
0
votes
0answers
36 views
statically link with OpenSSL library
I am using OpenSSL-Win32 library on an x86_64 win7 machine, with MinGW gcc compiler. I am linking the libeay32.a and ssleay32.a statically to my program. No warning or error code is generated.
...
0
votes
0answers
29 views
Windows Socket Programming -> Delay in messages getting transfered in some systems
I have a client-server model software which uses Windows sockets for communication. It works absolutely fine on most windows xp systems and windows 7 systems. But on some XP and 7 systems, there is ...
1
vote
2answers
49 views
Passing pointer to SOCKADDR_IN and SOCKET in a function
I have a function createServerSocket(). This function can be accessed by multiple threads for creating their sockets.
I want each thread to pass three arguments, a socketIdentifier, *sockaddr_in* ...
0
votes
0answers
53 views
c/c++ get handle control of an unnamed listbox
I am using this code to get the handle of a listbox I need but the problem is that I have 5 listboxes with same class name and no title
and it stops enumeration since it finds first listbox
BOOL ...
0
votes
0answers
24 views
OpenSCManager fails on Windows 2008 (but works on earlier Windows platforms)
The code below works on Windows NT, 2000, 2003, XP, 7 but not on Windows 2008.
The call to OpenSCManager does not return a valid handle. The error message printed is: Access is denied
Here is the ...
2
votes
2answers
92 views
HMAC-MD5 with CryptoApi
I have adopted the SHA1 HMAC example from Microsoft's website and modified it according to this stack-overflow post and some other suggestions on the Internet, however I am unable to produce correct ...
0
votes
4answers
104 views
Can two Threads use same Thread Procedure?
Is it possible for two threads to use a single function "ThreadProc" as its thread procedure when CreateThread() is used?
HANDLE thread1= CreateThread( NULL, //Choose default security
...
-1
votes
0answers
20 views
Can two Threads use same Thread Procedure? [duplicate]
Is it possible for two threads to use a single function "ThreadProc" as its thread procedure when CreateThread() is used.
HANDLE thread1= CreateThread( NULL, //Choose default security
...
-4
votes
1answer
65 views
How to create multiplethreads each with different ThreadProc() function using CreateThread()
I have successfully created a single thread using CreateThread().
Now I want to create 'n' number of threads but each with a different ThreadProc().
I have tried the following code but using it, 'n' ...

