X| (shame)
Yuri Vital
Posts
-
APM -> EAP -> TAP What next? -
APM -> EAP -> TAP What next?May be you are talking about the 'async' keyword ? Like described in this document ? http://www.asp.net/vnext/whats-new#_Toc303354463[^]
-
CCC I Win!How many times you win ? :doh:
-
Prism (WPF and SilverLight)Never used it, but today i have bookmarked this : Baboon Framework : A Revolutionary WPF Framework that will Save You Time and Effort[^] It's seem more easy to use than prism.... :doh: I'm also curious about CPians anwsers ...
-
Is this safeWhy not using event instead of infinite loop ? :doh: ie:
fswWatcher_FileCreated(object sender, FileSystemEventArgs e)
{
MyInvoiceClass = newe MyInvoiceClass();
int invoiceID = MyInvoiceClass. PrintInvoice();// Your stuff here
}
-
Uhum, yeeeaahh - Right!Welcome in Middle Age... oh wait... Sorry ... Welcom in XXI century ! :)
-
Comment on "Life After Marriage"life after Mariage, form me it's just like before... and it's now since 6 years that i'm engaged. :) It's just most easy to buy a house, pays less tax, etc... In my opinion, mariage it's just a social thing that said "We have planed somme projects together [for a while]". But that is a very personal point of view, you have your own signification
-
Just in case...Have you tried to solve the problem yourself? Yes | Kind of :-D
-
Language rant (probably revisited)Sorry ! :^)
-
Language rant (probably revisited)Have you tried the "advanced search" link ? :doh: http://www.google.com/advanced_search?hl=en[^]
-
Cannot use a leading .. to exit above the top directory.You have to use the tilde character "~" to specify a path who start from the root of your web app. the code will be :
fupPicSummary.PostedFile.SaveAs(Server.MapPath(@"~/Pictures/summary_" + campaign.ID + ".jpg"));
-
CCC - slightly latematrimony ? :^)
-
TechDays 2010 @ Paris [modified]So, techdays is in few days now. I will be the only one CPian at Paris or you join me ? :^) If you have planed to come, i hope you are registred because the registration close in 9 days.
-
TechDays 2010 @ Paris [modified]You are right Pete. My post was poor in information. Since I have edited it, the post is "full featured" now. :) May be I will see you at Paris improving your french (and may be improving my english) ? tanks
-
TechDays 2010 @ Paris [modified]Les techdays 2010 à Paris peuvent être une occasion de réunir les francophones de CodeProject ? [And not french speakers are welcome also, of course !] :) Les techDays 2010 ont lieu le 08, 09, 10 février 2010 aux palais des congrès de Paris. Personnellement, j'y serais le 08 & 09 uniquement. On peut définir d'un point de rencontre pendant la pause de midi. [Microsoft techDays 2010, takes place from 08 to 10 february 2010 at Palais des congrès de Paris. Personaly, I go only the 08 and 09. We can define a meeting place for the lunch time] http://www.microsoft.com/france/mstechDays/[^]
modified on Monday, January 11, 2010 2:24 PM
-
Datagridview sorting problemUse DatagridView.Sort(Icomparer comparer) MDSN Documentation here[^] ;)
-
Food -
DataGrid date sorting [modified]Sorry :sigh:
-
Delegates and EventsYou have explained such better than me ! :-D
-
Delegates and EventsFor triging event in C# you have to do more like :
public static void Main() { Stock stock1 = new Stock(); //Add "listener" to you event stock1.OnAlert += new Stock.StockPiraceAlertHandler(stock1_OnAlert); // test your event by doing this stock1.Alert(); } //When the Alert event will be fired, this function will be called. static void stock1_OnAlert(object source, StockArgs a) { // Put your triger logic here }