All Questions

1
answer

Is Visual Studio 2013 compatible with SQL Server 2014?

I connected the SQL table with Visual Studio, but at the time of wringing the table there was a message saying that SQL Server was not compatible. If not, will I have to download another Visual Studio or database?     
asked on 23.07.2015 / 20:08
2
answers

SQL query with array type in PostgreSQL

How to filter this field of type array in PostgreSQL? I have a X table with a Y field of type character varying[] with two records: {'meeting','lunch','training','presentation'} {'breakfast','consulting', 'meeting'}...
asked on 12.08.2015 / 16:07
1
answer

How should I communicate with the DB? Technology Recommendations

I'm having an Android project, where I'm trying to do everything using free platform. I need the field devices to communicate with the database, and I heard something about JSON and Web Service. So I would like you to recommend me, "SHOW T...
asked on 09.06.2014 / 17:51
1
answer

Convert objects: from literal syntax to prototype types

Given a type defined in javascript, for example: var Point = (function () { function Point(x, y) { this.x = x; this.y = y; } Point.prototype.dist = function () { return Math.sqrt(this.x * this.y + this.x * t...
asked on 03.05.2014 / 17:18
1
answer

How to smooth the transition between pages on windows phone?

How do I improve the page from page transition in Windows Phone? Because whenever you change pages, it changes as if it were "out of the blue", it does not appear smooth, like a normal transition. Have specific effects for this? Is some...
asked on 30.04.2014 / 22:07
1
answer

How to make a link by clicking on a div

I forgot how to make links with jQuery that execute when clicking on a div. The link I needed was with target blank. I found this from here but I did not understand the code and could not use it. jquery('a[href="http://site.com"]').attr('ta...
asked on 04.05.2014 / 00:28
2
answers

Windows Ping should return only the response values

I am making a script and need Ping or Fping in windows to return only the time values, without ms , type: ping 8.8.8.8 Disparando 8.8.8.8 com 32 bytes de dados: Resposta de 8.8.8.8: bytes=32 tempo=29ms TTL=58 Resposta de 8.8.8.8: bytes=32...
asked on 04.05.2014 / 22:09
1
answer

How to work with CSS media queries?

I would like information on how to use media queries . How do I set media of a site below? 2560 x 1440 2560 x 1080 1920 x 1080 1366 x 768 1280 x 1024 1280 x 768 As my site is extended to the entire screen, it's a layout th...
asked on 05.06.2014 / 21:20
1
answer

How to do "OR" between SubQuerys using LINQ C #

I would like to implement with LINQ C # (Using NHibernate as the following query : < return (from t1 in Session.Query<Tabela1>() join t2 in Session.Query<Tabela2>() on t1 equals t2.T1 where (from t...
asked on 12.05.2014 / 15:04
1
answer

How to make Splash screen?

I'm developing an app for android using eclipse, in this app, when I start it, I needed to have a splash screen, that is, a screen with my logo, then wait for about 4 seconds, and go to the screen of login. How can I do this?     
asked on 05.06.2014 / 19:50