How to change Dialog background color in dialog based applications. yakkalas
YSRao
Posts
-
How to change Dialog Back ground color -
Convert DWORD to CStringCString strValue="5"; DWORD dValue=atoi(strValue); then dValue contains what is the value in strValue. dValue=5; yakkalas
-
COM Client problemHi, I am learner of COM Technology.I have written simple com object.It has 3 methods.I compiled it successfully.But the problem is I have written client program,it is showing errors. i have included component's .h,_i.c files into client program CoInitialize(NULL); CoCreateInstance(..........); what are the steps to follow to write COM Client program. yakkalas
-
Convert DWORD to CStringDWORD is also an unsigned integer,trying to convert it into CString means converting integer to char. Here I am sending simple Ex. #define HELLO 100 DWORD dwrd=HELLO; CString str1; char str[10]; str1=::itoa(HELLO,str,10); //CString str1=str; AfxMessageBox(str1); This simple code will show u 100 not HELLO.So as I am thinking,it is not possible. You mean to try to get CString value as HELLO?:confused: if so it is not possible as per my knowledge. yakkalas.
-
Convert DWORD to CStringDWORD is also an unsigned integer,trying to convert it into CString means converting integer to char. Here I am sending simple Ex. DWORD dwrd=HELLO; CString str1; char str[10]; str1=::itoa(HELLO,str,10); //CString str1=str; AfxMessageBox(str1); This simple code will show u 100 not HELLO.So as I am thinking,it is not possible. You mean to try to get CString value as HELLO?:confused: if so it is not possible as per my knowledge. yakkalas.
-
Convert DWORD to CStringHi, converting a CString into DWORD means, u are going to covert integer to char here is example. #define HELLO 100 DWORD dwrd=HELLO; CString str1; char str[10]; str1=itoa(HELLO,str,10); //CString str1=str; AfxMessageBox(str1); this will convert the DWORD into CString,but it is not wise.You can't get CString value like "HELLO". it is not possible i think.you can get 100 as a CString value. yakkalas
-
Caller ID compatible modems:confused:I am doing an application using TAPI32.lib.I have to capture the incoming call number.I have PCTel modem.AT#CID=1 command also working fine.I ahve down loaded caller ID applications and run,but they will not showing caller ID.My phone line has caller ID service.what is the caller ID system in India. Anybody please kindly let me get rid of this problem. yakkalas
-
Convertion of ordinary dll to COM DllHello Friends, I need to convert the ordinary dll(which can not be registered with regsvr32) to COM dll.Is there any tools for that yakkalas
-
Application will be closing when Pressed "Enter" or "Escape"The Applications which I have written in vc++ are terminating when I press "Enter" Button or pressing "Escape" button.How can I prevent this type of termination.
-
TAPI Events and CallerIDI am developing IVR application for my organizational needs.I am using only tapi.h and linked with tapi32.lib using vc++.I am facing the problem that all the events are not fired when a call comes in.My telephone has the callerID capability.I am not able to capture the callerID also. Can anybody suggest me to solve my problem. Y.Srinivas:confused: