|
Is it posible to send SMSes via the RAS-Phone API? Platform: Windows CE 5.0
http://msdn2.microsoft.com/en-us/library/ms897066.aspx
|
|
|
|
|
|
9.39624
Nobody can give you wiser advice than yourself. - Cicero
.·´¯`·->Rajesh<-·´¯`·.
Codeproject.com: Visual C++ MVP
|
|
|
|
|
nisha00000 wrote: this is very important question ..to all
nisha00000 wrote: it's very urgent for us!!
How this is important to all? who is us?.... you???
Mukesh Kumar
Software Engineer
|
|
|
|
|
Mukesh_VC wrote: How this is important to all? who is us?.... you???
offcourse
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
Yes, here are some C++ /VC++ openings.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
|
|
|
|
|
What are you expecting from us by asking this here?
I have been reading your posts today here on this forum. What do you think you are? Your replies to few of the questions here today are far from being a solution to what was actually asked. Don't you realize that you are downgrading the quality of the forum with your posts?
Don't ask anything like what you had posted here in this thread here. And moreover, don't post anything as solutions/suggestions when you are not sure about it. Leave that job to the experts here.
Regards,
Vijay.
|
|
|
|
|
nisha00000 wrote: Is there any openings in C++/VC++
if you know the answer, please replay ...
in C++/VC++ blocks opens with opening brace, you need to close it with closing brace otherwise you end with compilation errors 
|
|
|
|
|
Stop being facetious. That was an urgent query FYI.
Nobody can give you wiser advice than yourself. - Cicero
.·´¯`·->Rajesh<-·´¯`·.
Codeproject.com: Visual C++ MVP
|
|
|
|
|
Rajesh R Subramanian wrote: That was an urgent query FYI.
Sorry that i couldn't reply before OP delete the message.

|
|
|
|
|
thanks guys ....i these r all the best answers for ever ...its just guess but its correct..
By
Nisha
|
|
|
|
|
Its not good that you delete your qeustion.
|
|
|
|
|
I want to print the system time with format:
"HH:MM:SS:FFF" where "FFF" is millisecond.
How to format like above using _ftime64() function?
Thanks,
Suman
--
"Programming is an art that fights back!"
|
|
|
|
|
If you really need the milliseconds field then you should consider a function like timeGetTime [^], however it gives you just the system time.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
|
|
|
|
|
rp_suman wrote: "HH:MM:SS:FFF" where "FFF" is millisecond.
How to format like above using _ftime64() function?
See this sample code for _ftime [^]
I modified single line of code as,
printf( "The time is %.8s:%hu", &timeline[11], timebuffer.millitm);
if you want in a buffer try any formatting API that writes to buffer like wsprintf().
|
|
|
|
|
Thanks a lot for the help from you all!!
Best Regards,
Suman
--
"Programming is an art that fights back!"
|
|
|
|
|
Hi,
I have a structure with a CArray, Is it possible to write and read the stucture as a whole using ReadFile() and WriteFile() functions.
|
|
|
|
|
Nope: you need to implement serialization [^] to store and retrieve your struct.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
|
|
|
|
|
how to extract the OLE Object from ms-access table using win32 (NO MFC)?
|
|
|
|
|
Hello All,
I have set of BMP images in my D:\images folder. I need to display all the images one after the other in the dialog when the user clicks the play button.
Please let me know what kind of Activex control should be used , and how to proceed with work.
Thanking you …
Pruthvi G.
|
|
|
|
|
Use FindFirstFile once and FindNextFile to get file name each time in play button click and load that file using LoadImage and display it OnPaint.
|
|
|
|
|
If you are using MFC, check out CStatic::SetBitmap() .
"Love people and use things, not love things and use people." - Unknown
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
|
|
|
|
|
You dont need to use of activex for bmp or jpg file if they are bmp files LoadImage is sufficient but if you have other formats CImage class is good for you,do you want to show them on dialog or a control?
|
|
|
|
|
Hi Everyone,
I have one problem that is i dont know how to connect ms access database in VC++ program.please tell me the procedure for connection.
please help me.
Thanks In Advance,
savitri
|
|
|
|
|