CAMPANAS POR LA GRIPE A

Posted on October 7th, 2009 by by kuragari

CAMPANAS POR LA GRIPE A from ALISH on Vimeo.

Via Tendencias21

Tags: , , , , ,

0,0 en cultura

Posted on May 13th, 2009 by by kuragari

Interupt by JRMora

El Bruto - Juego de Navegador

Posted on April 24th, 2009 by by kuragari

El Bruto

Hoy me han metido en un juego por por navegador que me ha enganchado al instante! Se trata de un juego llamado EL BRUTO…sí sí, lo se, el nombre no es muy glamuroso pero de verdad que me ha enganchado!

El juego consiste en crear un personaje, un bruto, e irlo haciendo enfrentarse contra otros brutos de otra gente para que coga experiencia y así aumentar de nivel y poder adquirir nuevas armas y habilidades nuevas. Hasta donde yo he llegado (es mi primer día), tanto las armas como las habilidades se adquieren de manera aleatoria, pero no estoy muy seguro de ello. A medida que juegue más iré editando para que estéis enterados ;-) .

Los enfrentamientos no son controlados, pero la animación que aparece (varía en cada combate, según tus habilidades y las del rival) son muy graciosas y muy divertidas!

El único contra que tiene es que sólo puedes hacer 3 combates diarios, aunque también hay torneos en los cuales también puedes luchar (independientemente de los combates que te resten ese día).

Pues nada más, si os ha picado la curiosidad de jugar y probarlo, aquí tenéis el link a la página. Sólo tenéis que escoger un nick (RECOMENDACIÓN: escoged un nick MUY raro, porque he probado muchos y todos estaban cogidos), diseñar vuestro bruto y a luchar!

Link: El Bruto

Interupt by Tabernasueca

Si eres legal eres legal; y si eres tonto eres tonto

Posted on April 14th, 2009 by by kuragari

Crystal Report: Setting values to subreport parameters using C#

Posted on March 27th, 2009 by by kuragari

Report Part

We create a report and then we press to the New Subreport button ( or ). Then, on the new window, we write the name of the subreport and we click on Ok button.

After calling the subrepot we click on Report Wizard button. We follow all the steps (or press on the Finish butten when you can) and we place the subreport on the nursemaid report.

Done that, we take a double click on the subreport to get in it. Being in, we create the parameters we want (as we explain in this post). In the example, only one:

Created all the parameters, we close the subreport and save the nursemaid report. We’ve finished this step.

Code Part

In this part, we’re going to need these assemblies in our project:

using CrystalDecisions.Shared;
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Web;

To proceed we are going to create a crystal report “in code”:

string pathReport = “../reports/reportExample.rp”;
ReportDocument rptDoc = new ReportDocument();
rptDoc.Load(pathReport);

After that we should “connect” the report to the data base:

ConnectionInfo cInfo = new ConnectionInfo();
cInfo.UserID = "user";
cInfo.Password = "passwor";
cInfo.ServerName = "datasource";
ConectaReport(cInfo, rptDoc);

And now, we assign the subparameter name and value:

rptDoc.SetParameterValue("paramOne", "this is the subparam value", "subReport");

That’s all!