I need to build a C# based PDF file viewer (browser) that should execute itself from a USB thumb drive.
I am not a C# developer but getting a team together, so the questions are -
1) Are...
Process1 reads data to memory and places pointers on a list and remains open
Process 2 needs to access the data from process 1.
Is it possible to save the pointers only of data in a proc...
Hello, dear friend!
I'm using Borland C++.
I have a simple form to categorize my MP3s, with a TTreeView in it.
When I drag a file from *outside* my application into my TTreeView, the...
I need to create a MFC dialog application, the dialog used a PNG for background, the borders of the image have shadows, so I need to blend it with the background screen. So far, I've successfu...
Guys,
say I have a collection of servers, and on 1 server theres a process that sends my required data to virtual memory, how do I read from the virtual memory process from another server o...
Using reflection, how can I get the instances of objects that are passed into a function and then pass those instances to another function?
Hello I need to be able to accept a file name at runtime using cin or an equivalent reader at runtime. Something like when executed:
my_prog <my_file
Could you show me the code snippet to ...
Hi Experts,
I am working on a logging tool which receives messages from a server through socket. The socket uses SSL. Number of times, "under heavy traffic" my server crashes. The traceba...
I'm would like to find a way to get the parameters of a function or method through reflection so I can pass those objects to a function that will go through each of the properties and log them...
I have a class called County and extended it as follows:
public class CountyEntity: County
{
}
I have a function called GetCounty that returns a county object as follow...