I am experimenting with sending email directly from an .exe created by Visual Studio 2010, using C++. I've taken some code originally posted by Andreas Masur (with minor modifications) as a starting...
Spy++ didn't show any child windows in the browser, which is probably why my code didn't work. Is there any other way to manipulate the controls in a browser, such as text inputs, buttons and so...
I'm curious if there is a way to iterate through the controls on a webpage. For instance, I tried EnumChildWindows using the parent window of the browser, but I haven't had any luck -...
Would the situation be similar with connect() and closesocket() . . . specifically: if one thread closes a socket that another thread is attempting a connect() on, does the second thread continue to...
Suppose thread 1 creates a lock dynamically (but does not lock it). Then, suppose Thread 2 locks the lock, then goes out of existence. Will thread 1 be able to delete the lock since it was left...
Sadly, I wish I could answer that. I'm not even sure where to find these parameters. Er, well, I see /Yu, but I don't know where the other is. The entire thing worked until one particular build...
I've run into an interesting little stumbling block in the course of my coding adventures. I have been developing a multithreaded application. It worked fine on my old Windows x32 single core...
Thank you for your patience. Here are the steps I took:
1) I deleted the new Resource.h and .rc files entirely and copied the old files from the old project folder into the new project...
I'd like to completely replace the resources of a new project with those of an old. I've tried deleting the .rc file of the new and replacing it with the old (renamed to mimic the new), but the darn...
My goal is not to cause headaches. That said, it frustrates me when people are not patient with my questions. I don't always know the most efficient way to ask them.
I tried that change, but it ultimately didn't work. The comment made about the color scheme not being used did push me in the right direction, though. The reason it wasn't working was because...
Ovidiucucu: Thank you for your reply and solving the GetLastError issue. The FileObject and vector parts of the function were Paul's suggestion in order to clean up the previous version. My...
I think I've narrowed the problem to the very end of the function where BITMAP is being filled in. The final bit data is preserved at that point, but sometime shortly after the function ends, a call...
Thanks Paul. That does make more sense. Here is the updated code. It still doesn't seem to load up anything though. I tried finding the topic of loading bitmaps in the FAQ but didn't see...