Hi friends I have source code ,its perfectly running internet explorer but an apple safari browser its not running ...why?? Thanks
nisha00000
Posts
-
problem with apple safari -
create rectangle box ,display inside system time how?can u plz write the code snippet for that problem
-
create rectangle box ,display inside system time how?hi thanks to replay its create rectangle successfully .and how to display system time inside this rectangle box
-
create rectangle box ,display inside system time how?Hi friends i want to create one rectangle box in that rectangle box inside displays the system date how to do that in MFC? please give me your code snippet Thanks and regards Nisha.S
-
Client-Server programHi friends I havnt knowledge with Client-server program i want to get the server system date to display in the client side ..please help me Thanks and regards nisha
-
Need your helpThanks for my re-players my problem is solved...
-
Need your helpHi friends ...i need your help for sorting linked list program in C++ i forget it in data structure please help me regards nisha
-
What is the difference between GetMessage ,PeekMessage and PostMessage?Regards nisha
-
VC++ MFChi selvan you already ask this question .......
-
enteries in add remove programsorry guys its for my mistakes..
-
enteries in add remove programhey you asking from the base .......if we do means ...what abt your knowledge ...??? ok any ill give some tips give AddString() function for add button and take the index value,and then give deletestring() button for remove button... i think this tips may be help for u ...
-
how can i open a file(.doc or .txt or .xsl) in a dialog in MFC?CFile Lfile
Lfile.open("D:\\sam.txt",CFile::Read);
This kind of way open your file.......
-
Problem in using CString in Win32 dynamic librarychange the property setting give MFC shared dll .. and then add afx .h header file .. i think it ll work fine...
-
Createfile in Vistain vista .. there is one compiled MFC source code in this code was developed XP,that code was not running in vista. But in vista we have 2 generate the source code and developed it then only its possible to achieve ..
-
How to create address book using MFC??Hi Friends I need your help...in MFC How to create Address book in MFC? Regards Nisha
-
how data is managed in CString class?Regards Nisha
-
CFile Vs CStdioFileHi Whats the difference between CFile and CStdioFile ?Why we are use CFile and CStdioFile? Thanks Nisha
-
Generating XML file output?you are simply writing in console print XML senerio ...i want to generate one external XML file
-
Generating XML file output?Hi i have one doubt regarding how to generate XML file output for example;
main()
{
int Array_sample[];
for(int i=0;i<=10;i++)
{
Array_sample[i]=i;
std::cout<<Array_sample[i]<<std::endl;
//This is generating output but i want to write this output only print in
// XML file how do that???
}
return 0;
}Thanks and Regards Nisha
-
its showing Error ?hi this is my code ..its working good in 3digit sorting algorithm. #define next(i) ((i) < 5 ? (i) + 1 : 1) #define previous(i) ((i) > 1 ? (i) - 1 : 1) int main() { unsigned long i, aux, j, cnt; for (i=1 ; i<6 ; i++) { for (aux = next(i) ; aux != previous(i) ; aux = next(aux)) { cout << i << aux << next(aux) << endl; } } return 0; } But, i replaced 5 into 100 ..its showing wrong sorting why? #define next(i) ((i) < 100 ? (i) + 1 : 1) #define previous(i) ((i) > 1 ? (i) - 1 : 1) int main() { unsigned long i, aux, j, cnt; for (i=1 ; i<101 ; i++) { for (aux = next(i) ; aux != previous(i) ; aux = next(aux)) { cout << i << aux << next(aux) << endl; } } return 0; } Thanks and Regards Nisha.S