Suppress message box for infragistics trial version - c#

I installed infragistics trial version. While each time running the application through Visual Studio 2008, I'm getting the message box like "this is a trial version".
I just want to suppress this message. How can i do this?

You can buy Infragistics.
This error box is just to warn you that you are running on a trial and that your license (trial license) will expire.

Your probably in the wrong place if your asking how to bypass a system put in place to get people to buy software.
As Snake said, if you want to use the product without holdups, buy it, otherwise be greatful you are able to run a trial mode :)

I understand. I found the constant interruption annoying, like a PHB interrupting every 2 minutes for a status report. Did Infragistics think I was so stupid that I'd forgotten their stuff was running in trial mode when I had already dismissed the popup three times in this minute? Has anyone at Infragistics ever trialed their package as someone might who is considering if it can be included in a current project -- Change one property, run, change another, run, change another, run, ... ?? Apparently not. The process is - Change one property, run, DismissDlgBox, change another, run, DismissDlgBox, change another, run, DismissDlgBox ...
Long before finishing figuring out whether Infragistics could help in my project I had enough of a company I perceived as assuming I'm an idiot and thought nothing of wasting my time. I deinstalled and moved on. For me, the popup on every run was part of their anti-sales strategy.

Related

C# Project compiles quickly, but then VS becomes unresponsive

I've got a problem that's driving me nuts. We have a C# project that has a few types of custom controls, but has several hundred instances of those controls (don't ask). Every time I do anything that requires compile I get the following behavior:
The project appears to build very quickly (like 3 or 4 seconds).
Then VS becomes totally unresponsive for quite a while (maybe 15 seconds to a minute)
The status at the bottom of the window shows "Build Succeeded" during the unresponsive period.
Clicking just about anything will cause a spinner to appear.
Eventually the spinner will go away and the status will show "Ready" at the bottom, at which point I'm back in business.
I'm almost certain that this is a self-inflicted problem, but for the life of me I can't figure out what is going on during the "spinning" period. Is there any way to see what's going on during the build process so that I can determine precisely how I'm shooting myself in the foot?
UPDATE: I tried a strange experiment. I created a new application using the exact same user controls and then just plopped down about 2,000 of them on my form. No problem at all, this application works fine. How incredibly odd...
Close the form design view before compiling the project.
If that did not work (which worked for me but not for you as you've mentioned in your comment) then I think it's something about your custom control like trying to connect to a server and validating it's licensing. Check your internet traffic with something like Wireshark. I hope that helps.

Having two workflows in WF4.0 one being part of the other

I am having a small c# 4.0 project (VS2010) with workflows.
First I had one workflow only and that worked perfect.
Now I inserted a 2nd one (and later need more).
I now got Workflow_One with many activities, and Workflow_Two with other activities.
Workflow_Two is inserted into Workflow_One as an activity.
My problem is 'I don't know how to finish or end Workflow_Two which is a part or activity of Workflow_One.
I tried to insert W_One as an activity into W_Two itself, where W_Two should end, but then VS2010 crashed and I could not open the Flowchart editor anymore...
How do I end W_Two with the flowchart editor or in the code, to continue to the parent workflow W_One again?
By the way, in my opinion it is a bug when the VS is crashing and the flowchart editor cannot be opened anymore when you insert two workflows in one each other... :-)
Please give me a hint how to tell W_Two it is finished. Thanks a lot!
Firlefanz
Thanks, I found out when I get to an activity, which has no "follower", it changes automatically back to the parent workflow. I had some error which went from there back to the child workflow at once.
Best regards,
Firlefanz

XNA does not respond to changes in code

Most simply explained, when I edit, delete, or add code into my XNA project, it does not respond. This is to say that I can comment out the entire Update method of my game and it will run as usual. This also means that the game is stuck at a certain time in development, and can not be edited. I've tried reopening my project and it does not help. I've had this problem before and it is incredibly infuriating and frustrating.
http://puu.sh/1kD6P
This is an image where I have commented out the Update method and would normally never be able to run with 66 errors. But it does run.
In the past I have had to create new projects and drag all of my art assets over and copies of the code. That is the only way I know to fix it, but this has happened with every one of my projects (even on a different computer before).
Anybody know what's going on?
Have you tried rebuilding it from the build menu, not just clicking the debug button?

Can I setup VS10 to notify me when a build was unexpected interrupted?

I work on a project that takes 2-3 minuts to compile. Usually when I add some code I run it for testing and then tab to something else because I not going to watch it being compiled for 2 minuts everytime.
Sometimes I get a compile error.
I would like to get notified when that happen (the build was interrupted and no website was opened) to safe time.
Is it possible to tell VS10 that it can play a little "beep"-sound or focus VS10 window or something, so I can carry on right away?
I'm guessing there ain't and maybe I just have to get used to not have the other window in fullscreen.
It is already provided. Control Panel + Sound, Sounds tab. Scroll down in the Program events list and locate the Microsoft Visual Studio group. Assign sounds to the "Build Failed" and "Build Succeeded" events.

Completely remove "error list" from visual studio

I want to completely remove "error list" from visual studio 2008, not disable it i want it gone. It annoys me to no end popping up endlessly, i guess i must be "doing it wrong" but w/e i just want to use VS without being alerted every other keystroke about some warning.
I've tried editing many different fields in the options (tools -> options) it has only slightly decreased the frequency of the error list popping up. I have also deselected errors, warnings, and Messages. and it pops up with nothing to display. unpinning it doesn't help either.
also upgrading to VS 2010 is not an option at this point.
Im looking for a solution something like the following: remove a dll or config file responsible for this
Also I still want the inline validation (the little squiggly marks, etc), but
the error list window annoys me.
I think this is probably exactly what you're wanting:
http://blogs.msdn.com/b/zainnab/archive/2010/05/16/hide-or-show-error-list-when-the-build-finishes-with-errors-vstiptool0022.aspx
You can change this behavior by going to Tools -> Options -> Projects
and Solutions -> General and deselecting the "Always show Error List
if build finishes with errors".
I'm guessing this will work with ASP.Net as well, since that's building on the fly.
I am using Visual Studio 2017, and I also have to cope with the useless, impossible-to-disable, annoyingly-in-your-face, and outright disturbing "Error List" window.
So, here is what I did:
Undock the "Error List" window to make it free-floating.
Resize it to the smallest size possible.
Move it out to some remote area of the screen where it is not so annoying.
And voila, problem solved ! (*1)
*1 Well, problem mostly solved. It will be completely solved when I abandon this dinosaur of an IDE.
My 'Error List' was constantly displaying also (VS2012). I also hate it.
I turned it off years ago, but today it just started appearing.
It was being caused a unreadable packages.config file. For some reason that reports it's fail state through the yukky 'Error List'.
Fixing the packages.config file stopped the 'Error List' from appearing.
for VS2017, select the "Build only" value from the drop down list in Error tab. Refer to the image below:
Hope this helps!
On Error tab, you have Errors / Warnings / Info buttons. Click on Errors button (de-press).
hope it helps.
I suggest turning off inline validation.
Yes, I know that you still want it. But, seriously, how important is it? It's trying to validate code that is half-written. How valuable can that be?
First of all, as-you're-typing code validation is distracting. It makes it harder to focus on the problem you are trying to solve. For example, writing a function with a non-void return will display the "not all code paths return a value" error continually until you get to the end of the function. In the meantime, the editor is telling you that there is a problem. I am sure that people learn to ignore these things over time (I have never kept the feature on for more than a few minutes after a new VS installation, so I don't know), but if you are actively ignoring something, then what good is it?
Second of all, any good that the validation would be capable of is unnecessary, because those errors will be brought to your attention at compile-time anyway. Having an uninitialized variable pointed out to you while you are thinking through the algorithm does not improve the quality of the code at all verses having it pointed out when you try to run the program. The variable is still going to be initialized either way. And there is an extremely high likelyhood that you are going to fix the problem before trying to run the code anyway.
So I just don't see the point of it. I suggest turning it off, and then your problem goes away.
UPDATE
As pointed out by #Charlie Kilian, there is a flaw in VS in which .aspx files are not validated at all, unless the "Show live semantic errors" option is enabled for C#, rather than validating those pages at compile-time as would be expected.
Therefore, editing aspx files will require turning this option back on for validation.
I guess I'll be going back-and-forth with it from now on. I hope they fix this in future versions of VS.
I still think that doing a semantic analysis and error-reporting on code that is actively being edited is a fool's errand. (Of course, I have also been known to write entire programs in notepad, just to see if I could get it to compile and run correctly the very first time without the crutch of Intellisense. It feels pretty awesome when it works.)
Selected answer is incorrect because unchecking "Always show Error List if build finishes with errors" does nothing to stop the dreaded Error List window from popping up on other errors, even if you change it to show only Build errors.
11 years later in Visual Studio 2022 it is still impossible to disable Error List window.
The only correct answer to the question "Completely remove error list from visual studio" is to uninstall Visual Studio itself which, thankfully, also removes Error List window.
Either that, or we should all get used to it, because Developer Gods from Microsoft want everyone to work in absolutely the same way as they do. Every workflow that differs from their own is wrong, and every thought that doesn't align with their grand vision is blasphemy.
It is One Microsoft Way or the highway.

Categories