- Go to Network - WAN - WAN Connection
- Right click Type Route dropdown select and click "Inspect" in the context menu.
In console, run the code below:document.getElementById('Frm_mode').options[document.getElementById('Frm_mode').options.selectedIndex].setAttribute('value', 'BRIDGE'); Change_mode();
- Input New Connection Name. Example:
Bridge
. Click Create.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@* | |
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 | |
*@ | |
@using SOTicket.Common | |
@using SOTicket.Common.Models | |
@model Produto | |
@{ | |
Layout = "~/Views/Shared/_Layout.cshtml"; | |
var htmlClass = "btn btn-lg "; | |
var ignoredStatus = new StatusEnvio[] { StatusEnvio.Enviado }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Versão compacta | |
if (pids.Count > 0) | |
pids.ForEach(async pid => await service.KillProcAsync(pid)); | |
#Versao simples | |
if (pids.Count > 0) | |
{ | |
foreach (int pid in pids) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//select d.empresa, p.grid as produto, d.grid as deposito, d.codigo as deposito_codigo, d.nome as deposito_nome, preco_unit_empresa_f(p.grid, d.empresa) as preco_unit, p.controlar_estoque from deposito d join deposito_grupo_produto dg on (d.grid=dg.deposito) join produto p on (dg.grupo=p.grupo) where p.grid='6655381' and d.empresa='1778116888046'" | |
var produto = await (from d in _context.Deposito | |
join dgp in _context.DepositoGrupoProduto on d.Grid equals dgp.Deposito | |
join p in _context.Produto on dgp.Grupo equals p.Grupo | |
where p.CodigoBarra == code && d.Empresa == empresa | |
select new | |
{ | |
deposito_empresa = d.Empresa, | |
produto = p.Grid, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program veiculo; | |
type | |
Tveiculo = record | |
placa: string[7]; | |
ano: integer; | |
motor: string[20]; | |
chassi: string[18]; | |
cor: string[15]; | |
montadora: string[30]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program Avaliacao; | |
var | |
valor1, valor2: real; | |
operacao: char; | |
i, cont: integer; | |
begin | |
repeat | |
writeln('Primeiro valor'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Request | |
{ | |
const TYPE_NONE = 0; | |
const TYPE_ALPHA = 1; | |
const TYPE_DIGIT = 2; | |
const TYPE_ALNUM = 3; | |
const GET = 10; | |
const POST = 11; | |
const COOKIE = 12; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program SelecaoEncadeada; | |
var resposta: string; | |
begin | |
WriteLn('Escolha o tipo de animal : (R)Reptil (M) Mamifero (A) Ave '); | |
Readln(resposta); | |
if resposta = 'M' then | |
begin | |
Write('(Q) Quadrupe (A) Aquaticos ? '); |
NewerOlder