Files accessed by a process, c# , deviare - c#

I need to find out the files accessed by a given (hook) process. what am i suppose to achieve that using c# and deviare?
Can anyone enlighten me?
Thanks in advance :)

You can use Deviare examples to hook without writing code. There are 2 applications that let you hook any process and watch their API calls in a console. The source code of those applications is available and easy to follow. You have examples in C# and C++.

Related

build/modify/test CONTROL-M jobs via C#.NET

I want to operate on CONTROL-M jobs via c#.net.
I couldn't find anything related in the documents.
I understood its possible to use rest api but more dev-ops related.
I saw some commands of ctm, is it related?(CTM language code?)
Any feedback?
thanks,
YD

control a wpf from matlab by using a c# dll

i would like to know weather it is possible to control some wpf application written in c# by using a c# dll out of matlab.
what i need is the possibility to start the MainWindow and i have to be able
to get some values into my controller.
What i found so far was things working from c# that use matlab, but the other way round seems not to be that much populatet, as i found nothing i could really use.
I allready tried to import a .net Library, but i dont seem to be able to open a external class from my dll.
So if you could help me on this it would be great.
Regards,
justSomeone
Ok, i did just find out, that i can also import my .exe file into Matlab instead of only dlls .
I am using the function NET.addAssebly('Path.exe') to do this.
Path.exe is just a symbol that it is directed to the place of the .exe file.
I achieved to be able to use my methods as i wanted i do have my instance of the class. So i am happy now. :D
But if you have other solutions which are more handy, dont hesitate to post them. There might still be interesting things to discover :)
Regards,
justSomeone

MapQuest via C#

I am trying to access to MapQuest via a Winforms C# application.
I can't find any help on how I can make a WebRequest (via JSON, XML or Text). How do I embed my Application Key in that request? Or do I have to perform a login-request or what?
Has anyone perhaps used this API in C#, C++ or Java? I could use some start-help as I can't find any infos on how to do this.
There was a C# .Net API but it is deprecated now and they recommend using WebRequests.
I hope someone can help me! If you need more information just ask. Thanks!

integrate LightScribe functionality with c# application

hope you guys could share some light with me..are you guys aware of lightscribe? i have the sdk document and am tasked to integrate LightScribe functionality with c#.can anyone of you guide me or mayb have some examples to show me?
I haven't used the lightscribe api myself. But it appears to be a C++ API, what you will need to do is write a C# wrapper around it (using p/invoke)
A quick google search also turns up this wrapper library that someone has already done, have a look at the source in that and you will see the techniques used.

Calling an XLL in C#

I have a XLL Addin (Test.xll). I wish to use this in my C# (VS2008/.Net 3.5) application. If anybody can guide me how to use this in my C# application.
If anybody could please guide me how to use this XLL in the C# application, it will be great.
Any help is appreciated.
Regards,
Tushar
You'll have to use P/Invoke via static external methods which use the DLL's exports. However, depending on the dependencies in the XLL (especially if it uses some Excel functionality) you may not be able to get this to work properly.

Categories