September 25th, 2008 11:17 AM
(First of all I would like to say sorry if this forum is not a proper place for posting this thread, as this is not be a typical general/chit chat thread. I could not find a forum to cover all the...
April 30th, 2008 11:42 PM
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
{
HWND hWnd;
hInst = hInstance; // Store instance handle in our global variable
hWnd = CreateWindowEx( WS_EX_TOPMOST,...
April 30th, 2008 05:08 AM
My window is using this style. But then if I press ALT+TAB, the task bar is shown which is not desirable. From the task bar I can activate Task Manager. In my computer, the option Always on top is...
April 30th, 2008 12:15 AM
How can i create a window that stays topmost and don't loose focus with ALT+TAB or by any other process lunch like Task Manager?
I can create a fullscreen topmost window but unable to keep it...
April 17th, 2008 12:47 AM
Solved by using createCaption() function. :)
April 17th, 2008 12:41 AM
function createTitleUrlTable() {
var newtable = document.createElement("table");
newtable.border = "0";
for (var i = 0; i < 4; i++) {
newtable.insertRow(i);...
March 28th, 2008 11:10 AM
oh! that was because my net speed was too slow at that time. however, my problem was in my office computer. i will check it out there next week. thanks.
March 28th, 2008 12:51 AM
Sorry for the double post. The link you provided seems broken to me. I cannot open the page. Anyway, thanks.
March 27th, 2008 12:37 PM
I am unable to test AJAX-PHP codes because of the problem (or feature) of Firefox as per post #3 in this thread. I'll be grateful if anyone can solve this problem.
March 27th, 2008 04:14 AM
I am using IIS 5.1 on Windows XP SP2. When I try to access a php file (using AJAX, a normal php file loads) through firefox 2, firefox wants authentication. After googling I tried several tweaks in...
March 25th, 2008 01:46 AM
The ajax code:
var xmlHttp = GetXmlHttpObject();
if (xmlHttp == null) {
window.alert("Your browser does not support ajax.\n Please use latest version of your browser.");
return;
}
if...
February 28th, 2008 06:45 AM
i've read the online msdn about manifest files. but i didn't find using visual studio how to write my own manifest files. that's why i asked.
February 28th, 2008 04:06 AM
how to use the *.manifest files that visual c++ produces?
thanks.
February 20th, 2008 06:57 AM
i just learn that what i want to achieve is completely impossible. i need to redesign.
February 20th, 2008 06:02 AM
so silly of me. :blush:
Here is the fixed code:
AbstractGroup.h:
#ifndef ABSTRACTGROUP_H_
#define ABSTRACTGROUP_H_
February 19th, 2008 10:38 AM
Thanks for your reply. But using
AbstractGroup<string>* g = &d3;
does not eliminate the errors. Besides, my intention is some thing different. There are many other classes that derived from...
February 19th, 2008 07:09 AM
Abstract.h:
#ifndef ABSTRUCTGROUP_H_
#define ABSTRUCTGROUP_H_
template<class Type>
class AbstructGroup {
public:
virtual Type element(int) const = 0;
virtual int order() const = 0;
February 19th, 2008 04:39 AM
I've several classes (D3, D4, etc) which I would like to pass to the constructor of class C. All of these classes (D3, D4, etc) derived from an abstract class called AbstractGroup. I'm having problem...
February 12th, 2008 11:28 AM
Thanks for the replies. Dependency Walker is indeed a great tool! Thanks Doron Moraz for that. Using Dependency Walker I find a horrible thing: the Qt application also needs QtCore4.dll and...