Click here to Skip to main content
15,900,378 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to create Sublime Text like Command Palette in DotNet C# Desktop Application Pin
BillWoodruff19-Nov-13 19:01
professionalBillWoodruff19-Nov-13 19:01 
GeneralRe: How to create Sublime Text like Command Palette in DotNet C# Desktop Application Pin
Sanket S Sonavane19-Nov-13 20:36
Sanket S Sonavane19-Nov-13 20:36 
QuestionData is not stored to data source path mentioned in solution explorer Pin
emma.sun.sts19-Nov-13 14:24
emma.sun.sts19-Nov-13 14:24 
AnswerRe: Data is not stored to data source path mentioned in solution explorer Pin
Richard Andrew x6419-Nov-13 17:54
professionalRichard Andrew x6419-Nov-13 17:54 
GeneralRe: Data is not stored to data source path mentioned in solution explorer Pin
emma.sun.sts19-Nov-13 18:28
emma.sun.sts19-Nov-13 18:28 
GeneralRe: Data is not stored to data source path mentioned in solution explorer Pin
Richard Andrew x6419-Nov-13 19:41
professionalRichard Andrew x6419-Nov-13 19:41 
GeneralRe: Data is not stored to data source path mentioned in solution explorer Pin
emma.sun.sts19-Nov-13 20:18
emma.sun.sts19-Nov-13 20:18 
RantProblem Solution to working code that stops working Pin
RBKpro19-Nov-13 3:39
RBKpro19-Nov-13 3:39 
I am really fed up with .NET and C# and really wish I stayed with Java or anything else that isn't so contrary and idiotic WTF | :WTF: . I recently, had a problem with an online report written with Developer Express Reporting tools within a .NET/C# intranet web-site. The report being a summary of the entire application utilized sub-reports to sub-reports to sub-reports, when one of the bottom-level sub-reports failed to be populated when it was working fine and there were no updates to any of the associated code. I spent days trying to figure out why it stopped working and to find a fix. In the end a friend familiar with this type of problem had me rename the method that was no longer firing then create a new method with exact same signature as the original method that wasn't working. When tested, the new empty method would fire just fine where the old method had quit working no matter what was done with it. Next I merely copied the original code from the old method to the new one, ran it and the report was fixed WTF | :WTF: . My next step before publishing was to delete the original method.

I'd complain to DevEx, but I am sure they will insist it is a Visual Studio (2012 Ultimate) problem and Microsoft will say it is a DevEx problem, so I am posting my complaint here. The only kind of explanation I have is VS sometimes has a problem with recognizing method signatures as being valid and therefore will not execute them???

The other problem I have with this is at one sub-report level the method signature created is different than at the lower level. In this case the method that would not run was called:
C#
private void xrInvAllegations_BeforePrint(object sender, PrintEventArgs e)
        { . . .

However, the equivalent method signature at the higher (Investigations sub-report control's level uses the following:
C#
private void xrSacwisInvestigations_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
        { . . .

I do NOT understand why the same method call would use two different sets of parameter signatures, which overly confuses the issue, and why one would just decide, I am not going to work anymore until you copy me into a new block with the exaxt same method signature!

I can't begin to express how totally frustrating this is and I definately hate to publish a fix on such a flimsy excuse for what was wrong. Can anyone explain a better reason why rewriting the exact same code should be used as fix for method that stops firing? us

GeneralRe: Problem Solution to working code that stops working Pin
Kornfeld Eliyahu Peter19-Nov-13 3:52
professionalKornfeld Eliyahu Peter19-Nov-13 3:52 
GeneralRe: Problem Solution to working code that stops working Pin
Dave Kreskowiak19-Nov-13 4:19
mveDave Kreskowiak19-Nov-13 4:19 
GeneralRe: Problem Solution to working code that stops working Pin
_Maxxx_19-Nov-13 11:52
professional_Maxxx_19-Nov-13 11:52 
GeneralRe: Problem Solution to working code that stops working Pin
Mycroft Holmes19-Nov-13 13:46
professionalMycroft Holmes19-Nov-13 13:46 
GeneralRe: Problem Solution to working code that stops working Pin
Matty2219-Nov-13 15:20
Matty2219-Nov-13 15:20 
JokeRe: Problem Solution to working code that stops working Pin
Richard Andrew x6419-Nov-13 17:42
professionalRichard Andrew x6419-Nov-13 17:42 
GeneralRe: Problem Solution to working code that stops working Pin
Matty2223-Nov-13 5:03
Matty2223-Nov-13 5:03 
GeneralRe: Problem Solution to working code that stops working Pin
RBKpro22-Nov-13 11:04
RBKpro22-Nov-13 11:04 
GeneralRe: Problem Solution to working code that stops working Pin
Matty2223-Nov-13 4:57
Matty2223-Nov-13 4:57 
Questionwindows app's Pin
Member 1041118019-Nov-13 0:04
Member 1041118019-Nov-13 0:04 
AnswerRe: windows app's Pin
Eddy Vluggen19-Nov-13 0:33
professionalEddy Vluggen19-Nov-13 0:33 
AnswerRe: windows app's Pin
Pete O'Hanlon19-Nov-13 0:35
mvePete O'Hanlon19-Nov-13 0:35 
AnswerRe: windows app's Pin
Chris Quinn19-Nov-13 0:38
Chris Quinn19-Nov-13 0:38 
AnswerRe: windows app's Pin
BillWoodruff19-Nov-13 6:32
professionalBillWoodruff19-Nov-13 6:32 
AnswerRe: windows app's Pin
Abhinav S19-Nov-13 16:30
Abhinav S19-Nov-13 16:30 
QuestionAI Pin
Member 1036314518-Nov-13 23:40
Member 1036314518-Nov-13 23:40 
QuestionRe: AI Pin
Richard MacCutchan19-Nov-13 0:01
mveRichard MacCutchan19-Nov-13 0:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.