I want to find, on codeproject, all the: 1. favorite articles from C# every month 2. best rated articles from C# Anyone knows how to find that? Thanks, - Saikat
Saikat Sen
Posts
-
Most favorite articles -
(1) Favorite articles? (2) Best rated articlesI want to find, on codeproject, all the: 1. favorite articles from C# every month 2. best rated articles from C# How do I find that? Thanks, - Saikat
-
Updating a submitted articleIs it possible to update a submitted article? How would I do that? I remember seeing an update article link after submitting through the Article Submission Wizard and before my articles were reviewed, but do not see the link after review. Thanks, - Saikat
-
Client-ServerIf two clients are updating the same record, then either: 1/ the order in which they update does not matter, or 2/ the order in which they update does matter - to the system. The first case is trivial. In the second case, the clients will have to communicate somehow between them to schedule who goes first and how the first guy tells the second when to go. That could be through any standard IPC mechanism. A record, after being fetched, is not locked for any purpose for any duration; even if you fetched it for the purpose of updating it.
-
Concurrency options: Optimistic/Pessimistic/Last-WinHow about an airlines telling you that you can get a seat NOW, but then when you actually try it a second later they say someone's already taken it?
-
open directory and list files1/ Create a checklistbox to display checkboxes + strings 2/ OpenFileDialog to open a dialog 3/ Directory.GetFiles to list all files of a directory 4/ File.Copy to copy files.
-
Multy form questionThere is more than one way to do this. 1/ You can have a singleton object in your system that will hold data (for example ints) through which these forms will communicate. 2/ If you have a singleton, one form could fire an event when it wishes to communicate data, the singleton have an event handler, and then invoking a method on form2 to set the variable.