Thursday, March 10, 2011

Gallery Furniture Half Off

HERE WE GO!!


Democratic Law opened up again in this 2011, and does so by offering a direct channel of communication between students and your representatives in the Faculty Council ', and COMMITTEE ON EDUCATION PRACTICES COMMISSION STUDENTS, as well as the Academic Senate and administrative staff COUNCIL .

DEPOSIT PLAN STUDY ......... REGISTRATION EXAMS ..... CHANGING COURSE INTEGRATION CREDIT ...... ... .... THE OFFICE CLOSES AT 11!!

IF YOU'RE going crazy GOES BEHIND THE BUREAUCRACY UNIVERSITY REPRESENTATION TO OUR DOOR!

We are available every Wednesday from 12 to 14, in Falcon Hall (Palazzo Malvezzi).

increase the use of our electronic channels: contact us on our Facebook page ("Law-Democratic Left University")
or our e-mail (giurisprudenza.democratica @ gmail.com), visit our blog
(giurisprudenzademocratica.blogspot . com),
and continued to write and lecture notes (completely free) to: appunti.gd @ gmail.com.

There are also Tuesday through Thursday from 11 to 13 in our Banquet Belmeloro away, and every Tuesday at 19 at University Circle Left, via delle Belle Arti 20 / C, for our weekly meetings.

update our representatives:

TEST ASSESSMENT: A STEP FORWARD
In the organs of power was finally made a significant step forward for the enhancement of student evaluation forms.

From this semester, first, will operate the automatic publication of the same, except the explicit rejection of the professor. Cards (currently very few, because the rule is still in place which provides for the publication of test only at the initiative of the teacher) are available at the faculty ( www.giuri.unibo.it > Teachers> Reviews Students).

addition, you were scheduled within a month, the Education Committee, the re-discussion of the criteria Allocation of funds for the
tutoring, which the method of donation to be bound by the views expressed by the students through the evaluation sheets.


soon with the latest news and initiatives of the first semester!

Wednesday, January 26, 2011

Play Lego Poptropica Games

Visual Studio Tips and Tricks Course

working with Visual Studio, you may come across an error like this:

Failed to update Service Reference XX. Error: The components required to listed web references are not installed on this computer. Please re-install Visual Studio.

how to fix this problem without having to reinstall everything (lost half a day)?

is to help the old Command Prompt (DOS).
The first thing to do is to find the executable for Visual Studio (devenv.exe) and run it from the command line with /? ( devenv /? ). By doing so you receive outputs a list of parameters that can be used.

  1. Build : Builds the solution or project with the specified solution configuration. For example "Debug". If multiple platforms are possible, the configuration name must be enclosed in quotes and contain platform name. For example: "Debug
  2. LCID
  3. : Sets the default language in the IDE for the UI.
  4. Log
  5. : Logs IDE activity to the specified file for troubleshooting.
  6. NoVSIP
  7. : Disables the VSIP developer's license key for VSIP testing.
  8. Out
  9. : Appends the build log to a specified file.
  10. Project
  11. : Specifies the project to build, clean, or deploy. Must be used with Build ,
  12. Rebuild
  13. , Clean , or
  14. Deploy
  15. .
  16. ProjectConfig
  17. : Overrides the project configuration specified in the solution configuration. For example "Debug". If multiple platforms are possible, the configuration name must be enclosed in quotes and contain platform name. For example: "Debug solution then closes the IDE. /
  18. SafeMode:
  19. Launches the IDE in safe mode loading minimal windows. / Upgrade: Upgrades the project or the solution and all projects in it. A backup of These files will be created as appropriate. parameters used to do in order to restore the optimal configuration are just resetsettings or ResetSkipPkgs
  20. . This allows you to reset the settings del'IDE. avoiding a repetition of the error.
  21. In conclusion, just run from the command line
  22. devenv /
  23. ResetSkipPkgs
  24. or
  25. devenv / ResetSkipPkgs
  26. and the problem is solved.