Si lo llego a saber voy yo, y me pongo ha hacer ruido con los sobacos o algo así.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarUn párroco anima a Pablo Iglesias a rezar con él: "Te invito para que sepas a qué sabe dios"
Public Class Form1
Dim WithEvents dtgw As New DataGridView
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.Controls.Add(dtgw)
Me.Width = 510
With dtgw
.Size = New Size(500, 200)
.ColumnHeadersVisible = False 'Oculta las cabeceras horizonteles
.RowHeadersVisible = True
.GridColor = Color.White 'Color de las rejillas
.ColumnCount = 3
.Columns.Item(0).Name = "Columna 1"
.Columns.Item(1).Name = "Columna 2"
.Columns.Item(2).Name = "Columna 3"
.RowCount = 10
.RowHeadersWidth = 80
For Index As Integer = 0 To 9
.Rows.Item(Index).HeaderCell.Value = "Fila " & Index + 1
Next
End With
For columna = 0 To 2
For fila = 0 To 9
dtgw.Item(columna, fila).Value = "contenido c" & columna & "- f" & fila
Next fila
Next columna
End Sub
End Class
using System;
using System.Linq;
...
Citarint[]MiArray = {10,4,9,11,4,7,10,30,11,10};
for (int Index = 0; Index <= MiArray.Length - 1; Index++) {
//Cuenta el número que se repite un elemento del array
var CountItems = (from ItemRep in MiArray where (ItemRep == MiArray[Index]) select ItemRep).ToList().Count;
if (CountItems > 1)
{
MiArray[MiArray.ToList().LastIndexOf(MiArray[Index])] = 0;
}
}
Console.WriteLine(string.Join(", ", MiArray));
Console.ReadLine();
int[] MiArray = { 10, 4, 9, 11, 4, 7, 10, 30, 11, 10 };
foreach (var Item in MiArray)
{
for (int Index = MiArray.ToList().IndexOf(Item) + 1; Index <= MiArray.Length - 1; Index++)
{
if (MiArray[Index] == Item) { MiArray[Index] = 0; };
}
}
Console.WriteLine(String.Join(",", MiArray));
Console.ReadLine();
10, 4, 9, 11, 0, 7, 0, 30, 0, 0
int[] MiArray = { 10, 4, 9, 11, 4, 7, 10, 4, 4, 4 };
for (int frtIndex = 0; frtIndex <= MiArray.Length - 1; frtIndex++)
{
for (int scdIndex = frtIndex + 1; scdIndex <= MiArray.Length - 1; scdIndex++)
{
if (MiArray[scdIndex] == MiArray[frtIndex]) { MiArray[scdIndex] = 0; };
}
}
Console.WriteLine(String.Join(",", MiArray));
Console.ReadLine();
10, 4, 9, 11, 0, 7, 0, 0, 0, 0
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using System.Net;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
// Get the object used to communicate with the server.
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/test.htm");
request.Method = WebRequestMethods.Ftp.DownloadFile;
// This example assumes the FTP site uses anonymous logon.
request.Credentials = new NetworkCredential("anonymous","janeDoe@contoso.com");
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);
textBox1.Text= (reader.ReadToEnd());
reader.Close();
response.Close();
}
private void button2_Click(object sender, EventArgs e)
{
byte[] Data = System.Text.Encoding.Unicode.GetBytes(textBox1.Text);
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/test.htm");
request.Method = WebRequestMethods.Ftp.UploadFile;
request.ContentLength = Data.Length;
request.Credentials = new NetworkCredential("anonymous","janeDoe@contoso.com");
Stream requestStream = request.GetRequestStream();
requestStream.Write(Data, 0, Data.Length);
requestStream.Close();
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
response.Close();
}
}
}
Cita de: Eleкtro en 21 Enero 2017, 21:51 PMNo creo que a los presos de Guantánamo les hiciera mucha gracia. Creo que este tema es más para el foro libre que otra cosa. Además yo no he hablado de cifrar nada en la cabeza, si lo tienes en la cabeza no necesitas cifrar la información. He dicho -lo puedes guardar en tu cabeza...- (la información que el usuario @panditdas de este foro quiere cifrar)
Sería un buen argumento para una película, ya lo estoy viendo: Cifrado Mental -protagonizada por Torrente.
Saludos!
Citar(cualquier coincidencia con otra cita es casualidad)
La diferencia entre un creyente y un no creyente es que el no creyente si se equivoca cuando muera sabrá que se equivoca, mientras que el creyente no lo sabrá nunca