is it possible for me to intercept the text messages that get sent to my cellphone if i connect to my cellphone via bluetooth or USB or some other connection to my computer?
i want to create a database with all of my received text messages and be able to control my cell phone through my computer by using it to send text messages
i have...
I havea windows service built in .net which must build some hl7, send it off over tcp/ip, receive an ack. Are there any free libraries for doing this. I could probably handle the tcp/ip part myself, but if I can find a good library that at least has all the parsing logic to just deliver me a class instance representing the message that...
I've got a central SQL server database. My solution has a WCF service responsible for synchronizing data with clients running SQL Server or SQL Server Express.
The service uses Microsoft Sync Framework and it works well, but the Sync Framework requires a direct connection to my client's server, and clients that are running SQL Server Ex...
I'm developing an in-house .NET application that will be run on a VM (with VMware), and want to know if there's a way to get notifications from VM system events (like suspending, resumed, etc.)
Anyone know of a convenient way to do that? The virtual machine has VMware Tools installed, does that provide a .NET API for hooking events?
E...
I want to create a class that could hold any of a number of same type of classes. For example lets says I have a base class like follows:
public class BaseClass
{
public string MyBaseString
{
get;
set;
}
}
And then I have a few derived classes like this:
public class DerivedClass : BaseClass
{
pub...
I'm just wondering what's the best way to implement a threaded conversation like the Facebook Wall where the comments are displayed under each post, and older comments are collapsed and expandable. My instinct is to use a nested datalist, but I think that might take a toll on performance.
...
I have a webservice that gives me the live stock quotes. I need to hit the webservice and update the page every 10 seconds or so.
what is the best way to implement this using .NET and AJAX?
I am looking for tips in the following lines:
How to implement the end ASPX page to refresh the content on a timeout event?
Should i just implem...
I have a WPF DataGrid bound to ObservableCollection.
Each item in my collection has Property which is a List.
In my row details pane, i would like to write out formatted textblocks for each item in this collection. The end result would be something equivalent to:
<TextBlock Style="{StaticResource NBBOTextBlockStyle}" HorizontalAlignme...
Hi,
I would like some help to create the following convertions:
A need to convert an 800*600 multidimensional array into a jagged array and then the same method in reverse (jagged array with the same data to the original multidimensional array)
Is this possible? and any help about it?
...
Hi, i'm new to C#.
I need my program to show different parts of the data contained in a txt file into different listboxs (which are on different tabs of a form) so that the user can see the particular block of data they are interested in.
the data contained in the txt file looks like this:
G30:39:03:31 JG06
G32:56:36:10 JG04
G31:54:69...
I have a .net-app that provides a mechanism to extend the app with plugins. Each plugin must implement a plugin-interface and must provide furthermore a constructor that receives one parameter (a resource context).
During the instantiation of the plugin-class I look via reflection, if the needed constructor exists and if yes, I instan...
I've got a NativeActivity which contains an Activity body. The purpose of this activity is to expose a resource for the duration of the child activity as a Variable. The problem I've encountered is it appears the Variable cannot be used outside the activity. I'll use StreamReader as an example resource.
ResourceActivity.cs:
[Designer(t...
What I need is raw camera data Stream of images\Frames in YUV format. I need to get tham using C#. And NOT USING DIRECT SHOW (if possible at all). I need a live stream not something like 1 frame per 5 seconds. If It will be mono compateble it would be grate but win only will be ok. I use .Net 3.5 but if needed I can swich to 4.
I heard...
I have custom headers in ListCtrl. While it's possible to resize their column width in windows mobile, it's hard to do because you have to hit the line separator exactly and also have to tap, hold and drag as opposed to tap and drag in excel.
Is there anything I can change programmatically to increase the tap area to adjust the column w...
We've got an interesting requirement that we'll want to support multiple languages at runtime since we're a service. If a user talks to us using Japanese or English, we'll want to respond in the appropriate language. FxCop likes us to store our strings in resource files, but I was curious to know if there was an integrated way to select...
I'd like to know if it's possible to have both Linq-to-SQL and Entity Framework running side-by-side. Our current configuration is Linq-to-SQL and we'd like to eventually move to EF. But there's just too much going on in the Linq-to-SQL side right now and we'd like to do it in phases.
so any chance we can just start writing new stuff i...
The tricky part is that each item has a ContextMenu that I still want to open when it is right-clicked (I just don't want it selecting it).
In fact, if it makes things any easier, I don't want any automatic selection at all, so if there's some way I can disable it entirely that would be just fine.
I'm thinking of just switching to an I...
Given that I have an instance of Fruit with some properties set, and I want to get those properties into a new Pear instance (because this particular Fruit happens to have the qualities of a pear), what's the best way to achieve this effect?
For example, what we can't do is simply cast a Fruit to a Pear, because not all Fruits are Pears...
I want inject a implementation of my Interface in the WCF but I want initialize my container of Dependency Injection in the Client of the WCF. So I can have a different implementation for each client of the my service.
Help me please.
...
how to export documentation from C# classes into HTML?
...