|
Advice on Search Engine Optimization How many of you out there have an amazing system that you are using for search engine optimization? Please share your strategies to the group. YOu guys have got to check this FREE video out where Frank Kern of Mass Control, which is one of the biggest internet marketing launches in history, grills SEO expert Nancy... 15 Apr 2008 23:27
Distributing msvcrt.dll Hello. I have developed an app on Windows 2000 with Vc++ 6 (service pack 5). The app needs msvcrt.dll, which on my development machine is "6.1.9844.0". (If Im not mistaken windows 95 is the only version of windows which doesnt ship with msvcrt.dll in the system32 folder..can anybody confirm this?) Im not s... 22 Apr 2008 09:43
Transfer the Bitmap accross applications Hi , i have two different applications, like App1 and App2. Each application has one dialog like App1Dailog1 & App2Dailog2, my task is to transfer the bit map from one application to another application dialog. means when sending the bitmap file from one app1 to other app2 then app2 dialog has updated wtih a... 15 Apr 2008 11:31
Including header file There are 2 projects, Project A and Project B. I want to include a header file from Project B into project A. Project B is dependent on Project A. When including the header file of project B into A, i get the below mentioned error. D:\AInterfaces.h(490): error C2143: syntax error : missing ';' before 'string' ... 15 Apr 2008 09:05
Forward Declaration Is forward declaration for a class from another project is possible? If so, how to do? There are 2 Projects A and B, I want to forward declare a class of Project B in A, when doing so it says the class is undefined? Am i missing out any steps? Regards, Alamelu N ... 15 Apr 2008 09:05
import library I have an application that needs to import a DLL file for some database call like - #import "c:\Program Files\Common Files\System\ADO\msado15.dll" \ rename("EOF", "EndOfFile") the path is OS dependent - what if I run on some other PC but the msado15.dll is not specificed in the path specified? f... 15 Apr 2008 03:20
connect to simple COM is there a simple example on C or CPP or MFC how i can connect to simple COM that has one interface and some methods with their arguments thank you Dani... 14 Apr 2008 08:07
My application does not register itself to windows file manager Hi, I have an application , it does not register itself to windows file manager ( I mean , if I double click on a document of my application type, it does not open) How can I make it register itself, Thanks, ... 15 Apr 2008 03:20
How to restrict inheritance in C++ I want to write a class, which by itself should restrict inheritance, something like final class in java. Is it possible to write one in c++? Regards, Alamelu N ... 15 Apr 2008 09:05
Question about heritance and other aspects. Question 1.-------------------------------------------------------------------------------------------------------------------------------------------- #include <iostream> using namespace std; class B { public: int i; B() {} }; class A { public: A(B& b1) { b1.i=0; } }; class C : pu... 13 Apr 2008 23:54 |