yes, but they have set it as default white.. that's why I'm asking..
rrthangavel
Posts
-
Using Activex controls (Designed in vb6) in vc++ -
Using Activex controls (Designed in vb6) in vc++Hi, I'm using Activex controls (Designed in VB6) in VC++. The Activex control background color is set as White. and in vc++ i'm loading Dialogs which using activex control as Propertypages. the dialogs color will vary at runtime. so there is mismatching colors between activex controls and my dialogs.. so please help me is there any function available in vb6 or any other solution...? Waiting for u :rose:
-
Integer value Rotation problemi got it thanks yaar.
-
Integer value Rotation problemHi All, As we know integer has value limitation's(ex +_32767) depends upon bit range(ex 32 bit,16 bit). i'm working with an integer variable which gets input from text box(designed as Activex control). my condition is if the user enters the value in text box greater than 10 means it should show the error symbol otherwise correct symbol. so the problem is if i enter the value 10 to 36767 means it shows alert symbol. if it is above 32767 means it shows correct symbol. How can i solve this integer value Rotation Problem? waiting for u :rose:
-
Desingning a Dialog Box's and formsThanks buddy.
-
Desingning a Dialog Box's and formsHi Friends, I am presently doing a project in VC++(VS 2008). it having more than 40 dialog's. for that dialogs i'm designing with controls... it is difficult me to maintain the dialogs good and perfect without missing the alignment's... so please tell me some tips about designing and how to design the dialogs effectively... Thanks in advance... Rose ...
-
how the client and server communicating in internet?Hi, is there any possible to having an communication between client side ( ASP .Net or others), server side is C++,MFC on the internet using SOCKET programing... if it is possible means please tell me how they communicating...? thanks in advance....
-
Reg to Unicode and MBCS problem in socket programingHai friends, i'm working with client server model socket programing using VC++. it has MFC SOCKET in client side and WIN32 SOCKET in server console application. i'm having proplem with receiving the strings in server side. i displayed part of code here Client Side Coding: UpdateData(1); CSocket client; client.Create (); CString sendstr; sendstr="Hello"; client.Connect ("127.0.0.1",2500); int len=sendstr.GetLength (); int sent= client.Send(LPCTSTR(sendstr),len); UpdateData(0); Server side coding: char recvbuf[32]="" ; int bytesRecv = recv( server, recvbuf, 32, 0 ); printf( "Bytes Recv: %d\n", bytesRecv ); recvbuf[bytesRecv]=NULL; printf("%S",recvbuf); if i run the code i get 5 in bytesRecv correctly.. but in recvbuf buffer three letters only available... like "hel" please help me l'm waiting for u... :^)
-
CString Object in a console application...Hi, i am working in console application in VC++(visual studio 2005). i am having a problem while using CString. i have mentioned sample code below. #include "stdafx.h" #include "server1.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // The one and only application object CWinApp theApp; using namespace std; int _tmain(int argc, TCHAR* argv[], TCHAR* envp[]) { int nRetCode = 0; // initialize MFC and print and error on failure if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0)) { // TODO: change error code to suit your needs _tprintf(_T("Fatal Error: MFC initialization failed\n")); nRetCode = 1; } else { CString str; str="IP conneted" printf("%s",str); cout<<str; } return nRetCode; } while executing the code.. i get printed only first letter(I) of str. so please help me.. is there any header or setting should i change in the visual studio environment?