I have downloaded a few forum packages form Codeplex.net, and looked at YetAnotherForum, but they don't seem to use the ASP.Net membership provider. I am using MySQL for a database and would like to have a forum using the same user base without too much extra work, since I don't know if the forum will be popular.
Are there any forum sol...
I am trying to change the default font in a DevExpress utility within a C# program. Right now I'm using: DevExpress.Utils.AppearanceObject.DefaultFont = font;
However, this code is only changing the menu font on the form and it should change all of it. I've also tried enumerating through the controls on the form and changing the text as ...
Is there a way in Winforms to change the shape of a ToolStrip item. If it were a panel, I could set the Region to my GraphicPath object. But for ToolStripItem, I don't know how to do this, since it isn't derived from Control.
...
We're trying to implement the "LIKE" operator in Entity Framework for our entities with string fields, but it doesn't appear to be supported. Has anyone else tried to do something like this?
This blog post summarizes the issue we're having. We could use contains, but that only matches the most trivial case for LIKE. Combining contain...
I'm trying to force an always maximize setting.
Thanks
...
I have setup a WPF application that is single instance using a Mutex, this allows for the application to run within each user account if you are using user switching. The application sets up a WCF named pipe so that I can communicate to the single instance from another process (i.e. when the second process runs before it terminates due ...
What is the most efficient way to monitor a queue.
The follwoing piece of code is the biggest hog of resources :
/// <summary>
/// Starts the service.
/// </summary>
private void StartService()
{
while (true)
{
//the check on count is not thread safe
while (_MessageQueue.Count > 0)
{
Common.I...
I have a DGV bound to a list of objects. This works fine except that one of the object properties is boolean and therefore displays as a checkbox but I would prefer a simple yes/no text field instead. I've considered adding an additional column and populating with the appropriate string based on the boolean value but this seems a little ...
I have the following web method:
<WebMethod()> _
<ScriptMethod(ResponseFormat:=ResponseFormat.Json, UseHttpGet:=True, XmlSerializeString:=True)> _
Public Function GetDictionary() As Dictionary(Of String, String)
Dim d As New Dictionary(Of String, String)
d.Add("key1", "value1")
d.Add("key2", "value2"...
Hello everyone,
For the popular video player, like sl2videoplayer, http://www.codeplex.com/sl2videoplayer, my question is how is the thumbnail image of Siverlight video is displayed before we click play (in the scenario of non-autoplay).
thanks in advance,
George
...
Hello Fellow Developers:
I have an issue that I am sure someone out here have solved easier than what I am thinking to do. I have a list that have name and number. Name is required and could be duplicate and number could only be one, but not required.
|name|number|
|A |2 |
|A | |
|B | |
|C | |
|C | |...
I'm on a team that manages two projects. The Plant project is a library project that is consumed by multiple groups, including my own. The Admin Client Project (which we are building for our client) consumes the Plant project and has it's own custom components.
To integrate, we have a dependency folder in the AdminClient.Application p...
I'm building a rather specialized screen saver application for some kiosks running Windows XP. Users tend to leave the kiosks without returning the browser to the homepage, so the screen saver does the following:
Launches via the standard screen saver mechanism
Notifies the user that there has been no recent activity, and that the brow...
seems simple enough, I want to take a generics list of integers and display them on a datagridview. google comes back with plenty of results on displaying custom classes in a datagridview, but not a list of int. when I just submit the list as the datasource, nothing shows.
I tried using
dim _CheckIns as new list(of integer)
_checkins....
I have a reference application that I use to work through DDD issues, and my current focus is on persistence. An alternate title for this post could have been DDD / TDD persistence tools and methods, but that is a (very) broad topic and I do have a specific question on SQL Server.
I'm going to outline my current tool set in this paragra...
Is it possible to implement smooth scroll in a WPF listview like how it works in Firefox?
When the Firefox browser contained all listview items and you hold down the middle mouse button (but not release), and drag it, it should smoothly scroll the listview items. When you release it should stop.
It looks like this is not possible in win...
I'm used to sending files via SOAP to / from C# based web services and we've always used the "byte[]" type for the contents of the file.
However, I've now got a java web service that wants a byteArrayOutputStream and I have no idea how to send it one from my C# client.
The WSDL shows it as
<xs:element name="baos" type="tns:byteArra...
Is Interlocked.Increment(ref x) faster or slower than x++ for ints and longs on various platforms?
...
I'd like to create a list of an anonymous type, for example:
Dim dsResource = New With {.Name = dsResourcesEnd(index).Last_Name & ", " & dsResourcesEnd(index).First_Name _
, .StartDate = dsResourcesStart(index).Day _
, .EndDate = dsResourcesEnd(index).Day}
I have created that ano...
In a WCF service, what happens if I add methods as operation contracts after clients (that consume the service) have completed their implementations? Will the existing clients have to modify their implementations even though they do not use the new operation contract methods?
EDIT: Will the clients have to update their proxy even though...