Language
Any
Platform
Windows
Remove
License
Any
hi,
can you please give a clearer example? i can't still get it. i am new to OS. infact i have just started studying about the subject.
Questions:
1. What should we use to open file? Is it...
I inject a dll into a windows dialog. Then I want from the dll to find a control handle of a specific control in the dialog.
I've searched through winAPI on MSDN but i haven't found any useful way....
Need to display text Contour sinusoid. Using a rotation system kordinat function SetWorldTransform for her needs structure XFORM how to calculate the formula slope (angle), to substitute the...
That depends on how the algorithm works. I see a few ways to do it:
CASE A)
1. Open file and load ALL text into a buffer
2. Create threads for counting and pass buffer pointer to each thread...
How two thread process data from same input file in parallel?
Can anyone enlighten how to begin with? There is one textfile, that contains lines of phrases. One thread counts the number of line,...
Many thanks for your help and advice, superb detail! Thanks a lot for setting me straight on BeginPaint/EndPaint too! Works perfectly now!
BeginPaint/EndPaint are only to be used inside a response to WM_PAINT message. They cannot be used in WM_LBUTTONDOWN.
Basics of windows programming:
1. HWND has a client area attached
2. If...
Hi there,
I have just started programming in the win32 API and I've had a small problem that's been bothering me for a couple of days - I'm sure I'm missing out something fundamental, so apologies...
ConnectServer( _bstr_t(L"root\\SecurityCenter"),
// Object path of SecurityCenter
NULL, // User name. NULL = current user
NULL, // User...
Visit this link (I assume you talking about RegDeleteKeyEx, because there is no such API: RegDeleteEx):
http://msdn.microsoft.com/en-us/library/ms724847(v=VS.85).aspx
and verify that your...
I recently wrote a windows program an debuggged it, but rather than it loading it threw an exception with the following message: The procedure enry point RegDeleteExW could be located in the dynamic...
Hello All--
I'd like to get a capture of a dialog in Windows XP using C++ without actually displaying the dialog on the screen. I'd use this for auto-generating help files for my application....
UdpSend(lpString); // send the text to the server
}
}
if (!IsDialogMessage (hDialog, & msg))
{
TranslateMessage ( & msg );
DispatchMessage ( & msg );...
Hello!! I am having trouble getting java to terminate a console app. Here is an example (see code below). I export a jar using eclipse. Run from a dos box in windows 2008.
java -jar...
I want to construct a multicast tree from the values I got when I sent a traceroute from a number of measuring points to a target CDN Server.
Hi Forum.
I am currently programming an application with a TCP socket interface to another system. The interface must:
1) send and receive a keep-alive message every 10 seconds
2) receive...
Try this:
1. Get the full path to the program EXE file. In Win32 use GetModuleFileName() function. You get back a string with something like this:
"C:\Dir1\Dir2\Dir3\Program.EXE"
2. Cut off...
I have created an OSDesign and emulator for ARM processor.I have added the subproject i.e.Hello world,provided by visual studio.The project is created in C i.e.Subproject2.pbpxml.This subproject is...
add a label
if %choose% == C goto calc
if %choose% == c goto calc
:calc
run %windir%\system32\calc.exe
goto calc_end
:other labels
...
...
:calc_end
try something like that; it looks...
Hi guys,
I have a small problem. I'm working on an emulator for game ROM's, and the part I'm working on right now create a bitmap (at least it is supposed to do so). I have 13 different palettes...