0
votes
1answer
14 views
Two programmers working on a Visual C# program
I and another programmer am working on the same program in Visual C#. I let him work on it, and then he uploads it and then I work on it, and then I upload it so that he can work …
1
vote
3answers
26 views
string.Format, regex + curly braces (C#)
Hi all.
How do I use string.Format to enter a value into a regular expression, where that regular expression has curly-braces in it already to define repetition limitation? (My mi …
0
votes
2answers
17 views
How can make all my user control dependency values load before they control accesses their values?
When I call this custom control, I have to put the attribute values in the correct order since the third dependency property (ItemTypeIdCode) accesses the values of the first two ( …
0
votes
0answers
9 views
Communicating with a Flash Lite app and a C# WinForms app?
I'm developing a Flash Lite app that can communicate to a C# app, via Bluetooth.
I'm using 32feet.NET for the C# side and its working fine. It uses RFCOMM-SPP which is a sort of b …
1
vote
3answers
27 views
how to use C# debugger (or anything else) to examine what happens during a GUI event in an open source app?
imagine that you are given a big nice app in C#, with full source code. So you want to figure out what methods are executed when you do a user event, e.g. press a button or press a …
1
vote
4answers
24 views
How to extract the contents of square brackets in a string of text in c# using Regex
Hi, if i have a string of text like below, how can i collect the contents of the brackets in a collection in c# even if it goes over line breaks?
eg...
string s = "test [4df] tes …
0
votes
4answers
26 views
How To Setup A Sms Sending Website in .net ?
i have a project on newsletter management system. in asp.net.. i am student and i want to provide such a facility in my project for who is become a member of my website and join a …
0
votes
0answers
3 views
Subsonic 3.x: ArgumentException while querying (LINQ)
Even a simple query like
EmmaDatabase.EmmaDB ec = DatabaseProvider.GetEmmaDatabase();
var changes = (from o in ec.dbCachedChanges
select o);
Throws me …
0
votes
5answers
25 views
Not able to capture Enter key in text box C#
When the user is entering a number into a text box, I would like them to be able to press Enter and simulate pressing an Update button elsewhere on the form. I have looked this up …
3
votes
4answers
82 views
Recommendations for naming C# classes/methods intended to replace existing APIs.
Long explanation aside, I have a situation where I need to basically re-implement a .NET framework class in order to extend the behavior in a manner that is not compatible with an …
0
votes
3answers
79 views
Is this a proper usage of the struct element in C#? Kind of confused.
I'm making a class that will read information from resource files (doesn't matter the type of resource file, just for clarification) and pass
the information on a Form for easy man …
1
vote
1answer
24 views
How to reconnect to a lost connection when it is lost using Linq to SQl automagically
i don't want to encapsulate every call in a try catch block
is there an event i can subscribe to, for when a connection is lost or timesout so that i can reconnect..
or some way …
0
votes
4answers
48 views
How to make article spinner regex?
Let's say I have teh following:
{{Hello|Hi|Hey} {world|earth} |
{Goodbye|farewell} {noobs|n3wbz|n00blets}}
And I want that to turn into any of the following:
Hello world
…
0
votes
0answers
38 views
Validation before submit is hit
i have two radio buttons. One a 'yes' one a 'no'. When yes is hit i show a whole different row of textboxes and other input controls. Also, when yes it checked i enable the validat …
0
votes
2answers
29 views
LINQ & The Dynamic Query or How to get a “Unknown” number of columns?
I have a table with 40 (int) columns and I need to get certain columns depending on user input, sometimes it might be 1 and some other times it might be all 40, how can I do this u …
