|
Hi David,
Thanks for the reply...
but i didnt get you... about what you are asking? is it msxml dlls in system 32 or what...please make the point clear.
Thanks A Ton
Ash_VCPP
walking over water is just knowing where the stones are.....
|
|
|
|
|
If the ProgID does not exist on the machine (i.e., MSXML has not been installed), CreateInstance() is obviously going to fail, hence why I asked if it existed.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
CreateInstance returns an HRESULT. What is the value?
Best Wishes,
-David Delaune
|
|
|
|
|
Hi,
I am looking for a portible Email Client for Embedded OEM system.
Can someone help me?
Regards,
Kobi
|
|
|
|
|
Yeah sure, okay.
What's it's name?
You look over there, and I'll look over here. If I see anything I'll call out coo-ee.
|
|
|
|
|
I don't know what is the name of an Email client.
I am looking for it.
It should support all email protocols:
SMTP, IMAP4, POP3 and MIME.
|
|
|
|
|
Hello,
the question is related to automation with excel
I have used chart types and to draw stock volume option
xlStockVOHLC = 91 . The data is arranged properly in excel sheet but how to select data for the chart in columns
i m using the following for data range
_Chart newChart;
Range oRang;
oRang = newSheet.GetUsedRange()
newChart.SetSourceData(oRang,COleVariant((short)1));
pritha
|
|
|
|
|
prithaa wrote: i m using the following for data range
And is it working? Have you tried the sheet's GetRange() method?
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
thanks for your reply
i got it . the chart is working now
|
|
|
|
|
Hi,
I have a question there are tools that can identify backdoors in a code by analising binaries of application i.e by doing re-engineering. Can anybody tell me how this works and is there any tool available for this.
Thanks
SNI
SNI
|
|
|
|
|
Why would you need to do this, are you trying to break into a bank?
|
|
|
|
|
No...I just want to know that is there any tool which does binary (.exe in release mode)inspection so that backdoors can be identified. If yes, whether it is possible with release version of exe or only with debug. Also would like to know are they using assembly code analysis of binary to come to conclusion?
SNI
|
|
|
|
|
It's always possible. Sometimes it's a little harder than otherwise, but it can not be impossible (since that would mean that you can not see any code, and then how would the CPU know what to do with your program?)
|
|
|
|
|
Yea, right, onevote it..
It's true though.
IDA should do, btw.
|
|
|
|
|
SNI wrote: No...I just want to know that is there any tool which does binary (.exe in release mode)inspection so that backdoors can be identified.
I think Google is the place to look. However, I am not sure that any such tool could identify what you term "backdoors".
|
|
|
|
|
You may use the dumpbin tool [^], looking for 'backdoor' or 'please hack here' or 'virus place holder' sections.
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
[My articles]
|
|
|
|
|
|
|
Yes, or from the concise mirror
f@#?ingtools.pallini.com[^]
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
[My articles]
|
|
|
|
|
In general it would be hard to imagine how such a tool would work. The kind of thing you're asking for requires intelligence, which is something computers don't do well; they do dumb but fast. The normal way one would go about doing such a thing would to be use various tools, such as disassemblers, to take out some of the grunt work and help you visualise what's going on, but the user (you in this case) would do the "real" work.
Steve
|
|
|
|
|
Stephen Hewitt wrote: ... requires intelligence, which is something computers don't do well; they do dumb but fast.
A bit like some of the posters here ... 
|
|
|
|
|
Hi there,
I got trouble with calling externals. Maybe somebody can help me.
I used to call external programs (exe-files) with the system() call. Now I want to start an external program in a seperate shell (and as a separate process). Can anybody tell me how to do that?
Thanks a lot.
Souldrift
|
|
|
|
|
call a batch file. In it can you create an own environment.
Press F1 for help or google it.
Greetings from Germany
|
|
|
|
|
Use one of the exec()[^] calls. They create a separate process and also allow some communication with the parent.
|
|
|
|
|
Souldrift wrote: Can anybody tell me how to do that?
By reading here.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|